Searched refs:SetAgcStatus (Results 1 - 12 of 12) sorted by relevance
/external/webrtc/webrtc/voice_engine/test/auto_test/ |
H A D | voe_cpu_test.cc | 83 CHECK(apm->SetAgcStatus(true, kAgcAdaptiveAnalog));
|
/external/webrtc/webrtc/tools/e2e_quality/audio/ |
H A D | audio_e2e_harness.cc | 88 ASSERT_EQ(0, audio->SetAgcStatus(false));
|
/external/webrtc/webrtc/voice_engine/include/ |
H A D | voe_audio_processing.h | 78 virtual int SetAgcStatus(bool enable, AgcModes mode = kAgcUnchanged) = 0;
|
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/ |
H A D | audio_processing_test.cc | 36 EXPECT_EQ(0, voe_apm_->SetAgcStatus(true, agc_mode_to_set)); 396 EXPECT_EQ(-1, voe_apm_->SetAgcStatus(true, webrtc::kAgcAdaptiveAnalog)); 397 EXPECT_EQ(0, voe_apm_->SetAgcStatus(true, webrtc::kAgcFixedDigital)); 398 EXPECT_EQ(0, voe_apm_->SetAgcStatus(true, webrtc::kAgcAdaptiveDigital));
|
H A D | volume_test.cc | 178 EXPECT_EQ(0, voe_apm_->SetAgcStatus(false));
|
/external/webrtc/webrtc/voice_engine/ |
H A D | voe_audio_processing_impl.h | 26 int SetAgcStatus(bool enable, AgcModes mode = kAgcUnchanged) override;
|
H A D | voe_audio_processing_impl.cc | 159 int VoEAudioProcessingImpl::SetAgcStatus(bool enable, AgcModes mode) { function in class:webrtc::VoEAudioProcessingImpl 161 "SetAgcStatus(enable=%d, mode=%d)", enable, mode); 171 "SetAgcStatus() invalid Agc mode for mobile device"); 197 "SetAgcStatus() failed to set Agc mode"); 202 "SetAgcStatus() failed to set Agc state"); 213 "SetAgcStatus() failed to set Agc mode"); 220 "SetAgcStatus() Agc is not supported");
|
/external/webrtc/webrtc/test/ |
H A D | mock_voice_engine.h | 53 MOCK_METHOD2(SetAgcStatus, int(bool enable, AgcModes mode));
|
/external/webrtc/webrtc/voice_engine/test/cmd_test/ |
H A D | voe_cmd_test.cc | 371 res = apm->SetAgcStatus(enable_agc); 486 res = apm->SetAgcStatus(enable_agc);
|
/external/webrtc/webrtc/voice_engine/test/android/android_test/jni/ |
H A D | android_test.cc | 919 return veData1.apm->SetAgcStatus(enable, AGCmode);
|
/external/webrtc/talk/media/webrtc/ |
H A D | fakewebrtcvoiceengine.h | 687 WEBRTC_FUNC(SetAgcStatus, (bool enable, webrtc::AgcModes mode)) {
|
H A D | webrtcvoiceengine.cc | 694 if (voep->SetAgcStatus(*options.auto_gain_control, agc_mode) == -1) { 695 LOG_RTCERR2(SetAgcStatus, *options.auto_gain_control, agc_mode);
|
Completed in 147 milliseconds