diff options
author | Luca Abeni <lucabe72@email.it> | 2006-12-26 17:59:28 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-12-26 17:59:28 +0000 |
commit | 789237cad0fe4344d8c0e32b9508b0601df23dd2 (patch) | |
tree | 384f1f71cf6f33bd35d04f68e376d9546a2ad170 /libswscale/swscale.c | |
parent | 628bc5e8623e35d3a69d235eae8519fccdaea50b (diff) | |
download | ffmpeg-789237cad0fe4344d8c0e32b9508b0601df23dd2.tar.gz |
Mark some variables as possibly unused to avoid warnings
Originally committed as revision 21775 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 00d2168958..6bd80235b5 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -386,7 +386,7 @@ static inline void yuv2nv12XinC(int16_t *lumFilter, int16_t **lumSrc, int lumFil int Y2=1<<18;\ int U=1<<18;\ int V=1<<18;\ - type *r, *b, *g;\ + type attribute_unused *r, *b, *g;\ const int i2= 2*i;\ \ for(j=0; j<lumFilterSize; j++)\ |