OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stream_data_changed
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_processing/
audio_processing_impl.h
86
bool
stream_data_changed
() const;
87
bool synthesis_needed(bool
stream_data_changed
) const;
88
bool analysis_needed(bool
stream_data_changed
) const;
audio_processing_impl.cc
298
bool data_changed =
stream_data_changed
();
567
bool AudioProcessingImpl::
stream_data_changed
() const {
function in class:webrtc::AudioProcessingImpl
592
bool AudioProcessingImpl::synthesis_needed(bool
stream_data_changed
) const {
593
return (
stream_data_changed
&& sample_rate_hz_ == kSampleRate32kHz);
596
bool AudioProcessingImpl::analysis_needed(bool
stream_data_changed
) const {
597
if (!
stream_data_changed
&& !voice_detection_->is_enabled()) {
Completed in 408 milliseconds