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

Side by Side Diff: media/audio/audio_output_dispatcher_impl.h

Issue 163343002: Reland 153623004: Remove the unified IO code on the browser (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fixed the cras bot Created 6 years, 10 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 unified diff | Download patch
« no previous file with comments | « media/audio/audio_output_dispatcher.cc ('k') | media/audio/audio_output_dispatcher_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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).
(...skipping 18 matching lines...) Expand all
29 29
30 class AudioOutputProxy; 30 class AudioOutputProxy;
31 31
32 class MEDIA_EXPORT AudioOutputDispatcherImpl : public AudioOutputDispatcher { 32 class MEDIA_EXPORT AudioOutputDispatcherImpl : public AudioOutputDispatcher {
33 public: 33 public:
34 // |close_delay| specifies delay after the stream is idle until the audio 34 // |close_delay| specifies delay after the stream is idle until the audio
35 // device is closed. 35 // device is closed.
36 AudioOutputDispatcherImpl(AudioManager* audio_manager, 36 AudioOutputDispatcherImpl(AudioManager* audio_manager,
37 const AudioParameters& params, 37 const AudioParameters& params,
38 const std::string& output_device_id, 38 const std::string& output_device_id,
39 const std::string& input_device_id,
40 const base::TimeDelta& close_delay); 39 const base::TimeDelta& close_delay);
41 40
42 // Opens a new physical stream if there are no pending streams in 41 // Opens a new physical stream if there are no pending streams in
43 // |idle_streams_|. Do not call Close() or Stop() if this method fails. 42 // |idle_streams_|. Do not call Close() or Stop() if this method fails.
44 virtual bool OpenStream() OVERRIDE; 43 virtual bool OpenStream() OVERRIDE;
45 44
46 // If there are pending streams in |idle_streams_| then it reuses one of 45 // If there are pending streams in |idle_streams_| then it reuses one of
47 // them, otherwise creates a new one. 46 // them, otherwise creates a new one.
48 virtual bool StartStream(AudioOutputStream::AudioSourceCallback* callback, 47 virtual bool StartStream(AudioOutputStream::AudioSourceCallback* callback,
49 AudioOutputProxy* stream_proxy) OVERRIDE; 48 AudioOutputProxy* stream_proxy) OVERRIDE;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 typedef std::map<AudioOutputStream*, int> AudioStreamIDMap; 93 typedef std::map<AudioOutputStream*, int> AudioStreamIDMap;
95 AudioStreamIDMap audio_stream_ids_; 94 AudioStreamIDMap audio_stream_ids_;
96 int audio_stream_id_; 95 int audio_stream_id_;
97 96
98 DISALLOW_COPY_AND_ASSIGN(AudioOutputDispatcherImpl); 97 DISALLOW_COPY_AND_ASSIGN(AudioOutputDispatcherImpl);
99 }; 98 };
100 99
101 } // namespace media 100 } // namespace media
102 101
103 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_IMPL_H_ 102 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_DISPATCHER_IMPL_H_
OLDNEW
« no previous file with comments | « media/audio/audio_output_dispatcher.cc ('k') | media/audio/audio_output_dispatcher_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698