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_AUDIO_OUTPUT_RESAMPLER_H_ | 5 #ifndef MEDIA_AUDIO_AUDIO_OUTPUT_RESAMPLER_H_ |
6 #define MEDIA_AUDIO_AUDIO_OUTPUT_RESAMPLER_H_ | 6 #define MEDIA_AUDIO_AUDIO_OUTPUT_RESAMPLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 // | 33 // |
34 // TODO(dalecurtis): Ideally the low latency path will be as reliable as the | 34 // TODO(dalecurtis): Ideally the low latency path will be as reliable as the |
35 // high latency path once we have channel mixing and support querying for the | 35 // high latency path once we have channel mixing and support querying for the |
36 // hardware's configured bit depth. Monitor the UMA stats for fallback and | 36 // hardware's configured bit depth. Monitor the UMA stats for fallback and |
37 // remove fallback support once it's stable. http://crbug.com/148418 | 37 // remove fallback support once it's stable. http://crbug.com/148418 |
38 class MEDIA_EXPORT AudioOutputResampler : public AudioOutputDispatcher { | 38 class MEDIA_EXPORT AudioOutputResampler : public AudioOutputDispatcher { |
39 public: | 39 public: |
40 AudioOutputResampler(AudioManager* audio_manager, | 40 AudioOutputResampler(AudioManager* audio_manager, |
41 const AudioParameters& input_params, | 41 const AudioParameters& input_params, |
42 const AudioParameters& output_params, | 42 const AudioParameters& output_params, |
| 43 const std::string& input_device_id, |
43 const base::TimeDelta& close_delay); | 44 const base::TimeDelta& close_delay); |
44 | 45 |
45 // AudioOutputDispatcher interface. | 46 // AudioOutputDispatcher interface. |
46 virtual bool OpenStream() OVERRIDE; | 47 virtual bool OpenStream() OVERRIDE; |
47 virtual bool StartStream(AudioOutputStream::AudioSourceCallback* callback, | 48 virtual bool StartStream(AudioOutputStream::AudioSourceCallback* callback, |
48 AudioOutputProxy* stream_proxy) OVERRIDE; | 49 AudioOutputProxy* stream_proxy) OVERRIDE; |
49 virtual void StopStream(AudioOutputProxy* stream_proxy) OVERRIDE; | 50 virtual void StopStream(AudioOutputProxy* stream_proxy) OVERRIDE; |
50 virtual void StreamVolumeSet(AudioOutputProxy* stream_proxy, | 51 virtual void StreamVolumeSet(AudioOutputProxy* stream_proxy, |
51 double volume) OVERRIDE; | 52 double volume) OVERRIDE; |
52 virtual void CloseStream(AudioOutputProxy* stream_proxy) OVERRIDE; | 53 virtual void CloseStream(AudioOutputProxy* stream_proxy) OVERRIDE; |
(...skipping 13 matching lines...) Expand all Loading... |
66 // on every StartStream() call and destroyed on CloseStream(). | 67 // on every StartStream() call and destroyed on CloseStream(). |
67 typedef std::map<AudioOutputProxy*, OnMoreDataConverter*> CallbackMap; | 68 typedef std::map<AudioOutputProxy*, OnMoreDataConverter*> CallbackMap; |
68 CallbackMap callbacks_; | 69 CallbackMap callbacks_; |
69 | 70 |
70 // Used by AudioOutputDispatcherImpl; kept so we can reinitialize on the fly. | 71 // Used by AudioOutputDispatcherImpl; kept so we can reinitialize on the fly. |
71 base::TimeDelta close_delay_; | 72 base::TimeDelta close_delay_; |
72 | 73 |
73 // AudioParameters used to setup the output stream. | 74 // AudioParameters used to setup the output stream. |
74 AudioParameters output_params_; | 75 AudioParameters output_params_; |
75 | 76 |
| 77 // Device ID to be used by the unified IO to open the correct input device. |
| 78 const std::string input_device_id_; |
| 79 |
76 // Whether any streams have been opened through |dispatcher_|, if so we can't | 80 // Whether any streams have been opened through |dispatcher_|, if so we can't |
77 // fallback on future OpenStream() failures. | 81 // fallback on future OpenStream() failures. |
78 bool streams_opened_; | 82 bool streams_opened_; |
79 | 83 |
80 DISALLOW_COPY_AND_ASSIGN(AudioOutputResampler); | 84 DISALLOW_COPY_AND_ASSIGN(AudioOutputResampler); |
81 }; | 85 }; |
82 | 86 |
83 } // namespace media | 87 } // namespace media |
84 | 88 |
85 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_RESAMPLER_H_ | 89 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_RESAMPLER_H_ |
OLD | NEW |