| Index: webrtc/modules/audio_device/audio_device_impl.cc
|
| diff --git a/webrtc/modules/audio_device/audio_device_impl.cc b/webrtc/modules/audio_device/audio_device_impl.cc
|
| index 9f141675bce96d6168e2bbfef14e76fd1cefd65e..f7fc6234b3dba9754fef6990c44d4a82f5f8f8b3 100644
|
| --- a/webrtc/modules/audio_device/audio_device_impl.cc
|
| +++ b/webrtc/modules/audio_device/audio_device_impl.cc
|
| @@ -1776,14 +1776,6 @@ int32_t AudioDeviceModuleImpl::GetLoudspeakerStatus(bool* enabled) const {
|
| return ok;
|
| }
|
|
|
| -bool AudioDeviceModuleImpl::BuiltInAECIsEnabled() const {
|
| - LOG(INFO) << __FUNCTION__;
|
| - CHECK_INITIALIZED_BOOL();
|
| - bool isEnabled = _ptrAudioDevice->BuiltInAECIsEnabled();
|
| - LOG(INFO) << "output: " << isEnabled;
|
| - return isEnabled;
|
| -}
|
| -
|
| bool AudioDeviceModuleImpl::BuiltInAECIsAvailable() const {
|
| LOG(INFO) << __FUNCTION__;
|
| CHECK_INITIALIZED_BOOL();
|
| @@ -1832,6 +1824,7 @@ int32_t AudioDeviceModuleImpl::EnableBuiltInNS(bool enable) {
|
| return ok;
|
| }
|
|
|
| +#if defined(WEBRTC_IOS)
|
| int AudioDeviceModuleImpl::GetPlayoutAudioParameters(
|
| AudioParameters* params) const {
|
| LOG(INFO) << __FUNCTION__;
|
| @@ -1847,6 +1840,7 @@ int AudioDeviceModuleImpl::GetRecordAudioParameters(
|
| LOG(INFO) << "output: " << r;
|
| return r;
|
| }
|
| +#endif // WEBRTC_IOS
|
|
|
| // ============================================================================
|
| // Private Methods
|
|
|