Home
last modified time | relevance | path

Searched refs:stream_data_changed (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/src/modules/audio_processing/
Daudio_processing_impl.h86 bool stream_data_changed() const;
87 bool synthesis_needed(bool stream_data_changed) const;
88 bool analysis_needed(bool stream_data_changed) const;
Daudio_processing_impl.cc298 bool data_changed = stream_data_changed(); in ProcessStream()
567 bool AudioProcessingImpl::stream_data_changed() const { in stream_data_changed() function in webrtc::AudioProcessingImpl
592 bool AudioProcessingImpl::synthesis_needed(bool stream_data_changed) const { in synthesis_needed()
593 return (stream_data_changed && sample_rate_hz_ == kSampleRate32kHz); in synthesis_needed()
596 bool AudioProcessingImpl::analysis_needed(bool stream_data_changed) const { in analysis_needed()
597 if (!stream_data_changed && !voice_detection_->is_enabled()) { in analysis_needed()