Commit 58d1dc0e authored by Lord's avatar Lord Committed by Benoit Fouet

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
parent 48961970
......@@ -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;
}
......
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