diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-02-13 19:27:17 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-02-13 19:27:17 +0000 |
commit | 0481412aba7bb755d9f99812ee3e3c1677c494b3 (patch) | |
tree | 767b133457a5afbc6161b8a00119d4d5cf5a9150 /postproc/swscale.h | |
parent | 6542b44e2adef9cb41cdfc429567d7344792c878 (diff) | |
download | ffmpeg-0481412aba7bb755d9f99812ee3e3c1677c494b3.tar.gz |
brightness / saturation / contrast / different yuv colorspace support for some yuv2rgb converters (many converters still ignore it)
Originally committed as revision 9417 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.h')
-rw-r--r-- | postproc/swscale.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/postproc/swscale.h b/postproc/swscale.h index 1e98919d12..fd1539b1e6 100644 --- a/postproc/swscale.h +++ b/postproc/swscale.h @@ -48,6 +48,14 @@ #define SWS_MAX_REDUCE_CUTOFF 0.002 +#define SWS_CS_ITU709 1 +#define SWS_CS_FCC 4 +#define SWS_CS_ITU601 5 +#define SWS_CS_ITU624 5 +#define SWS_CS_SMPTE170M 5 +#define SWS_CS_SMPTE240M 7 +#define SWS_CS_DEFAULT 5 + /* this struct should be aligned on at least 32-byte boundary */ typedef struct SwsContext{ int srcW, srcH, dstH; |