diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-04-10 01:39:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-04-10 01:39:53 +0000 |
commit | 0aae3f43e48bbe4b3933db83f75b30685ee8015c (patch) | |
tree | c93b59dfd767f9006ed11b366d48782edc35ef9a /libavcodec/h263dec.c | |
parent | e322ea480b42e741ff49c827a298d5d26d0b5a25 (diff) | |
download | ffmpeg-0aae3f43e48bbe4b3933db83f75b30685ee8015c.tar.gz |
fixing slice decoding, dunno why the regression tests didnt catch that ...
Originally committed as revision 1744 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-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 2b9443908b..c8a13a7542 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -484,7 +484,7 @@ retry: avctx->has_b_frames= !s->low_delay; if(s->workaround_bugs&FF_BUG_AUTODETECT){ - if(s->padding_bug_score > -2 && !s->data_partitioning) + if(s->padding_bug_score > -2 && !s->data_partitioning && !s->resync_marker) s->workaround_bugs |= FF_BUG_NO_PADDING; else s->workaround_bugs &= ~FF_BUG_NO_PADDING; |