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

Side by Side Diff: content/renderer/media/webrtc/webrtc_audio_sink_adapter.h

Issue 1834323002: MediaStream audio: Refactor 3 separate "glue" implementations into one. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE + Workaround to ensure MediaStreamAudioProcessor is destroyed on the main thread. Created 4 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2014 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.
4
5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_
6 #define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_
7
8 #include <stdint.h>
9
10 #include <memory>
11
12 #include "base/macros.h"
13 #include "content/public/renderer/media_stream_audio_sink.h"
14 #include "media/base/audio_parameters.h"
15
16 namespace webrtc {
17 class AudioTrackSinkInterface;
18 } // namespace webrtc
19
20 namespace content {
21
22 // Adapter to the webrtc::AudioTrackSinkInterface of the audio track.
23 // This class is used in between the MediaStreamAudioSink and
24 // webrtc::AudioTrackSinkInterface. It gets data callback via the
25 // MediaStreamAudioSink::OnData() interface and pass the data to
26 // webrtc::AudioTrackSinkInterface.
27 class WebRtcAudioSinkAdapter : public MediaStreamAudioSink {
28 public:
29 explicit WebRtcAudioSinkAdapter(
30 webrtc::AudioTrackSinkInterface* sink);
31 ~WebRtcAudioSinkAdapter() override;
32
33 bool IsEqual(const webrtc::AudioTrackSinkInterface* other) const;
34
35 private:
36 // MediaStreamAudioSink implementation.
37 void OnData(const media::AudioBus& audio_bus,
38 base::TimeTicks estimated_capture_time) override;
39 void OnSetFormat(const media::AudioParameters& params) override;
40
41 webrtc::AudioTrackSinkInterface* const sink_;
42
43 media::AudioParameters params_;
44 std::unique_ptr<int16_t[]> interleaved_data_;
45
46 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioSinkAdapter);
47 };
48
49 } // namespace content
50
51 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_
OLDNEW
« no previous file with comments | « content/renderer/media/webrtc/webrtc_audio_sink.cc ('k') | content/renderer/media/webrtc/webrtc_audio_sink_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698