Commit a8abf3f5 authored by benoit's avatar benoit

Workaround adjustments for DivX 6.1 and later

patch by Lord: [ Lord_veryrandomD8 yahoo com ]


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9300 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b1792a01
...@@ -453,11 +453,11 @@ retry: ...@@ -453,11 +453,11 @@ retry:
s->workaround_bugs|= FF_BUG_UMP4; 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; 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; s->workaround_bugs|= FF_BUG_QPEL_CHROMA2;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment