| 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 1731c3871642912d7f7d74ec0eeedfb0c6dddbcc..813c85b110513161fdd7a06115bf6e0c70ee7c60 100644
|
| --- a/webrtc/modules/audio_device/audio_device_impl.cc
|
| +++ b/webrtc/modules/audio_device/audio_device_impl.cc
|
| @@ -201,7 +201,7 @@ int32_t AudioDeviceModuleImpl::CreatePlatformSpecificObjects() {
|
|
|
| if (AudioDeviceWindowsCore::CoreAudioIsSupported()) {
|
| // create *Windows Core Audio* implementation
|
| - ptrAudioDevice = new AudioDeviceWindowsCore(Id());
|
| + ptrAudioDevice = new AudioDeviceWindowsCore();
|
| LOG(INFO) << "Windows Core Audio APIs will be utilized";
|
| }
|
| }
|
| @@ -302,7 +302,7 @@ int32_t AudioDeviceModuleImpl::CreatePlatformSpecificObjects() {
|
| #elif defined(WEBRTC_MAC)
|
| if (audioLayer == kPlatformDefaultAudio) {
|
| // Create *Mac Audio* implementation
|
| - ptrAudioDevice = new AudioDeviceMac(Id());
|
| + ptrAudioDevice = new AudioDeviceMac();
|
| LOG(INFO) << "Mac OS X Audio APIs will be utilized";
|
| }
|
| #endif // WEBRTC_MAC
|
|
|