summaryrefslogtreecommitdiff
path: root/libavcodec/h263dec.c
diff options
context:
space:
mode:
authorLord <Lord_veryrandomD8@yahoo.com>2007-06-13 08:25:48 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2007-06-13 08:25:48 +0000
commit58d1dc0e9b3cb6487a095e53794cfe74047d08ac (patch)
treeb2734ebd8d90ac2f54437a879929d1112f9ef8d5 /libavcodec/h263dec.c
parent48961970f154df12619a3485c19e7dab4141bb3e (diff)
Workaround adjustments for DivX 6.1 and later
patch by Lord: [ Lord_veryrandomD8 yahoo com ] Originally committed as revision 9300 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r--libavcodec/h263dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 88bc2005b7..3d60fc1d90 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -453,11 +453,11 @@ retry:
s->workaround_bugs|= FF_BUG_UMP4;
}
- if(s->divx_version>=500){
+ if(s->divx_version>=500 && s->divx_build<1814){
s->workaround_bugs|= FF_BUG_QPEL_CHROMA;
}
- if(s->divx_version>502){
+ if(s->divx_version>502 && s->divx_build<1814){
s->workaround_bugs|= FF_BUG_QPEL_CHROMA2;
}