summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2011-09-28 21:29:21 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-10-28 01:37:50 +0200
commitdc38625ebce7af8e218ce7f3c553d1b570a349ed (patch)
tree93e1e71b2777b82f4e09741a69a16c0da5d3bfb0
parent9bd23f6815c083ab3f483d61caa245d699d3cd8a (diff)
Add SMPTE240M transfer characteristics flag.
(cherry picked from commit 4266191919c31a1921b497ec831d3b1c1fa28df8) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/avcodec.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 5898708019..15dc203be5 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -504,6 +504,7 @@ enum AVColorTransferCharacteristic{
AVCOL_TRC_UNSPECIFIED=2,
AVCOL_TRC_GAMMA22 =4, ///< also ITU-R BT470M / ITU-R BT1700 625 PAL & SECAM
AVCOL_TRC_GAMMA28 =5, ///< also ITU-R BT470BG
+ AVCOL_TRC_SMPTE240M =7,
AVCOL_TRC_NB , ///< Not part of ABI
};