Mercurial > libavcodec.hg
changeset 2908:21068c2fcb1d libavcodec
gcc 2.95 fix, courtesy of Luca Abeni
author | melanson |
---|---|
date | Fri, 14 Oct 2005 16:17:40 +0000 |
parents | f7114e03d8dd |
children | 7c6e1c80d5e3 |
files | truemotion2.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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;\ \