| Index: webrtc/modules/audio_device/win/audio_device_core_win.h
|
| diff --git a/webrtc/modules/audio_device/win/audio_device_core_win.h b/webrtc/modules/audio_device/win/audio_device_core_win.h
|
| index 60ee9ef8909584ec9d9add733facfb98dc4e6de0..24eca550b1f92b0d296f82983eada231f11be8b6 100644
|
| --- a/webrtc/modules/audio_device/win/audio_device_core_win.h
|
| +++ b/webrtc/modules/audio_device/win/audio_device_core_win.h
|
| @@ -82,7 +82,7 @@ class ScopedCOMInitializer {
|
| class AudioDeviceWindowsCore : public AudioDeviceGeneric
|
| {
|
| public:
|
| - AudioDeviceWindowsCore(const int32_t id);
|
| + AudioDeviceWindowsCore();
|
| ~AudioDeviceWindowsCore();
|
|
|
| static bool CoreAudioIsSupported();
|
| @@ -237,8 +237,6 @@ private: // thread functions
|
| void _Lock() { _critSect.Enter(); };
|
| void _UnLock() { _critSect.Leave(); };
|
|
|
| - int32_t Id() {return _id;}
|
| -
|
| int SetDMOProperties();
|
|
|
| int SetBoolProperty(IPropertyStore* ptrPS,
|
| @@ -274,7 +272,6 @@ private: // thread functions
|
| AudioDeviceBuffer* _ptrAudioBuffer;
|
| rtc::CriticalSection _critSect;
|
| rtc::CriticalSection _volumeMutex;
|
| - int32_t _id;
|
|
|
| IMMDeviceEnumerator* _ptrEnumerator;
|
| IMMDeviceCollection* _ptrRenderCollection;
|
|
|