| 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 #ifndef MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_ | 5 #ifndef MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_ |
| 6 #define MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_ | 6 #define MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/threading/thread.h" | 11 #include "base/threading/thread.h" |
| 12 #include "media/audio/audio_manager_base.h" | 12 #include "media/audio/audio_manager_base.h" |
| 13 | 13 |
| 14 namespace media { | 14 namespace media { |
| 15 | 15 |
| 16 class AlsaWrapper; | 16 class AlsaWrapper; |
| 17 | 17 |
| 18 class MEDIA_EXPORT AudioManagerLinux : public AudioManagerBase { | 18 class MEDIA_EXPORT AudioManagerLinux : public AudioManagerBase { |
| 19 public: | 19 public: |
| 20 AudioManagerLinux(); | 20 AudioManagerLinux(); |
| 21 | 21 |
| 22 static void ShowLinuxAudioInputSettings(); | 22 static void ShowLinuxAudioInputSettings(); |
| 23 | 23 |
| 24 // Implementation of AudioManager. | 24 // Implementation of AudioManager. |
| 25 virtual bool HasAudioOutputDevices() OVERRIDE; | 25 virtual bool HasAudioOutputDevices() OVERRIDE; |
| 26 virtual bool HasAudioInputDevices() OVERRIDE; | 26 virtual bool HasAudioInputDevices() OVERRIDE; |
| 27 virtual void ShowAudioInputSettings() OVERRIDE; | 27 virtual void ShowAudioInputSettings() OVERRIDE; |
| 28 virtual void GetAudioInputDeviceNames(media::AudioDeviceNames* device_names) | 28 virtual void GetAudioInputDeviceNames( |
| 29 OVERRIDE; | 29 AudioDeviceNames* device_names) OVERRIDE; |
| 30 virtual void GetAudioOutputDeviceNames(media::AudioDeviceNames* device_names) | 30 virtual void GetAudioOutputDeviceNames( |
| 31 OVERRIDE; | 31 AudioDeviceNames* device_names) OVERRIDE; |
| 32 virtual AudioParameters GetInputStreamParameters( | 32 virtual AudioParameters GetInputStreamParameters( |
| 33 const std::string& device_id) OVERRIDE; | 33 const std::string& device_id) OVERRIDE; |
| 34 | 34 |
| 35 // Implementation of AudioManagerBase. | 35 // Implementation of AudioManagerBase. |
| 36 virtual AudioOutputStream* MakeLinearOutputStream( | 36 virtual AudioOutputStream* MakeLinearOutputStream( |
| 37 const AudioParameters& params) OVERRIDE; | 37 const AudioParameters& params) OVERRIDE; |
| 38 virtual AudioOutputStream* MakeLowLatencyOutputStream( | 38 virtual AudioOutputStream* MakeLowLatencyOutputStream( |
| 39 const AudioParameters& params, | 39 const AudioParameters& params, |
| 40 const std::string& device_id, | 40 const std::string& device_id, |
| 41 const std::string& input_device_id) OVERRIDE; | 41 const std::string& input_device_id) OVERRIDE; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 const std::string& device_id); | 85 const std::string& device_id); |
| 86 | 86 |
| 87 scoped_ptr<AlsaWrapper> wrapper_; | 87 scoped_ptr<AlsaWrapper> wrapper_; |
| 88 | 88 |
| 89 DISALLOW_COPY_AND_ASSIGN(AudioManagerLinux); | 89 DISALLOW_COPY_AND_ASSIGN(AudioManagerLinux); |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 } // namespace media | 92 } // namespace media |
| 93 | 93 |
| 94 #endif // MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_ | 94 #endif // MEDIA_AUDIO_LINUX_AUDIO_MANAGER_LINUX_H_ |
| OLD | NEW |