Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclook <build@localhost.localdomain>2013-07-14 07:30:38 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-07-23 03:02:41 +0400
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;