summaryrefslogtreecommitdiff
path: root/libswscale/swscale.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-23 20:13:58 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-04-23 20:34:51 +0200
commitb57f9f57240a8143b7c64b8f3e94454dc8895b34 (patch)
treeb0385ed07706898acc6c26c6c46df077eb3f653a /libswscale/swscale.c
parent2a7128f4ed00dbc9209d6f24501bb76a0c14b490 (diff)
swscale/swscale: Get rid of the SWS_GAMMA_CORRECT flag
This avoids using up a bit of the public flags Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r--libswscale/swscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 8b244efcae..5312016927 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -369,7 +369,7 @@ 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->flags & SWS_GAMMA_CORRECT;
+ int perform_gamma = c->is_internal_gamma;
if (!usePal(c->srcFormat)) {