diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:11:43 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-03 17:11:43 +0000 |
commit | f8d611285025cae8c933dc1228a2b1db5de5cf85 (patch) | |
tree | 613963c0641222f3044cd245d48c97f2842257f4 | |
parent | c4e96ceef7e7f5958b6851ccaf5182c3b21953a2 (diff) | |
download | ffmpeg-f8d611285025cae8c933dc1228a2b1db5de5cf85.tar.gz |
Fix unused variable warning when compiling with MMX disabled.
Originally committed as revision 20021 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index c73364fa50..1711f45b06 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -1035,8 +1035,8 @@ static inline void RENAME(yuv2packedX)(SwsContext *c, int16_t *lumFilter, int16_ int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize, uint8_t *dest, long dstW, long dstY) { - long dummy=0; #ifdef HAVE_MMX + long dummy=0; if(c->flags & SWS_ACCURATE_RND){ switch(c->dstFormat){ case PIX_FMT_RGB32: |