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 // AudioOutputDispatcherImpl is an implementation of AudioOutputDispatcher. | 5 // AudioOutputDispatcherImpl is an implementation of AudioOutputDispatcher. |
6 // | 6 // |
7 // To avoid opening and closing audio devices more frequently than necessary, | 7 // To avoid opening and closing audio devices more frequently than necessary, |
8 // each dispatcher has a pool of inactive physical streams. A stream is closed | 8 // each dispatcher has a pool of inactive physical streams. A stream is closed |
9 // only if it hasn't been used for a certain period of time (specified via the | 9 // only if it hasn't been used for a certain period of time (specified via the |
10 // constructor). | 10 // constructor). |
11 // | 11 // |
12 | 12 |
13 #ifndef MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_IMPL_H_ | 13 #ifndef MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_IMPL_H_ |
14 #define MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_IMPL_H_ | 14 #define MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_IMPL_H_ |
15 | 15 |
16 #include <list> | 16 #include <list> |
17 #include <map> | 17 #include <map> |
18 | 18 |
19 #include "base/basictypes.h" | 19 #include "base/basictypes.h" |
20 #include "base/memory/ref_counted.h" | 20 #include "base/memory/ref_counted.h" |
21 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
22 #include "base/timer.h" | 22 #include "base/timer/timer.h" |
23 #include "media/audio/audio_io.h" | 23 #include "media/audio/audio_io.h" |
24 #include "media/audio/audio_manager.h" | 24 #include "media/audio/audio_manager.h" |
25 #include "media/audio/audio_output_dispatcher.h" | 25 #include "media/audio/audio_output_dispatcher.h" |
26 #include "media/audio/audio_parameters.h" | 26 #include "media/audio/audio_parameters.h" |
27 | 27 |
28 namespace media { | 28 namespace media { |
29 | 29 |
30 class AudioOutputProxy; | 30 class AudioOutputProxy; |
31 | 31 |
32 class MEDIA_EXPORT AudioOutputDispatcherImpl : public AudioOutputDispatcher { | 32 class MEDIA_EXPORT AudioOutputDispatcherImpl : public AudioOutputDispatcher { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 base::DelayTimer<AudioOutputDispatcherImpl> close_timer_; | 92 base::DelayTimer<AudioOutputDispatcherImpl> close_timer_; |
93 | 93 |
94 AudioStreamMap proxy_to_physical_map_; | 94 AudioStreamMap proxy_to_physical_map_; |
95 | 95 |
96 DISALLOW_COPY_AND_ASSIGN(AudioOutputDispatcherImpl); | 96 DISALLOW_COPY_AND_ASSIGN(AudioOutputDispatcherImpl); |
97 }; | 97 }; |
98 | 98 |
99 } // namespace media | 99 } // namespace media |
100 | 100 |
101 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_IMPL_H_ | 101 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_IMPL_H_ |
OLD | NEW |