diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-12-07 11:38:26 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-12-07 11:38:26 +0000 |
commit | 2b2719acffb74134613a13661d3c4dc236226346 (patch) | |
tree | f7854743eeb76a9419de73e9f660f24afcc4baea /libavcodec/h263.c | |
parent | 00a7d8d69c2f63ac4a2de1b2237696a516f8d5d2 (diff) | |
download | ffmpeg-2b2719acffb74134613a13661d3c4dc236226346.tar.gz |
ump4 decoding fixed
Originally committed as revision 1322 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r-- | libavcodec/h263.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 98b29ad0b4..80c9a3adc8 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -3624,7 +3624,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, #if 1 { const int abs_level= ABS(level); - if(abs_level<=MAX_LEVEL && run<=MAX_RUN){ + if(abs_level<=MAX_LEVEL && run<=MAX_RUN && !(s->workaround_bugs&FF_BUG_AC_VLC)){ const int run1= run - rl->max_run[last][abs_level] - 1; if(abs_level <= rl->max_level[last][run]){ fprintf(stderr, "illegal 3. esc, vlc encoding possible\n"); |