Module Values.InputLossBehaviorSource

Input Loss Behavior

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

    Documentation update needed

    *)
  2. inputLossImageColor : string option;
    (*

    When input loss image type is "color" this field specifies the color to use. Value: 6 hex characters representing the values of RGB.

    *)
  3. inputLossImageSlate : InputLocation.t option;
    (*

    When input loss image type is "slate" these fields specify the parameters for accessing the slate.

    *)
  4. inputLossImageType : InputLossImageType.t option;
    (*

    Indicates whether to substitute a solid color or a slate into the output after input loss exceeds blackFrameMsec.

    *)
  5. repeatFrameMsec : int option;
    (*

    Documentation update needed

    *)
}
Sourceval make : ?blackFrameMsec:??? -> ?inputLossImageColor:??? -> ?inputLossImageSlate:??? -> ?inputLossImageType:??? -> ?repeatFrameMsec:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `String of string ]) list ]) 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