summaryrefslogtreecommitdiff
path: root/libswscale/swscale_internal.h
diff options
context:
space:
mode:
authorclook <build@localhost.localdomain>2013-07-14 03:30:38 +0000
committerMichael Niedermayer <michaelni@gmx.at>2013-07-23 01:02:41 +0200
commitb9b1a2c3e47091eff07e4fc506e4f876a3209aed (patch)
tree2b23aa75966d02deeb0742d36544af1b0c16cc0e /libswscale/swscale_internal.h
parent419a3d8a43d2047ae5339895943fb8926eaa6f8c (diff)
libswscale: Adding RGB => XYZ support
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r--libswscale/swscale_internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h
index 02214f3473..e7cc26ea54 100644
--- a/libswscale/swscale_internal.h
+++ b/libswscale/swscale_internal.h
@@ -484,7 +484,10 @@ typedef struct SwsContext {
#define RGB_GAMMA (2.2f)
int16_t *xyzgamma;
int16_t *rgbgamma;
+ int16_t *xyzgammainv;
+ int16_t *rgbgammainv;
int16_t xyz2rgb_matrix[3][4];
+ int16_t rgb2xyz_matrix[3][4];
/* function pointers for swScale() */
yuv2planar1_fn yuv2plane1;