diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-12-11 08:56:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-12-11 08:56:28 +0000 |
commit | 96d9cb220b3705cfb9e82befaedb72b6accc1240 (patch) | |
tree | 40ce28e0ce26bad1c2f63ff071e7ae4223f8c4b9 | |
parent | 0bdd297f2671d7ba209efe64cdabe8be68b25a32 (diff) | |
download | ffmpeg-96d9cb220b3705cfb9e82befaedb72b6accc1240.tar.gz |
fixing playback of DaveMatthews_Crash_PocketPC.avi
Originally committed as revision 1335 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 60e0f5989b..4607dc12fe 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -250,7 +250,7 @@ static int decode_slice(MpegEncContext *s){ && (s->workaround_bugs&FF_BUG_AUTODETECT) && s->gb.size*8 - get_bits_count(&s->gb) >=0 && s->gb.size*8 - get_bits_count(&s->gb) < 48 - && !s->resync_marker +// && !s->resync_marker && !s->data_partitioning){ const int bits_count= get_bits_count(&s->gb); |