Searched refs:ProcessStream (Results 1 - 7 of 7) sorted by relevance

/external/webrtc/src/modules/audio_processing/
H A Dlevel_estimator_impl.h27 int ProcessStream(AudioBuffer* audio);
H A Daudio_processing_impl.h68 virtual int ProcessStream(AudioFrame* frame);
H A Dlevel_estimator_impl.cc93 int LevelEstimatorImpl::ProcessStream(AudioBuffer* audio) { function in class:webrtc::LevelEstimatorImpl
H A Daudio_processing_impl.cc256 int AudioProcessingImpl::ProcessStream(AudioFrame* frame) { function in class:webrtc::AudioProcessingImpl
362 err = level_estimator_->ProcessStream(capture_audio_);
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc294 err = ap->ProcessStream(&primary_frame);
296 printf("Expected kStreamParameterNotSetError in ProcessStream(): %d\n",
299 printf("Error in ProcessStream(): %d\n", err);
353 apm_->ProcessStream(frame_));
358 EXPECT_EQ(apm_->kStreamParameterNotSetError, apm_->ProcessStream(frame_));
360 // Resets after successful ProcessStream().
363 EXPECT_EQ(apm_->kNoError, apm_->ProcessStream(frame_));
364 EXPECT_EQ(apm_->kStreamParameterNotSetError, apm_->ProcessStream(frame_));
374 apm_->ProcessStream(frame_));
382 EXPECT_EQ(apm_->kStreamParameterNotSetError, apm_->ProcessStream(frame
[all...]
H A Dprocess_test.cc599 // ProcessStream could have changed this for the output frame.
627 int err = apm->ProcessStream(&near_frame);
826 int err = apm->ProcessStream(&near_frame);
/external/webrtc/src/modules/audio_processing/interface/
H A Daudio_processing.h35 // |ProcessStream()|. Frames of the reverse direction stream, which are used for
54 // ProcessStream(). More precisely, stream functions are never called
55 // concurrently with ProcessStream().
94 // apm->ProcessStream(capture_frame);
156 virtual int ProcessStream(AudioFrame* frame) = 0;
177 // frame and ProcessStream() receiving a near-end frame containing the
186 // ProcessStream().
277 // the audio devices since the last call to |ProcessStream()|. Must be called
278 // if and only if drift compensation is enabled, prior to |ProcessStream()|.
405 // When an analog mode is set, this must be called prior to |ProcessStream()|
[all...]

Completed in 113 milliseconds