Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: media/audio/win/device_enumeration_win.h

Issue 8606006: Adds support for capture device enumeration on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Rebase and fix lint warnings Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « media/audio/win/audio_manager_win.cc ('k') | media/audio/win/device_enumeration_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_AUDIO_WIN_DEVICE_ENUMERATION_WIN_H_
6 #define MEDIA_AUDIO_WIN_DEVICE_ENUMERATION_WIN_H_
7
8 #include "media/audio/audio_device_name.h"
9
10 // Returns a list of audio input device structures (name and unique device ID)
11 // using the MMDevice API which is supported on Windows Vista and higher.
12 // Example record in the output list:
13 // - device_name: "Microphone (Realtek High Definition Audio)".
14 // - unique_id: "{0.0.1.00000000}.{8db6020f-18e3-4f25-b6f5-7726c9122574}"
15 // This method must be called from a COM thread using MTA.
16 bool GetInputDeviceNamesWin(media::AudioDeviceNames* device_names);
17
18 // Returns a list of audio input device structures (name and unique device ID)
19 // using the WaveIn API which is supported on Windows XP and higher.
20 // Example record in the output list:
21 // - device_name: "Microphone (Realtek High Defini".
22 // - unique_id: "Microphone (Realtek High Defini" (same as friendly name).
23 bool GetInputDeviceNamesWinXP(media::AudioDeviceNames* device_names);
24
25 #endif // MEDIA_AUDIO_WIN_DEVICE_ENUMERATION_WIN_H_
26
OLDNEW
« no previous file with comments | « media/audio/win/audio_manager_win.cc ('k') | media/audio/win/device_enumeration_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698