In WebRTC 1.0 Section 4.2.4 we have: dictionary RTCOfferOptions { long offerToReceiveVideo; long offerToReceiveAudio; boolean voiceActivityDetection = true; boolean iceRestart = false; }; What is the equivalent means by which ORTC API controls voice activity detection?
In WebRTC 1.0 Section 4.2.4 we have:
dictionary RTCOfferOptions {
long offerToReceiveVideo;
long offerToReceiveAudio;
boolean voiceActivityDetection = true;
boolean iceRestart = false;
};
What is the equivalent means by which ORTC API controls voice activity detection?