From 746f1f14de0a94060f0d6a5cc8c004e043a1507b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 28 Aug 2011 20:54:11 +0200 Subject: [PATCH] Remove unused variables. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Reimar Döffinger --- libswscale/x86/swscale_template.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libswscale/x86/swscale_template.c b/libswscale/x86/swscale_template.c index 7ba1901e21..6196e98561 100644 --- a/libswscale/x86/swscale_template.c +++ b/libswscale/x86/swscale_template.c @@ -113,7 +113,6 @@ static void RENAME(yuv2yuvX)(SwsContext *c, const int16_t *lumFilter, int chrFilterSize, const int16_t **alpSrc, uint8_t *dest[4], int dstW, int chrDstW) { - int i; uint8_t *yDest = dest[0], *uDest = dest[1], *vDest = dest[2], *aDest = CONFIG_SWSCALE_ALPHA ? dest[3] : NULL; const uint8_t *lumDither = c->lumDither8, *chrDither = c->chrDither8; @@ -257,7 +256,6 @@ static void RENAME(yuv2yuvX_ar)(SwsContext *c, const int16_t *lumFilter, int chrFilterSize, const int16_t **alpSrc, uint8_t *dest[4], int dstW, int chrDstW) { - int i; uint8_t *yDest = dest[0], *uDest = dest[1], *vDest = dest[2], *aDest = CONFIG_SWSCALE_ALPHA ? dest[3] : NULL; const uint8_t *lumDither = c->lumDither8, *chrDither = c->chrDither8;