diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-08-28 20:54:11 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-09-01 22:55:51 +0200 |
commit | 746f1f14de0a94060f0d6a5cc8c004e043a1507b (patch) | |
tree | 5d3760d60b22bac55f3473c302d979d28982ecda /libswscale/x86 | |
parent | d07950f774e03503146b299817941566453309bd (diff) | |
download | ffmpeg-746f1f14de0a94060f0d6a5cc8c004e043a1507b.tar.gz |
Remove unused variables.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libswscale/x86')
-rw-r--r-- | libswscale/x86/swscale_template.c | 2 |
1 files changed, 0 insertions, 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; |