Module Values.InputDeviceConfigurableAudioChannelPairConfigSource

One audio configuration that specifies the format for one audio pair that the device produces as output.

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

    The ID for one audio pair configuration, a value from 1 to 8.

    *)
  2. profile : InputDeviceConfigurableAudioChannelPairProfile.t option;
    (*

    The profile to set for one audio pair configuration. Choose an enumeration value. Each value describes one audio configuration using the format (rate control algorithm)-(codec)_(quality)-(bitrate in bytes). For example, CBR-AAC_HQ-192000. Or choose DISABLED, in which case the device won't produce audio for this pair.

    *)
}
Sourceval make : ?id:??? -> ?profile:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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