| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #ifndef MEDIA_AUDIO_AUDIO_SYSTEM_H_ | 5 #ifndef MEDIA_AUDIO_AUDIO_SYSTEM_H_ |
| 6 #define MEDIA_AUDIO_AUDIO_SYSTEM_H_ | 6 #define MEDIA_AUDIO_AUDIO_SYSTEM_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "media/audio/audio_device_description.h" | |
| 10 #include "media/base/audio_parameters.h" | 9 #include "media/base/audio_parameters.h" |
| 11 #include "media/base/media_export.h" | 10 #include "media/base/media_export.h" |
| 12 | 11 |
| 13 namespace media { | 12 namespace media { |
| 14 class AudioManager; | 13 class AudioManager; |
| 15 | 14 |
| 16 // Work in progress: Provides asynchronous interface to AudioManager. All the | 15 // Work in progress: Provides asynchronous interface to AudioManager. All the |
| 17 // AudioManager clients will be switched to it, in preparation for moving | 16 // AudioManager clients will be switched to it, in preparation for moving |
| 18 // to Mojo audio service. | 17 // to Mojo audio service. |
| 19 class MEDIA_EXPORT AudioSystem { | 18 class MEDIA_EXPORT AudioSystem { |
| 20 public: | 19 public: |
| 21 // Replies are asynchronously sent to the thread the call is issued on. | 20 // Replies are asynchronously sent to the thread the call is issued on. |
| 22 using OnAudioParamsCallback = base::Callback<void(const AudioParameters&)>; | 21 using OnAudioParamsCallback = base::Callback<void(const AudioParameters&)>; |
| 22 using OnBoolCallback = base::Callback<void(bool)>; |
| 23 | 23 |
| 24 virtual ~AudioSystem(){}; | 24 static AudioSystem* Get(); |
| 25 |
| 26 virtual ~AudioSystem(); |
| 25 | 27 |
| 26 // Callback will receive invalid parameters if the device is not found. | 28 // Callback will receive invalid parameters if the device is not found. |
| 27 virtual void GetInputStreamParameters( | 29 virtual void GetInputStreamParameters( |
| 28 const std::string& device_id, | 30 const std::string& device_id, |
| 29 OnAudioParamsCallback on_params_cb) const = 0; | 31 OnAudioParamsCallback on_params_cb) const = 0; |
| 30 | 32 |
| 33 virtual void HasInputDevices(OnBoolCallback on_has_devices_cb) const = 0; |
| 34 |
| 31 // Must not be used for anything but stream creation. | 35 // Must not be used for anything but stream creation. |
| 32 virtual AudioManager* GetAudioManager() const = 0; | 36 virtual AudioManager* GetAudioManager() const = 0; |
| 37 |
| 38 protected: |
| 39 // Sets the global AudioSystem pointer to the specified non-null value. |
| 40 static void SetInstance(AudioSystem* audio_system); |
| 41 |
| 42 // Sets the global AudioSystem pointer to null if it equals the specified one. |
| 43 static void ClearInstance(const AudioSystem* audio_system); |
| 33 }; | 44 }; |
| 34 | 45 |
| 35 } // namespace media | 46 } // namespace media |
| 36 | 47 |
| 37 #endif // MEDIA_AUDIO_AUDIO_SYSTEM_H_ | 48 #endif // MEDIA_AUDIO_AUDIO_SYSTEM_H_ |
| OLD | NEW |