diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-11 09:01:38 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-11 09:01:38 +0000 |
commit | a04e32407d179e5ea42eee3ce58ac6ff8c859b72 (patch) | |
tree | 7e8e0531bbcf1fc57636737d640ede43e808a0da /libswscale | |
parent | bf99f4fccc13d6cf7f0c4cd1f07d9b7f1202d0b4 (diff) | |
download | ffmpeg-a04e32407d179e5ea42eee3ce58ac6ff8c859b72.tar.gz |
Mark Y variable in EPILOG macro as av_unused to avoid unused variable warnings.
Originally committed as revision 26220 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/yuv2rgb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 8b4622311c..8ece0f6183 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -276,8 +276,7 @@ static int func_name(SwsContext *c, uint8_t* src[], int srcStride[], int srcSlic dst_2 += dst_delta;\ }\ if (c->dstW & 4) {\ - int av_unused U, V;\ - int Y;\ + int av_unused Y, U, V;\ #define EPILOG2()\ }\ |