| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/audio/audio_io.h" | 5 #include "media/audio/audio_io.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 #include <objbase.h> // This has to be before initguid.h | 8 #include <objbase.h> // This has to be before initguid.h |
| 9 #include <initguid.h> | 9 #include <initguid.h> |
| 10 #include <mmsystem.h> | 10 #include <mmsystem.h> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "media/audio/win/audio_manager_win.h" | 30 #include "media/audio/win/audio_manager_win.h" |
| 31 #include "media/audio/win/core_audio_util_win.h" | 31 #include "media/audio/win/core_audio_util_win.h" |
| 32 #include "media/audio/win/device_enumeration_win.h" | 32 #include "media/audio/win/device_enumeration_win.h" |
| 33 #include "media/audio/win/wavein_input_win.h" | 33 #include "media/audio/win/wavein_input_win.h" |
| 34 #include "media/audio/win/waveout_output_win.h" | 34 #include "media/audio/win/waveout_output_win.h" |
| 35 #include "media/base/bind_to_current_loop.h" | 35 #include "media/base/bind_to_current_loop.h" |
| 36 #include "media/base/channel_layout.h" | 36 #include "media/base/channel_layout.h" |
| 37 #include "media/base/limits.h" | 37 #include "media/base/limits.h" |
| 38 #include "media/base/media_switches.h" | 38 #include "media/base/media_switches.h" |
| 39 | 39 |
| 40 // Libraries required for the SetupAPI and Wbem APIs used here. | |
| 41 #pragma comment(lib, "setupapi.lib") | |
| 42 | |
| 43 // The following are defined in various DDK headers, and we (re)define them here | 40 // The following are defined in various DDK headers, and we (re)define them here |
| 44 // to avoid adding the DDK as a chrome dependency. | 41 // to avoid adding the DDK as a chrome dependency. |
| 45 #define DRV_QUERYDEVICEINTERFACE 0x80c | 42 #define DRV_QUERYDEVICEINTERFACE 0x80c |
| 46 #define DRVM_MAPPER_PREFERRED_GET 0x2015 | 43 #define DRVM_MAPPER_PREFERRED_GET 0x2015 |
| 47 #define DRV_QUERYDEVICEINTERFACESIZE 0x80d | 44 #define DRV_QUERYDEVICEINTERFACESIZE 0x80d |
| 48 DEFINE_GUID(AM_KSCATEGORY_AUDIO, 0x6994ad04, 0x93ef, 0x11d0, | 45 DEFINE_GUID(AM_KSCATEGORY_AUDIO, 0x6994ad04, 0x93ef, 0x11d0, |
| 49 0xa3, 0xcc, 0x00, 0xa0, 0xc9, 0x22, 0x31, 0x96); | 46 0xa3, 0xcc, 0x00, 0xa0, 0xc9, 0x22, 0x31, 0x96); |
| 50 | 47 |
| 51 namespace media { | 48 namespace media { |
| 52 | 49 |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 return new PCMWaveInAudioInputStream(this, params, kNumInputBuffers, | 535 return new PCMWaveInAudioInputStream(this, params, kNumInputBuffers, |
| 539 xp_device_id); | 536 xp_device_id); |
| 540 } | 537 } |
| 541 | 538 |
| 542 /// static | 539 /// static |
| 543 AudioManager* CreateAudioManager(AudioLogFactory* audio_log_factory) { | 540 AudioManager* CreateAudioManager(AudioLogFactory* audio_log_factory) { |
| 544 return new AudioManagerWin(audio_log_factory); | 541 return new AudioManagerWin(audio_log_factory); |
| 545 } | 542 } |
| 546 | 543 |
| 547 } // namespace media | 544 } // namespace media |
| OLD | NEW |