diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-11 20:59:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-11 20:59:32 +0200 |
commit | 0ae40c5a70490f102f7b1c62018746d3b424fa07 (patch) | |
tree | f180c9c268ecc95d7e5846d71410965249bacbdc /libswscale | |
parent | 8180b113e1147bc55a11e2828fba7a6d521e2e86 (diff) | |
download | ffmpeg-0ae40c5a70490f102f7b1c62018746d3b424fa07.tar.gz |
swscale/swscale: Fix "unused variable" warning
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libswscale')
-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 8d71abbbbc..9558048a56 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -359,6 +359,7 @@ static int swscale(SwsContext *c, const uint8_t *src[], #ifndef NEW_FILTER uint8_t *formatConvBuffer = c->formatConvBuffer; uint32_t *pal = c->pal_yuv; + int perform_gamma = c->is_internal_gamma; #endif yuv2planar1_fn yuv2plane1 = c->yuv2plane1; yuv2planarX_fn yuv2planeX = c->yuv2planeX; @@ -379,7 +380,6 @@ static int swscale(SwsContext *c, const uint8_t *src[], int chrBufIndex = c->chrBufIndex; int lastInLumBuf = c->lastInLumBuf; int lastInChrBuf = c->lastInChrBuf; - int perform_gamma = c->is_internal_gamma; #ifdef NEW_FILTER int lumStart = 0; |