diff options
author | Neil Birkbeck <neil.birkbeck@gmail.com> | 2016-01-16 16:19:38 -0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-19 16:43:31 +0100 |
commit | d91718107c33960ad295950d7419e6dba292d723 (patch) | |
tree | 7491c55faf2a1e675dd88d4ee61c87ecc474955e /libavutil/Makefile | |
parent | 22f64c23244f4b83f59b866387ebeb8edca21b0d (diff) | |
download | ffmpeg-d91718107c33960ad295950d7419e6dba292d723.tar.gz |
libavutil: add mastering display metadata sidedata
Adding mastering display metadata struct to avutil. The mastering display metadata contains information
about the mastering display color volume (SMPTE 2086:2014).
This info comes from HEVC in the SEI_TYPE_MASTERING_DISPLAY_INFO and is soon to be included in MKV:
https://mailarchive.ietf.org/arch/search/?email_list=cellar&gbt=1&index=sZyfPTM-QY69P-0omfOIiTN622o
so it is similar to SEI FPA / stereo_mode in MKV and as such this patch follows how AVStereo3D is implemented.
I'll add support to HEVC in a follow-up (and MKV when spec is approved).
Signed-off-by: Neil Birkbeck <neil.birkbeck@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index bf8c713e9f..65b2d25877 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -38,6 +38,7 @@ HEADERS = adler32.h \ log.h \ macros.h \ mathematics.h \ + mastering_display_metadata.h \ md5.h \ mem.h \ motion_vector.h \ @@ -115,6 +116,7 @@ OBJS = adler32.o \ log.o \ log2_tab.o \ mathematics.o \ + mastering_display_metadata.o \ md5.o \ mem.o \ murmur3.o \ |