mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avfilter/bufferqueue: Increase buffer queue size
Avoid buffer overruns when processing some MOV files with the amerge filter. Files produced by Adobe Premiere Pro CC have up to one second of audio not interleaved. With common settings (<= 48kHz) that makes up to 47 frames so a queue length of 64 makes sense. Fixes ticket #3510. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8f4b176c55
commit
d76f0c0378
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@
|
|||
* Powers of 2 are recommended.
|
||||
*/
|
||||
#ifndef FF_BUFQUEUE_SIZE
|
||||
#define FF_BUFQUEUE_SIZE 32
|
||||
#define FF_BUFQUEUE_SIZE 64
|
||||
#endif
|
||||
|
||||
#include "avfilter.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue