# HG changeset patch # User melanson # Date 1129306660 0 # Node ID 21068c2fcb1d6abe631fe1773e42b8cb47e6f3e7 # Parent f7114e03d8ddf0c39e08bf4d5a7f42bd16488104 gcc 2.95 fix, courtesy of Luca Abeni diff -r f7114e03d8dd -r 21068c2fcb1d truemotion2.c --- a/truemotion2.c Thu Oct 13 04:35:31 2005 +0000 +++ b/truemotion2.c Fri Oct 14 16:17:40 2005 +0000 @@ -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;\ \