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

Side by Side Diff: media/base/audio_renderer_mixer.cc

Issue 301223012: Deliver RenderCallbackErrors even when mixer inputs are paused. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: List! Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « media/base/audio_renderer_mixer.h ('k') | media/base/audio_renderer_mixer_input.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 #include "media/base/audio_renderer_mixer.h" 5 #include "media/base/audio_renderer_mixer.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
(...skipping 11 matching lines...) Expand all
22 // Initialize |playing_| to true since Start() results in an auto-play. 22 // Initialize |playing_| to true since Start() results in an auto-play.
23 playing_(true) { 23 playing_(true) {
24 audio_sink_->Initialize(output_params, this); 24 audio_sink_->Initialize(output_params, this);
25 audio_sink_->Start(); 25 audio_sink_->Start();
26 } 26 }
27 27
28 AudioRendererMixer::~AudioRendererMixer() { 28 AudioRendererMixer::~AudioRendererMixer() {
29 // AudioRendererSinks must be stopped before being destructed. 29 // AudioRendererSinks must be stopped before being destructed.
30 audio_sink_->Stop(); 30 audio_sink_->Stop();
31 31
32 // Ensures that all mixer inputs have stopped themselves prior to destruction 32 // Ensure that all mixer inputs have removed themselves prior to destruction.
33 // and have called RemoveMixerInput(). 33 DCHECK(audio_converter_.empty());
34 DCHECK_EQ(mixer_inputs_.size(), 0U); 34 DCHECK_EQ(error_callbacks_.size(), 0U);
35 } 35 }
36 36
37 void AudioRendererMixer::AddMixerInput(AudioConverter::InputCallback* input, 37 void AudioRendererMixer::AddMixerInput(AudioConverter::InputCallback* input) {
38 const base::Closure& error_cb) { 38 base::AutoLock auto_lock(lock_);
39 base::AutoLock auto_lock(mixer_inputs_lock_);
40
41 if (!playing_) { 39 if (!playing_) {
42 playing_ = true; 40 playing_ = true;
43 last_play_time_ = base::TimeTicks::Now(); 41 last_play_time_ = base::TimeTicks::Now();
44 audio_sink_->Play(); 42 audio_sink_->Play();
45 } 43 }
46 44
47 DCHECK(mixer_inputs_.find(input) == mixer_inputs_.end());
48 mixer_inputs_[input] = error_cb;
49 audio_converter_.AddInput(input); 45 audio_converter_.AddInput(input);
50 } 46 }
51 47
52 void AudioRendererMixer::RemoveMixerInput( 48 void AudioRendererMixer::RemoveMixerInput(
53 AudioConverter::InputCallback* input) { 49 AudioConverter::InputCallback* input) {
54 base::AutoLock auto_lock(mixer_inputs_lock_); 50 base::AutoLock auto_lock(lock_);
55 audio_converter_.RemoveInput(input); 51 audio_converter_.RemoveInput(input);
52 }
56 53
57 DCHECK(mixer_inputs_.find(input) != mixer_inputs_.end()); 54 void AudioRendererMixer::AddErrorCallback(const base::Closure& error_cb) {
58 mixer_inputs_.erase(input); 55 base::AutoLock auto_lock(lock_);
56 error_callbacks_.push_back(error_cb);
57 }
58
59 void AudioRendererMixer::RemoveErrorCallback(const base::Closure& error_cb) {
60 base::AutoLock auto_lock(lock_);
61 for (ErrorCallbackList::iterator it = error_callbacks_.begin();
62 it != error_callbacks_.end();
63 ++it) {
64 if (it->Equals(error_cb)) {
65 error_callbacks_.erase(it);
66 return;
67 }
68 }
69
70 // An error callback should always exist when called.
71 NOTREACHED();
59 } 72 }
60 73
61 int AudioRendererMixer::Render(AudioBus* audio_bus, 74 int AudioRendererMixer::Render(AudioBus* audio_bus,
62 int audio_delay_milliseconds) { 75 int audio_delay_milliseconds) {
63 base::AutoLock auto_lock(mixer_inputs_lock_); 76 base::AutoLock auto_lock(lock_);
64 77
65 // If there are no mixer inputs and we haven't seen one for a while, pause the 78 // If there are no mixer inputs and we haven't seen one for a while, pause the
66 // sink to avoid wasting resources when media elements are present but remain 79 // sink to avoid wasting resources when media elements are present but remain
67 // in the pause state. 80 // in the pause state.
68 const base::TimeTicks now = base::TimeTicks::Now(); 81 const base::TimeTicks now = base::TimeTicks::Now();
69 if (!mixer_inputs_.empty()) { 82 if (!audio_converter_.empty()) {
70 last_play_time_ = now; 83 last_play_time_ = now;
71 } else if (now - last_play_time_ >= pause_delay_ && playing_) { 84 } else if (now - last_play_time_ >= pause_delay_ && playing_) {
72 audio_sink_->Pause(); 85 audio_sink_->Pause();
73 playing_ = false; 86 playing_ = false;
74 } 87 }
75 88
76 audio_converter_.ConvertWithDelay( 89 audio_converter_.ConvertWithDelay(
77 base::TimeDelta::FromMilliseconds(audio_delay_milliseconds), audio_bus); 90 base::TimeDelta::FromMilliseconds(audio_delay_milliseconds), audio_bus);
78 return audio_bus->frames(); 91 return audio_bus->frames();
79 } 92 }
80 93
81 void AudioRendererMixer::OnRenderError() { 94 void AudioRendererMixer::OnRenderError() {
82 base::AutoLock auto_lock(mixer_inputs_lock_);
83
84 // Call each mixer input and signal an error. 95 // Call each mixer input and signal an error.
85 for (AudioRendererMixerInputSet::iterator it = mixer_inputs_.begin(); 96 base::AutoLock auto_lock(lock_);
86 it != mixer_inputs_.end(); ++it) { 97 for (ErrorCallbackList::const_iterator it = error_callbacks_.begin();
87 it->second.Run(); 98 it != error_callbacks_.end();
99 ++it) {
100 it->Run();
88 } 101 }
89 } 102 }
90 103
91 } // namespace media 104 } // namespace media
OLDNEW
« no previous file with comments | « media/base/audio_renderer_mixer.h ('k') | media/base/audio_renderer_mixer_input.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698