[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec rv10.c,1.70,1.71

Michael Niedermayer CVS michael
Mon Apr 25 02:10:13 CEST 2005


Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv1312

Modified Files:
	rv10.c 
Log Message:
extract from the subid the options 
instead of doing a case where we should add lot's of versions.
patch by (matthieu castet {castet.matthieu free fr)


Index: rv10.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/rv10.c,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- rv10.c	24 Apr 2005 22:08:30 -0000	1.70
+++ rv10.c	25 Apr 2005 00:10:11 -0000	1.71
@@ -537,15 +537,17 @@
         s->h263_long_vectors=0;
         s->low_delay=1;
         break;
-    case 0x20001000:
-    case 0x20100001:
+    case 0x20001000: /* real rv20 decoder fail on this id */
+    /*case 0x20100001:
     case 0x20101001:
-    case 0x20103001:
+    case 0x20103001:*/
+    case 0x20100000 ... 0x2019ffff:
         s->low_delay=1;
         break;
-    case 0x20200002:
+    /*case 0x20200002:
     case 0x20201002:
-    case 0x20203002:
+    case 0x20203002:*/
+    case 0x20200002 ... 0x202fffff:
     case 0x30202002:
     case 0x30203002:
         s->low_delay=0;





More information about the ffmpeg-cvslog mailing list