diff options
author | Mohammad Izadi <izadi at google.com> | 2018-12-21 17:45:48 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2018-12-21 17:52:00 +0100 |
commit | 2744d6b364c058286455571073b71de605d0a04b (patch) | |
tree | d682bf47574d84e21a06582f535e5d341e9ef526 /libavutil/frame.h | |
parent | 47ba0854720e05d46a1fdd5b0550e47b9148c816 (diff) | |
download | ffmpeg-2744d6b364c058286455571073b71de605d0a04b.tar.gz |
Add HDR dynamic metadata struct (for SMPTE 2094-40) to libavutil
The dynamic metadata contains data for color volume transform -
application 4 of SMPTE 2094-40:2016 standard. The data comes from
HEVC in the SEI_TYPE_USER_DATA_REGISTERED_ITU_T_T35.
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavutil/frame.h')
-rw-r--r-- | libavutil/frame.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h index 66f27f44bd..582ac470b2 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -166,6 +166,13 @@ enum AVFrameSideDataType { * function in libavutil/timecode.c. */ AV_FRAME_DATA_S12M_TIMECODE, + + /** + * HDR dynamic metadata associated with a video frame. The payload is + * an AVDynamicHDRPlus type and contains information for color + * volume transform - application 4 of SMPTE 2094-40:2016 standard. + */ + AV_FRAME_DATA_DYNAMIC_HDR_PLUS, }; enum AVActiveFormatDescription { |