Browse Source

fix decoding of http://mplayerhq.hu/~diego/problem.mov

Originally committed as revision 3806 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 21 years ago
parent
commit
503a47255f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h263dec.c

+ 1
- 1
libavcodec/h263dec.c View File

@@ -269,7 +269,7 @@ static int decode_slice(MpegEncContext *s){
}
if(s->workaround_bugs&FF_BUG_AUTODETECT){
if(s->padding_bug_score > -2 && !s->data_partitioning && (s->divx_version || !s->resync_marker))
if(s->padding_bug_score > -2 && !s->data_partitioning /*&& (s->divx_version || !s->resync_marker)*/)
s->workaround_bugs |= FF_BUG_NO_PADDING;
else
s->workaround_bugs &= ~FF_BUG_NO_PADDING;


Loading…
Cancel
Save