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

Unified Diff: media/audio/audio_device_description.h

Issue 1892433002: Moving device description utils from AudioManager[Base] into AudioDeviceDescription; to be shared b… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another rebase Created 4 years, 8 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/audio/android/audio_manager_android.cc ('k') | media/audio/audio_device_description.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_device_description.h
diff --git a/media/audio/audio_device_description.h b/media/audio/audio_device_description.h
new file mode 100644
index 0000000000000000000000000000000000000000..ed8d803883c2039e734e6195d2f90d1c62c3582f
--- /dev/null
+++ b/media/audio/audio_device_description.h
@@ -0,0 +1,59 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef MEDIA_AUDIO_AUDIO_DEVICE_DESCRIPTION_H_
+#define MEDIA_AUDIO_AUDIO_DEVICE_DESCRIPTION_H_
+
+#include <string>
+#include "media/base/media_export.h"
+
+namespace media {
+
+// Provides common information on audio device names and ids.
+class MEDIA_EXPORT AudioDeviceDescription {
+ public:
+ // Unique Id of the generic "default" device. Associated with the localized
+ // name returned from GetDefaultDeviceName().
+ static const char kDefaultDeviceId[];
+
+ // Unique Id of the generic default communications device. Associated with
+ // the localized name returned from GetCommunicationsDeviceName().
+ static const char kCommunicationsDeviceId[];
+
+ // Input device ID used to capture the default system playback stream. When
+ // this device ID is passed to MakeAudioInputStream() the returned
+ // AudioInputStream will be capturing audio currently being played on the
+ // default playback device. At the moment this feature is supported only on
+ // some platforms. AudioInputStream::Intialize() will return an error on
+ // platforms that don't support it. GetInputStreamParameters() must be used
+ // to get the parameters of the loopback device before creating a loopback
+ // stream, otherwise stream initialization may fail.
+ static const char kLoopbackInputDeviceId[];
+
+ // Returns true if |device_id| represents the default device.
+ static bool IsDefaultDevice(const std::string& device_id);
+
+ // If |device_id| is not empty, |session_id| should be ignored and the output
+ // device should be selected basing on |device_id|.
+ // If |device_id| is empty and |session_id| is nonzero, output device
+ // associated with the opened input device designated by |session_id| should
+ // be used.
+ static bool UseSessionIdToSelectDevice(int session_id,
+ const std::string& device_id);
+
+ // Returns the localized name of the generic "default" device.
+ static std::string GetDefaultDeviceName();
+
+ // Returns the localized name of the generic default communications device.
+ // This device is not supported on all platforms.
+ static std::string GetCommunicationsDeviceName();
+
+ private:
+ AudioDeviceDescription() {}
+ ~AudioDeviceDescription() {}
+};
+
+} // namespace media
+
+#endif // MEDIA_AUDIO_AUDIO_DEVICE_DESCRIPTION_H_
« no previous file with comments | « media/audio/android/audio_manager_android.cc ('k') | media/audio/audio_device_description.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698