Lines Matching refs:enable

73 int VoEAudioProcessingImpl::SetNsStatus(bool enable, NsModes mode) {
75 "SetNsStatus(enable=%d, mode=%d)", enable, mode);
113 if (_shared->audio_processing()->noise_suppression()->Enable(enable) != 0) {
165 int VoEAudioProcessingImpl::SetAgcStatus(bool enable, AgcModes mode) {
167 "SetAgcStatus(enable=%d, mode=%d)", enable, mode);
206 if (_shared->audio_processing()->gain_control()->Enable(enable) != 0) {
214 // Note that we also enable the ADM Agc when Adaptive Digital mode is
217 if (_shared->audio_device()->SetAGC(enable) != 0) {
336 bool enable,
338 LOG_API3(channel, enable, mode);
352 return channelPtr->SetRxNsStatus(enable, mode);
364 "GetRxNsStatus(channel=%d, enable=?, mode=?)", channel);
387 bool enable,
390 "SetRxAgcStatus(channel=%d, enable=%d, mode=%d)",
391 channel, (int)enable, (int)mode);
405 return channelPtr->SetRxAgcStatus(enable, mode);
417 "GetRxAgcStatus(channel=%d, enable=?, mode=?)", channel);
496 int VoEAudioProcessingImpl::EnableDriftCompensation(bool enable) {
497 LOG_API1(enable);
507 if (aec->enable_drift_compensation(enable) != 0) {
523 int VoEAudioProcessingImpl::SetEcStatus(bool enable, EcModes mode) {
525 "SetEcStatus(enable=%d, mode=%d)", enable, mode);
538 if (enable) {
539 // Disable the AECM before enable the AEC
551 if (_shared->audio_processing()->echo_cancellation()->Enable(enable) != 0) {
577 if (enable) {
578 // Disable the AEC before enable the AECM
591 Enable(enable) != 0) {
746 int VoEAudioProcessingImpl::EnableHighPassFilter(bool enable) {
748 "EnableHighPassFilter(%d)", enable);
749 if (_shared->audio_processing()->high_pass_filter()->Enable(enable) !=
823 int VoEAudioProcessingImpl::SetEcMetricsStatus(bool enable) {
825 "SetEcMetricsStatus(enable=%d)", enable);
832 if ((_shared->audio_processing()->echo_cancellation()->enable_metrics(enable)
835 enable) != 0)) {
997 int VoEAudioProcessingImpl::SetTypingDetectionStatus(bool enable) {
1008 // Just use the VAD state to determine if we should enable typing detection
1011 if (_shared->audio_processing()->voice_detection()->Enable(enable)) {
1034 // Just use the VAD state to determine if we should enable typing
1088 void VoEAudioProcessingImpl::EnableStereoChannelSwapping(bool enable) {
1089 LOG_API1(enable);
1090 _shared->transmit_mixer()->EnableStereoChannelSwapping(enable);