diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2011-08-24 21:50:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-24 18:43:46 +0200 |
commit | 138d10969dc5ff64f743546ae5e08de8f09bc556 (patch) | |
tree | 6bb999f70023cd87087b0b4187d288b10044f7f6 | |
parent | 84e0553c1c8c05330e036a8e2480e9c02a3402df (diff) | |
download | ffmpeg-138d10969dc5ff64f743546ae5e08de8f09bc556.tar.gz |
avcodec: add YCgCo color space.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4bbaab981a..5898708019 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -515,6 +515,7 @@ enum AVColorSpace{ AVCOL_SPC_BT470BG =5, ///< also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601 AVCOL_SPC_SMPTE170M =6, ///< also ITU-R BT601-6 525 / ITU-R BT1358 525 / ITU-R BT1700 NTSC / functionally identical to above AVCOL_SPC_SMPTE240M =7, + AVCOL_SPC_YCGCO =8, AVCOL_SPC_NB , ///< Not part of ABI }; |