2 * Copyright (c) 2016 Neil Birkbeck <neil.birkbeck@gmail.com>
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef AVUTIL_MASTERING_DISPLAY_METADATA_H
22 #define AVUTIL_MASTERING_DISPLAY_METADATA_H
29 * Mastering display metadata capable of representing the color volume of
30 * the display used to master the content (SMPTE 2086:2014).
32 * To be used as payload of a AVFrameSideData or AVPacketSideData with the
35 * @note The struct should be allocated with av_mastering_display_metadata_alloc()
36 * and its size is not a part of the public ABI.
38 typedef struct AVMasteringDisplayMetadata
{
40 * CIE 1931 xy chromaticity coords of color primaries (r, g, b order).
42 AVRational display_primaries
[3][2];
45 * CIE 1931 xy chromaticity coords of white point.
47 AVRational white_point
[2];
50 * Min luminance of mastering display (cd/m^2).
52 AVRational min_luminance
;
55 * Max luminance of mastering display (cd/m^2).
57 AVRational max_luminance
;
60 * Flag indicating whether the display primaries (and white point) are set.
65 * Flag indicating whether the luminance (min_ and max_) have been set.
69 } AVMasteringDisplayMetadata
;
72 * Allocate an AVMasteringDisplayMetadata structure and set its fields to
73 * default values. The resulting struct can be freed using av_freep().
75 * @return An AVMasteringDisplayMetadata filled with default values or NULL
78 AVMasteringDisplayMetadata
*av_mastering_display_metadata_alloc(void);
81 * Allocate an AVMasteringDisplayMetadata structure and set its fields to
82 * default values. The resulting struct can be freed using av_freep().
84 * @return An AVMasteringDisplayMetadata filled with default values or NULL
87 AVMasteringDisplayMetadata
*av_mastering_display_metadata_alloc_size(size_t *size
);
90 * Allocate a complete AVMasteringDisplayMetadata and add it to the frame.
92 * @param frame The frame which side data is added to.
94 * @return The AVMasteringDisplayMetadata structure to be filled by caller.
96 AVMasteringDisplayMetadata
*av_mastering_display_metadata_create_side_data(AVFrame
*frame
);
99 * Content light level needed by to transmit HDR over HDMI (CTA-861.3).
101 * To be used as payload of a AVFrameSideData or AVPacketSideData with the
104 * @note The struct should be allocated with av_content_light_metadata_alloc()
105 * and its size is not a part of the public ABI.
107 typedef struct AVContentLightMetadata
{
109 * Max content light level (cd/m^2).
114 * Max average light level per frame (cd/m^2).
117 } AVContentLightMetadata
;
120 * Allocate an AVContentLightMetadata structure and set its fields to
121 * default values. The resulting struct can be freed using av_freep().
123 * @return An AVContentLightMetadata filled with default values or NULL
126 AVContentLightMetadata
*av_content_light_metadata_alloc(size_t *size
);
129 * Allocate a complete AVContentLightMetadata and add it to the frame.
131 * @param frame The frame which side data is added to.
133 * @return The AVContentLightMetadata structure to be filled by caller.
135 AVContentLightMetadata
*av_content_light_metadata_create_side_data(AVFrame
*frame
);
137 #endif /* AVUTIL_MASTERING_DISPLAY_METADATA_H */