Put variable declaration inside an #ifdef to avoid an unused variable warning.
authorDiego Biurrun <diego@biurrun.de>
Mon, 17 Nov 2008 10:33:59 +0000 (10:33 +0000)
committerDiego Biurrun <diego@biurrun.de>
Mon, 17 Nov 2008 10:33:59 +0000 (10:33 +0000)
Originally committed as revision 27945 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale_template.c

index 5754c10..4c8bc6e 100644 (file)
@@ -1826,11 +1826,12 @@ static inline void RENAME(rgb24ToY)(uint8_t *dst, uint8_t *src, long width, uint
 
 static inline void RENAME(rgb24ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, long width, uint32_t *unused)
 {
-    int i;
-    assert(src1==src2);
 #ifdef HAVE_MMX
+    assert(src1==src2);
     RENAME(bgr24ToUV_mmx)(dstU, dstV, src1, width, PIX_FMT_RGB24);
 #else
+    int i;
+    assert(src1==src2);
     for (i=0; i<width; i++)
     {
         int r= src1[3*i + 0];