cc: Make picture pile base thread safe.
[chromium-blink-merge.git] / content / renderer / media / webrtc_local_audio_renderer.h
blob95987f4d8705e801a5076dcc748d06ed95f54403
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
3 // found in the LICENSE file.
5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_LOCAL_AUDIO_RENDERER_H_
6 #define CONTENT_RENDERER_MEDIA_WEBRTC_LOCAL_AUDIO_RENDERER_H_
8 #include <vector>
10 #include "base/callback.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/message_loop/message_loop_proxy.h"
13 #include "base/synchronization/lock.h"
14 #include "base/threading/thread_checker.h"
15 #include "content/common/content_export.h"
16 #include "content/public/renderer/media_stream_audio_sink.h"
17 #include "content/renderer/media/media_stream_audio_renderer.h"
18 #include "content/renderer/media/webrtc_audio_device_impl.h"
19 #include "content/renderer/media/webrtc_local_audio_track.h"
20 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
22 namespace media {
23 class AudioBus;
24 class AudioBlockFifo;
25 class AudioOutputDevice;
26 class AudioParameters;
29 namespace content {
31 class WebRtcAudioCapturer;
33 // WebRtcLocalAudioRenderer is a MediaStreamAudioRenderer designed for rendering
34 // local audio media stream tracks,
35 // http://dev.w3.org/2011/webrtc/editor/getusermedia.html#mediastreamtrack
36 // It also implements media::AudioRendererSink::RenderCallback to render audio
37 // data provided from a WebRtcLocalAudioTrack source.
38 // When the audio layer in the browser process asks for data to render, this
39 // class provides the data by implementing the MediaStreamAudioSink
40 // interface, i.e., we are a sink seen from the WebRtcAudioCapturer perspective.
41 // TODO(henrika): improve by using similar principles as in RTCVideoRenderer
42 // which register itself to the video track when the provider is started and
43 // deregisters itself when it is stopped.
44 // Tracking this at http://crbug.com/164813.
45 class CONTENT_EXPORT WebRtcLocalAudioRenderer
46 : NON_EXPORTED_BASE(public MediaStreamAudioRenderer),
47 NON_EXPORTED_BASE(public MediaStreamAudioSink),
48 NON_EXPORTED_BASE(public media::AudioRendererSink::RenderCallback) {
49 public:
50 // Creates a local renderer and registers a capturing |source| object.
51 // The |source| is owned by the WebRtcAudioDeviceImpl.
52 // Called on the main thread.
53 WebRtcLocalAudioRenderer(const blink::WebMediaStreamTrack& audio_track,
54 int source_render_view_id,
55 int source_render_frame_id,
56 int session_id,
57 int frames_per_buffer);
59 // MediaStreamAudioRenderer implementation.
60 // Called on the main thread.
61 void Start() override;
62 void Stop() override;
63 void Play() override;
64 void Pause() override;
65 void SetVolume(float volume) override;
66 base::TimeDelta GetCurrentRenderTime() const override;
67 bool IsLocalRenderer() const override;
69 const base::TimeDelta& total_render_time() const {
70 return total_render_time_;
73 protected:
74 ~WebRtcLocalAudioRenderer() override;
76 private:
77 // MediaStreamAudioSink implementation.
79 // Called on the AudioInputDevice worker thread.
80 void OnData(const int16* audio_data,
81 int sample_rate,
82 int number_of_channels,
83 int number_of_frames) override;
85 // Called on the AudioInputDevice worker thread.
86 void OnSetFormat(const media::AudioParameters& params) override;
88 // media::AudioRendererSink::RenderCallback implementation.
89 // Render() is called on the AudioOutputDevice thread and OnRenderError()
90 // on the IO thread.
91 int Render(media::AudioBus* audio_bus, int audio_delay_milliseconds) override;
92 void OnRenderError() override;
94 // Initializes and starts the |sink_| if
95 // we have received valid |source_params_| &&
96 // |playing_| has been set to true &&
97 // |volume_| is not zero.
98 void MaybeStartSink();
100 // Sets new |source_params_| and then re-initializes and restarts |sink_|.
101 void ReconfigureSink(const media::AudioParameters& params);
103 // The audio track which provides data to render. Given that this class
104 // implements local loopback, the audio track is getting data from a capture
105 // instance like a selected microphone and forwards the recorded data to its
106 // sinks. The recorded data is stored in a FIFO and consumed
107 // by this class when the sink asks for new data.
108 // This class is calling MediaStreamAudioSink::AddToAudioTrack() and
109 // MediaStreamAudioSink::RemoveFromAudioTrack() to connect and disconnect
110 // with the audio track.
111 blink::WebMediaStreamTrack audio_track_;
113 // The render view and frame in which the audio is rendered into |sink_|.
114 const int source_render_view_id_;
115 const int source_render_frame_id_;
116 const int session_id_;
118 // MessageLoop associated with the single thread that performs all control
119 // tasks. Set to the MessageLoop that invoked the ctor.
120 const scoped_refptr<base::MessageLoopProxy> message_loop_;
122 // The sink (destination) for rendered audio.
123 scoped_refptr<media::AudioOutputDevice> sink_;
125 // Contains copies of captured audio frames.
126 scoped_ptr<media::AudioBlockFifo> loopback_fifo_;
128 // Stores last time a render callback was received. The time difference
129 // between a new time stamp and this value can be used to derive the
130 // total render time.
131 base::TimeTicks last_render_time_;
133 // Keeps track of total time audio has been rendered.
134 base::TimeDelta total_render_time_;
136 // The audio parameters of the capture source.
137 // Must only be touched on the main thread.
138 media::AudioParameters source_params_;
140 // The audio parameters used by the sink.
141 // Must only be touched on the main thread.
142 media::AudioParameters sink_params_;
144 // Set when playing, cleared when paused.
145 bool playing_;
147 // Protects |loopback_fifo_|, |playing_| and |sink_|.
148 mutable base::Lock thread_lock_;
150 // The preferred buffer size provided via the ctor.
151 const int frames_per_buffer_;
153 // The preferred device id of the output device or empty for the default
154 // output device.
155 const std::string output_device_id_;
157 // Cache value for the volume.
158 float volume_;
160 // Flag to indicate whether |sink_| has been started yet.
161 bool sink_started_;
163 // Used to DCHECK that some methods are called on the capture audio thread.
164 base::ThreadChecker capture_thread_checker_;
166 DISALLOW_COPY_AND_ASSIGN(WebRtcLocalAudioRenderer);
169 } // namespace content
171 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_LOCAL_AUDIO_RENDERER_H_