diff options
author | Mike Melanson <mike@multimedia.cx> | 2005-10-14 16:17:40 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2005-10-14 16:17:40 +0000 |
commit | 670924fd9ef21a750d7694d4e3bfeae4d3cabe72 (patch) | |
tree | 8dec67e0ba8ad66e18601b2e3dd5e64259b7b808 /libavcodec/truemotion2.c | |
parent | dce76c20cf3c88e5f340ff529f943d264cd072c6 (diff) | |
download | ffmpeg-670924fd9ef21a750d7694d4e3bfeae4d3cabe72.tar.gz |
gcc 2.95 fix, courtesy of Luca Abeni
Originally committed as revision 4641 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/truemotion2.c')
-rw-r--r-- | libavcodec/truemotion2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/truemotion2.c b/libavcodec/truemotion2.c index 5392eb22b1..0490f65d57 100644 --- a/libavcodec/truemotion2.c +++ b/libavcodec/truemotion2.c @@ -336,7 +336,7 @@ static inline int GET_TOK(TM2Context *ctx,int type) { /* 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 @@ static inline int GET_TOK(TM2Context *ctx,int type) { 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;\ \ |