[][src]Struct rusoto_mediaconvert::Hdr10Metadata

pub struct Hdr10Metadata {
    pub blue_primary_x: Option<i64>,
    pub blue_primary_y: Option<i64>,
    pub green_primary_x: Option<i64>,
    pub green_primary_y: Option<i64>,
    pub max_content_light_level: Option<i64>,
    pub max_frame_average_light_level: Option<i64>,
    pub max_luminance: Option<i64>,
    pub min_luminance: Option<i64>,
    pub red_primary_x: Option<i64>,
    pub red_primary_y: Option<i64>,
    pub white_point_x: Option<i64>,
    pub white_point_y: Option<i64>,
}

Use the "HDR master display information" (Hdr10Metadata) settings to correct HDR metadata or to provide missing metadata. These values vary depending on the input video and must be provided by a color grader. Range is 0 to 50,000; each increment represents 0.00002 in CIE1931 color coordinate. Note that these settings are not color correction. Note that if you are creating HDR outputs inside of an HLS CMAF package, to comply with the Apple specification, you must use the following settings. Set "MP4 packaging type" (writeMp4PackagingType) to HVC1 (HVC1). Set "Profile" (H265Settings > codecProfile) to Main10/High (MAIN10HIGH). Set "Level" (H265Settings > codecLevel) to 5 (LEVEL5).

Fields

blue_primary_x: Option<i64>

HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.

blue_primary_y: Option<i64>

HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.

green_primary_x: Option<i64>

HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.

green_primary_y: Option<i64>

HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.

max_content_light_level: Option<i64>

Maximum light level among all samples in the coded video sequence, in units of candelas per square meter.

max_frame_average_light_level: Option<i64>

Maximum average light level of any frame in the coded video sequence, in units of candelas per square meter.

max_luminance: Option<i64>

Nominal maximum mastering display luminance in units of of 0.0001 candelas per square meter.

min_luminance: Option<i64>

Nominal minimum mastering display luminance in units of of 0.0001 candelas per square meter

red_primary_x: Option<i64>

HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.

red_primary_y: Option<i64>

HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.

white_point_x: Option<i64>

HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.

white_point_y: Option<i64>

HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.

Trait Implementations

impl PartialEq<Hdr10Metadata> for Hdr10Metadata[src]

impl Default for Hdr10Metadata[src]

impl Clone for Hdr10Metadata[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Hdr10Metadata[src]

impl Serialize for Hdr10Metadata[src]

impl<'de> Deserialize<'de> for Hdr10Metadata[src]

Auto Trait Implementations

impl Send for Hdr10Metadata

impl Sync for Hdr10Metadata

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self