| Index: webrtc/voice_engine/voe_volume_control_impl.cc
|
| diff --git a/webrtc/voice_engine/voe_volume_control_impl.cc b/webrtc/voice_engine/voe_volume_control_impl.cc
|
| index 8beba11574871e57b5e1a69156b7aa2d748c55d4..eb17db3219baca15497c5ec13be065694fafa6d3 100644
|
| --- a/webrtc/voice_engine/voe_volume_control_impl.cc
|
| +++ b/webrtc/voice_engine/voe_volume_control_impl.cc
|
| @@ -215,7 +215,7 @@ int VoEVolumeControlImpl::SetInputMute(int channel, bool enable) {
|
| "SetInputMute() failed to locate channel");
|
| return -1;
|
| }
|
| - return channelPtr->SetMute(enable);
|
| + return channelPtr->SetInputMute(enable);
|
| }
|
|
|
| int VoEVolumeControlImpl::GetInputMute(int channel, bool& enabled) {
|
| @@ -233,7 +233,7 @@ int VoEVolumeControlImpl::GetInputMute(int channel, bool& enabled) {
|
| "SetInputMute() failed to locate channel");
|
| return -1;
|
| }
|
| - enabled = channelPtr->Mute();
|
| + enabled = channelPtr->InputMute();
|
| }
|
| return 0;
|
| }
|
|
|