diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-19 17:31:12 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-19 17:32:13 +0100 |
commit | ebf4750200d5c6512605d58ba702775d4f52c53f (patch) | |
tree | beca63c5990292571e4105f81c65484136789335 /libavcodec/pthread.c | |
parent | c44a028e19c89671dbd614c283f7e5fe2f555139 (diff) | |
download | ffmpeg-ebf4750200d5c6512605d58ba702775d4f52c53f.tar.gz |
pthreads: increase MAX_BUFFERS due to 24c043c98ef22b9d4aa7a54ec5f1cebd21042dd7
This might fix a hypothetical memleak
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/pthread.c')
-rw-r--r-- | libavcodec/pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c index c0a872eba0..9a52924d3d 100644 --- a/libavcodec/pthread.c +++ b/libavcodec/pthread.c @@ -85,7 +85,7 @@ typedef struct ThreadContext { } ThreadContext; /// Max number of frame buffers that can be allocated when using frame threads. -#define MAX_BUFFERS (32+1) +#define MAX_BUFFERS (34+1) /** * Context used by codec threads and stored in their AVCodecContext thread_opaque. |