[FFmpeg-cvslog] r9300 - trunk/libavcodec/h263dec.c

benoit subversion
Wed Jun 13 10:25:48 CEST 2007


Author: benoit
Date: Wed Jun 13 10:25:48 2007
New Revision: 9300

Log:
Workaround adjustments for DivX 6.1 and later
patch by Lord: [ Lord_veryrandomD8 yahoo com ]


Modified:
   trunk/libavcodec/h263dec.c

Modified: trunk/libavcodec/h263dec.c
==============================================================================
--- trunk/libavcodec/h263dec.c	(original)
+++ trunk/libavcodec/h263dec.c	Wed Jun 13 10:25:48 2007
@@ -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;
         }
 




More information about the ffmpeg-cvslog mailing list