diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-06-29 20:02:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-06-30 02:17:24 +0200 |
commit | 623bf96678d2009d34e88ed7c2b73c00930cebae (patch) | |
tree | e95c6472ca445ccbfca2e72941ddb2827c95b192 | |
parent | e1a54304be1ccbbff2fcd3ee955acfbceb71221f (diff) | |
download | ffmpeg-623bf96678d2009d34e88ed7c2b73c00930cebae.tar.gz |
avcodec: increase padding, fixes ticket313
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 42eabdd623..2345b7e526 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -429,7 +429,7 @@ enum CodecID { * Note: If the first 23 bits of the additional bytes are not 0, then damaged * MPEG bitstreams could cause overread and segfault. */ -#define FF_INPUT_BUFFER_PADDING_SIZE 8 +#define FF_INPUT_BUFFER_PADDING_SIZE 16 /** * minimum encoding buffer size |