diff options
author | James Almer <jamrial@gmail.com> | 2017-04-22 00:34:37 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-05-27 16:14:24 -0300 |
commit | 24133973fc242a2a911237957873af65ef20d086 (patch) | |
tree | 8e10d2908bd358d45747415351898036278322d3 /libavformat/isom.h | |
parent | ab05bd6e6cae0a0a20cd2bc591ac2d9eb8afbf17 (diff) | |
download | ffmpeg-24133973fc242a2a911237957873af65ef20d086.tar.gz |
avformat/mov: add support for reading Content Light Level Box
As defined in "VP Codec ISO Media File Format Binding v1.0"
https://github.com/webmproject/vp9-dash/blob/master/VPCodecISOMediaFileFormatBinding.md
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 426f732247..ff009b0896 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -196,6 +196,8 @@ typedef struct MOVStreamContext { AVSphericalMapping *spherical; size_t spherical_size; AVMasteringDisplayMetadata *mastering; + AVContentLightMetadata *coll; + size_t coll_size; uint32_t format; |