Browse Source

xvid build 3 still has the padding wrong in 1/8 of the cases :(((((

having the padding right in 7/8 of the cases confuses the autodetection code too

Originally committed as revision 1371 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 23 years ago
parent
commit
a6a494fb2d
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/h263dec.c

+ 3
- 0
libavcodec/h263dec.c View File

@@ -465,6 +465,9 @@ retry:
if(s->avctx->fourcc == ff_get_fourcc("XVID") && s->xvid_build==0)
s->padding_bug_score= 256*256*256*64;
if(s->xvid_build && s->xvid_build<=3)
s->padding_bug_score= 256*256*256*64;
if(s->xvid_build && s->xvid_build<=1)
s->workaround_bugs|= FF_BUG_QPEL_CHROMA;



Loading…
Cancel
Save