| 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_BASE_AUDIO_RENDERER_MIXER_H_ | 5 #ifndef MEDIA_BASE_AUDIO_RENDERER_MIXER_H_ |
| 6 #define MEDIA_BASE_AUDIO_RENDERER_MIXER_H_ | 6 #define MEDIA_BASE_AUDIO_RENDERER_MIXER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> |
| 9 | 10 |
| 10 #include "base/synchronization/lock.h" | 11 #include "base/synchronization/lock.h" |
| 11 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 12 #include "media/base/audio_converter.h" | 13 #include "media/base/audio_converter.h" |
| 13 #include "media/base/audio_renderer_sink.h" | 14 #include "media/base/audio_renderer_sink.h" |
| 14 | 15 |
| 15 namespace media { | 16 namespace media { |
| 16 | 17 |
| 17 // Mixes a set of AudioConverter::InputCallbacks into a single output stream | 18 // Mixes a set of AudioConverter::InputCallbacks into a single output stream |
| 18 // which is funneled into a single shared AudioRendererSink; saving a bundle | 19 // which is funneled into a single shared AudioRendererSink; saving a bundle |
| (...skipping 13 matching lines...) Expand all Loading... |
| 32 // Since errors may occur even when no inputs are playing, an error callback | 33 // Since errors may occur even when no inputs are playing, an error callback |
| 33 // must be registered separately from adding a mixer input. The same callback | 34 // must be registered separately from adding a mixer input. The same callback |
| 34 // must be given to both the functions. | 35 // must be given to both the functions. |
| 35 void AddErrorCallback(const base::Closure& error_cb); | 36 void AddErrorCallback(const base::Closure& error_cb); |
| 36 void RemoveErrorCallback(const base::Closure& error_cb); | 37 void RemoveErrorCallback(const base::Closure& error_cb); |
| 37 | 38 |
| 38 void set_pause_delay_for_testing(base::TimeDelta delay) { | 39 void set_pause_delay_for_testing(base::TimeDelta delay) { |
| 39 pause_delay_ = delay; | 40 pause_delay_ = delay; |
| 40 } | 41 } |
| 41 | 42 |
| 43 void SwitchOutputDevice(const std::string& device_id, |
| 44 const GURL& security_origin, |
| 45 const SwitchOutputDeviceCB& callback); |
| 46 |
| 42 private: | 47 private: |
| 43 // AudioRendererSink::RenderCallback implementation. | 48 // AudioRendererSink::RenderCallback implementation. |
| 44 int Render(AudioBus* audio_bus, int audio_delay_milliseconds) override; | 49 int Render(AudioBus* audio_bus, int audio_delay_milliseconds) override; |
| 45 void OnRenderError() override; | 50 void OnRenderError() override; |
| 46 | 51 |
| 47 // Output sink for this mixer. | 52 // Output sink for this mixer. |
| 48 scoped_refptr<AudioRendererSink> audio_sink_; | 53 scoped_refptr<AudioRendererSink> audio_sink_; |
| 49 | 54 |
| 50 // ---------------[ All variables below protected by |lock_| ]--------------- | 55 // ---------------[ All variables below protected by |lock_| ]--------------- |
| 51 base::Lock lock_; | 56 base::Lock lock_; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 62 base::TimeDelta pause_delay_; | 67 base::TimeDelta pause_delay_; |
| 63 base::TimeTicks last_play_time_; | 68 base::TimeTicks last_play_time_; |
| 64 bool playing_; | 69 bool playing_; |
| 65 | 70 |
| 66 DISALLOW_COPY_AND_ASSIGN(AudioRendererMixer); | 71 DISALLOW_COPY_AND_ASSIGN(AudioRendererMixer); |
| 67 }; | 72 }; |
| 68 | 73 |
| 69 } // namespace media | 74 } // namespace media |
| 70 | 75 |
| 71 #endif // MEDIA_BASE_AUDIO_RENDERER_MIXER_H_ | 76 #endif // MEDIA_BASE_AUDIO_RENDERER_MIXER_H_ |
| OLD | NEW |