diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-18 03:19:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-18 03:19:40 +0100 |
commit | 8e7776036b11bf54bc8668eda3db1852f92a37fa (patch) | |
tree | 8726bb4d97a66682d17e11e4b7bc44def9974b80 /libavcodec/ituh263dec.c | |
parent | 38331d2036c3bd1b8f070b1fe351bb4fbfac0c34 (diff) | |
download | ffmpeg-8e7776036b11bf54bc8668eda3db1852f92a37fa.tar.gz |
h263: disable slow checked reader, overreads are not possible in
ffmpegs h263 decoder
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ituh263dec.c')
-rw-r--r-- | libavcodec/ituh263dec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index bf03e1a1d6..f058c9b848 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -27,6 +27,8 @@ * h263 decoder. */ +#define UNCHECKED_BITSTREAM_READER 1 + //#define DEBUG #include <limits.h> |