Home | History | Annotate | Download | only in vad

Lines Matching defs:handle_

22       : handle_(nullptr), aggressiveness_(aggressiveness) {
26 ~VadImpl() override { WebRtcVad_Free(handle_); }
31 int ret = WebRtcVad_Process(handle_, sample_rate_hz, audio, num_samples);
44 if (handle_)
45 WebRtcVad_Free(handle_);
46 handle_ = WebRtcVad_Create();
47 RTC_CHECK(handle_);
48 RTC_CHECK_EQ(WebRtcVad_Init(handle_), 0);
49 RTC_CHECK_EQ(WebRtcVad_set_mode(handle_, aggressiveness_), 0);
53 VadInst* handle_;