[][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 these settings to specify static color calibration metadata, as defined by SMPTE ST 2086. These values don't affect the pixel values that are encoded in the video stream. They are intended to help the downstream video player display content in a way that reflects the intentions of the the content creator.

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. This setting doesn't have a default value; you must specify a value that is suitable for the content.

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. This setting doesn't have a default value; you must specify a value that is suitable for the content.

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 Clone for Hdr10Metadata[src]

impl Debug for Hdr10Metadata[src]

impl Default for Hdr10Metadata[src]

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

impl PartialEq<Hdr10Metadata> for Hdr10Metadata[src]

impl Serialize for Hdr10Metadata[src]

impl StructuralPartialEq for Hdr10Metadata[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.