[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec rv10.c,1.70,1.71
Michael Niedermayer CVS
michael
Mon Apr 25 02:10:13 CEST 2005
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavformat rm.c,1.44,1.45
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec h261.c, 1.24, 1.25 h263.c, 1.275, 1.276 h263dec.c, 1.166, 1.167 msmpeg4.c, 1.86, 1.87 rv10.c, 1.71, 1.72 wmv2.c, 1.30, 1.31
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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;
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg/libavformat rm.c,1.44,1.45
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec h261.c, 1.24, 1.25 h263.c, 1.275, 1.276 h263dec.c, 1.166, 1.167 msmpeg4.c, 1.86, 1.87 rv10.c, 1.71, 1.72 wmv2.c, 1.30, 1.31
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ffmpeg-cvslog
mailing list