Home
last modified time | relevance | path

Searched refs:PostDecodeVad (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/
Dpost_decode_vad.cc15 PostDecodeVad::~PostDecodeVad() { in ~PostDecodeVad()
20 void PostDecodeVad::Enable() { in Enable()
34 void PostDecodeVad::Disable() { in Disable()
39 void PostDecodeVad::Init() { in Init()
48 void PostDecodeVad::Update(int16_t* signal, in Update()
Dpost_decode_vad.h23 class PostDecodeVad {
25 PostDecodeVad() in PostDecodeVad() function
32 virtual ~PostDecodeVad();
67 RTC_DISALLOW_COPY_AND_ASSIGN(PostDecodeVad);
Dpost_decode_vad_unittest.cc19 TEST(PostDecodeVad, CreateAndDestroy) { in TEST() argument
20 PostDecodeVad vad; in TEST()
Dbackground_noise.h25 class PostDecodeVad; variable
42 bool Update(const AudioMultiVector& sync_buffer, const PostDecodeVad& vad);
Dneteq_impl.h52 class PostDecodeVad; variable
347 const std::unique_ptr<PostDecodeVad> vad_ RTC_GUARDED_BY(mutex_);
Dbackground_noise.cc49 const PostDecodeVad& vad) { in Update()
Dneteq_impl.cc138 vad_(new PostDecodeVad()), in NetEqImpl()