[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec truemotion2.c,1.1,1.2
Mike Melanson CVS
melanson
Fri Oct 14 18:17:42 CEST 2005
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv6513/libavcodec
Modified Files:
truemotion2.c
Log Message:
gcc 2.95 fix, courtesy of Luca Abeni
Index: truemotion2.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/truemotion2.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- truemotion2.c 13 Oct 2005 04:31:55 -0000 1.1
+++ truemotion2.c 14 Oct 2005 16:17:40 -0000 1.2
@@ -336,7 +336,7 @@
/* blocks decoding routines */
/* common Y, U, V pointers initialisation */
-#define TM2_INIT_POINTERS(); \
+#define TM2_INIT_POINTERS() \
int *last, *clast; \
int *Y, *U, *V;\
int Ystride, Ustride, Vstride;\
@@ -350,7 +350,7 @@
last = ctx->last + bx * 4;\
clast = ctx->clast + bx * 4;
-#define TM2_INIT_POINTERS_2(); \
+#define TM2_INIT_POINTERS_2() \
int *Yo, *Uo, *Vo;\
int oYstride, oUstride, oVstride;\
\
More information about the ffmpeg-cvslog
mailing list