示例#1
0
 public void Dispose()
 {
     if (_vad != null)
     {
         _vad.Dispose();
         _vad = null;
     }
 }
示例#2
0
 public WebRtcVoiceDetector(uint frameSize, int sampleRate)
 {
     _vad = new WebRtcVadNative.VAD(frameSize, sampleRate);
 }