Home
last modified time | relevance | path

Searched refs:LevelEstimatorImpl (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/src/modules/audio_processing/
Dlevel_estimator_impl.cc87 LevelEstimatorImpl::LevelEstimatorImpl(const AudioProcessingImpl* apm) in LevelEstimatorImpl() function in webrtc::LevelEstimatorImpl
91 LevelEstimatorImpl::~LevelEstimatorImpl() {} in ~LevelEstimatorImpl()
93 int LevelEstimatorImpl::ProcessStream(AudioBuffer* audio) { in ProcessStream()
115 int LevelEstimatorImpl::Enable(bool enable) { in Enable()
120 bool LevelEstimatorImpl::is_enabled() const { in is_enabled()
124 int LevelEstimatorImpl::RMS() { in RMS()
133 int LevelEstimatorImpl::get_version(char* version, in get_version()
140 void* LevelEstimatorImpl::CreateHandle() const { in CreateHandle()
144 int LevelEstimatorImpl::DestroyHandle(void* handle) const { in DestroyHandle()
151 int LevelEstimatorImpl::InitializeHandle(void* handle) const { in InitializeHandle()
[all …]
Dlevel_estimator_impl.h21 class LevelEstimatorImpl : public LevelEstimator,
24 explicit LevelEstimatorImpl(const AudioProcessingImpl* apm);
25 virtual ~LevelEstimatorImpl();
Daudio_processing_impl.h29 class LevelEstimatorImpl; variable
96 LevelEstimatorImpl* level_estimator_;
Daudio_processing_impl.cc95 level_estimator_ = new LevelEstimatorImpl(this); in AudioProcessingImpl()