AudioEncodedFrameObserverConfig
Observer settings for the encoded audio.
public class AudioEncodedFrameObserverConfig
{
public AudioEncodedFrameObserverConfig()
{
postionType = AUDIO_ENCODED_FRAME_OBSERVER_POSITION.AUDIO_ENCODED_FRAME_OBSERVER_POSITION_PLAYBACK;
encodingType = AUDIO_ENCODING_TYPE.AUDIO_ENCODING_TYPE_OPUS_48000_MEDIUM;
}
public AudioEncodedFrameObserverConfig(AUDIO_ENCODED_FRAME_OBSERVER_POSITION postionType,
AUDIO_ENCODING_TYPE encodingType)
{
this.encodingType = encodingType;
this.postionType = postionType;
}
public AUDIO_ENCODED_FRAME_OBSERVER_POSITION postionType { set; get; }
public AUDIO_ENCODING_TYPE encodingType { set; get; }
}
Attributes
- postionType
-
Audio profile. See AUDIO_ENCODED_FRAME_OBSERVER_POSITION.
- encodingType
-
Audio encoding type. See AUDIO_ENCODING_TYPE.