summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-11-19 17:31:12 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-11-19 17:32:13 +0100
commitebf4750200d5c6512605d58ba702775d4f52c53f (patch)
treebeca63c5990292571e4105f81c65484136789335
parentc44a028e19c89671dbd614c283f7e5fe2f555139 (diff)
pthreads: increase MAX_BUFFERS due to 24c043c98ef22b9d4aa7a54ec5f1cebd21042dd7
This might fix a hypothetical memleak Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/pthread.c2
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.