Bug: webrtc:8651 Change-Id: Ie4d7ee19bead84eda7788076662c4066edc3f024 Reviewed-on: https://webrtc-review.googlesource.com/c/109583 Reviewed-by: Erik Språng <sprang@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Commit-Queue: Johannes Kron <kron@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25581}
88 lines
3.0 KiB
C++
88 lines
3.0 KiB
C++
/*
|
|
* Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef API_VIDEO_HDR_METADATA_H_
|
|
#define API_VIDEO_HDR_METADATA_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace webrtc {
|
|
|
|
// SMPTE ST 2086 mastering metadata,
|
|
// see https://ieeexplore.ieee.org/document/8353899.
|
|
struct HdrMasteringMetadata {
|
|
struct Chromaticity {
|
|
// xy chromaticity coordinates must be calculated as specified in ISO
|
|
// 11664-3:2012 Section 7, and must be specified with four decimal places.
|
|
// The x coordinate must be in the range [0.0001, 0.7400] and the y
|
|
// coordinate must be in the range [0.0001, 0.8400].
|
|
float x = 0.0f;
|
|
float y = 0.0f;
|
|
bool operator==(const Chromaticity& rhs) const {
|
|
return x == rhs.x && y == rhs.y;
|
|
}
|
|
|
|
Chromaticity();
|
|
};
|
|
|
|
// The nominal primaries of the mastering display.
|
|
Chromaticity primary_r;
|
|
Chromaticity primary_g;
|
|
Chromaticity primary_b;
|
|
|
|
// The nominal chromaticity of the white point of the mastering display.
|
|
Chromaticity white_point;
|
|
|
|
// The nominal maximum display luminance of the mastering display. Specified
|
|
// in the unit candela/m2. The value must be in the range [5, 10000] with zero
|
|
// decimal places.
|
|
float luminance_max = 0.0f;
|
|
|
|
// The nominal minimum display luminance of the mastering display. Specified
|
|
// in the unit candela/m2. The value must be in the range [0.0001, 5.0000]
|
|
// with four decimal places.
|
|
float luminance_min = 0.0f;
|
|
|
|
HdrMasteringMetadata();
|
|
|
|
bool operator==(const HdrMasteringMetadata& rhs) const {
|
|
return ((primary_r == rhs.primary_r) && (primary_g == rhs.primary_g) &&
|
|
(primary_b == rhs.primary_b) && (white_point == rhs.white_point) &&
|
|
(luminance_max == rhs.luminance_max) &&
|
|
(luminance_min == rhs.luminance_min));
|
|
}
|
|
};
|
|
|
|
// High dynamic range (HDR) metadata common for HDR10 and WebM/VP9-based HDR
|
|
// formats. This struct replicates the HDRMetadata struct defined in
|
|
// https://cs.chromium.org/chromium/src/media/base/hdr_metadata.h
|
|
struct HdrMetadata {
|
|
HdrMasteringMetadata mastering_metadata;
|
|
// Max content light level (CLL), i.e. maximum brightness level present in the
|
|
// stream, in nits. 1 nit = 1 candela/m2.
|
|
uint32_t max_content_light_level = 0;
|
|
// Max frame-average light level (FALL), i.e. maximum average brightness of
|
|
// the brightest frame in the stream, in nits.
|
|
uint32_t max_frame_average_light_level = 0;
|
|
|
|
HdrMetadata();
|
|
|
|
bool operator==(const HdrMetadata& rhs) const {
|
|
return (
|
|
(max_content_light_level == rhs.max_content_light_level) &&
|
|
(max_frame_average_light_level == rhs.max_frame_average_light_level) &&
|
|
(mastering_metadata == rhs.mastering_metadata));
|
|
}
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_VIDEO_HDR_METADATA_H_
|