Module Values.Smpte2110ReceiverGroupSdpSettingsSource

Information about the SDP files that describe the SMPTE 2110 streams that go into one SMPTE 2110 receiver group.

Sourcetype nonrec t = {
  1. ancillarySdps : InputSdpLocation.t list option;
    (*

    A list of InputSdpLocations. Each item in the list specifies the SDP file and index for one ancillary SMPTE 2110 stream. Each stream encapsulates one captions stream (out of any number you can include) or the single SCTE 35 stream that you can include.

    *)
  2. audioSdps : InputSdpLocation.t list option;
    (*

    A list of InputSdpLocations. Each item in the list specifies the SDP file and index for one audio SMPTE 2110 stream.

    *)
  3. videoSdp : InputSdpLocation.t option;
    (*

    The InputSdpLocation that specifies the SDP file and index for the single video SMPTE 2110 stream for this 2110 input.

    *)
}
Sourceval make : ?ancillarySdps:??? -> ?audioSdps:??? -> ?videoSdp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of int | `String of string ]) list ] list | `Structure of (string * [> `Integer of int | `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