Module Values.Hdr10MetadataSource

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.

Sourcetype nonrec t = {
  1. bluePrimaryX : int option;
    (*

    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.

    *)
  2. bluePrimaryY : int option;
    (*

    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.

    *)
  3. greenPrimaryX : int option;
    (*

    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.

    *)
  4. greenPrimaryY : int option;
    (*

    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.

    *)
  5. maxContentLightLevel : int option;
    (*

    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.

    *)
  6. maxFrameAverageLightLevel : int option;
    (*

    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.

    *)
  7. maxLuminance : int option;
    (*

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

    *)
  8. minLuminance : int option;
    (*

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

    *)
  9. redPrimaryX : int option;
    (*

    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.

    *)
  10. redPrimaryY : int option;
    (*

    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.

    *)
  11. whitePointX : int option;
    (*

    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.

    *)
  12. whitePointY : int option;
    (*

    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.

    *)
}
Sourceval make : ?bluePrimaryX:??? -> ?bluePrimaryY:??? -> ?greenPrimaryX:??? -> ?greenPrimaryY:??? -> ?maxContentLightLevel:??? -> ?maxFrameAverageLightLevel:??? -> ?maxLuminance:??? -> ?minLuminance:??? -> ?redPrimaryX:??? -> ?redPrimaryY:??? -> ?whitePointX:??? -> ?whitePointY:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t