diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-04-02 19:54:33 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-02 19:54:33 +0000 |
commit | b44bdf7eec8b84df81a0e688984157e4247e92ec (patch) | |
tree | e1b416cec89d5177563a19962fa86c434008920b /libavcodec/h263dec.c | |
parent | 8680741006c9bf4476e231f1b71f0d3f78ee8f42 (diff) | |
download | ffmpeg-b44bdf7eec8b84df81a0e688984157e4247e92ec.tar.gz |
interlaced chroma MC divx-bug workaround
Originally committed as revision 2947 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index b934db3c87..bff4435a8c 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -551,6 +551,8 @@ retry: s->workaround_bugs|= FF_BUG_EDGE; } + if(s->divx_version) + s->workaround_bugs|= FF_BUG_HPEL_CHROMA; #if 0 if(s->divx_version==500) s->padding_bug_score= 256*256*256*64; |