Steps I do
Turn on VAD
I just called voe_codec->SetOpusDtx(channel, true);
When keep silent, webrtc is still sending RTP package, I used wireshark to monitor RTP traffic
Turn off VAD
I just called voe_codec->SetOpusDtx(channel, false);
The function call is successful, behavior is not right.
I understand that latest webrtc is using opus dtx feature for VAD/DTX, this is why SetOpusDtx API is coming out.
Please advise steps to enable VAD.