Home
last modified time | relevance | path

Searched refs:PreemptiveExpand (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/
Dpreemptive_expand.cc21 PreemptiveExpand::ReturnCodes PreemptiveExpand::Process( in Process()
45 void PreemptiveExpand::SetParametersForPassiveSpeech(size_t len, in SetParametersForPassiveSpeech()
59 PreemptiveExpand::ReturnCodes PreemptiveExpand::CheckCriteriaAndStretch( in CheckCriteriaAndStretch()
108 PreemptiveExpand* PreemptiveExpandFactory::Create( in Create()
113 return new PreemptiveExpand(sample_rate_hz, num_channels, background_noise, in Create()
Dpreemptive_expand.h29 class PreemptiveExpand : public TimeStretch {
31 PreemptiveExpand(int sample_rate_hz, in PreemptiveExpand() function
71 RTC_DISALLOW_COPY_AND_ASSIGN(PreemptiveExpand);
78 virtual PreemptiveExpand* Create(int sample_rate_hz,
Dtime_stretch_unittest.cc36 PreemptiveExpand preemptive_expand(kSampleRate, kNumChannels, bgn, in TEST()
52 PreemptiveExpand* preemptive_expand = preemptive_expand_factory.Create( in TEST()
Dneteq_impl.h53 class PreemptiveExpand; variable
363 std::unique_ptr<PreemptiveExpand> preemptive_expand_ RTC_GUARDED_BY(mutex_);
Dneteq_impl.cc1789 PreemptiveExpand::ReturnCodes return_code = preemptive_expand_->Process( in DoPreemptiveExpand()
1794 case PreemptiveExpand::kSuccess: in DoPreemptiveExpand()
1797 case PreemptiveExpand::kSuccessLowEnergy: in DoPreemptiveExpand()
1800 case PreemptiveExpand::kNoStretch: in DoPreemptiveExpand()
1803 case PreemptiveExpand::kError: in DoPreemptiveExpand()
Dneteq_impl_unittest.cc1728 TEST_F(NetEqImplTest120ms, PreemptiveExpand) { in TEST_F() argument