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

Side by Side Diff: content/renderer/pepper/pepper_media_stream_audio_track_host.cc

Issue 140783004: [PPAPI] Pepper MediaStream API audio track implementation and example. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-upload the patchset Created 6 years, 11 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 (c) 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 #include "content/renderer/pepper/pepper_media_stream_audio_track_host.h"
6
7 #include "base/bind.h"
8 #include "base/location.h"
9 #include "base/logging.h"
10 #include "base/message_loop/message_loop_proxy.h"
11 #include "ppapi/c/pp_errors.h"
12 #include "ppapi/c/ppb_audio_frame.h"
13 #include "ppapi/shared_impl/media_stream_frame.h"
14
15 namespace {
16
17 // TODO(penghuang): make it configurable.
18 const int32_t kNumberOfFrames = 4;
19
20 } // namespace
21
22 namespace content {
23
24 PepperMediaStreamAudioTrackHost::PepperMediaStreamAudioTrackHost(
25 RendererPpapiHost* host,
26 PP_Instance instance,
27 PP_Resource resource,
28 const blink::WebMediaStreamTrack& track)
29 : PepperMediaStreamTrackHostBase(host, instance, resource),
30 track_(track),
31 connected_(false),
32 frame_data_size_(0),
33 main_message_loop_proxy_(base::MessageLoopProxy::current()),
34 weak_factory_(this) {
35 DCHECK(!track_.isNull());
36 }
37
38 PepperMediaStreamAudioTrackHost::~PepperMediaStreamAudioTrackHost() {
39 OnClose();
40 }
41
42 void PepperMediaStreamAudioTrackHost::InitFramesOnMainThread(
43 uint32_t number_of_frames, uint32_t frame_size) {
44 bool result = InitFrames(number_of_frames, frame_size);
45 DCHECK(result);
46 }
47
48 void PepperMediaStreamAudioTrackHost::OnClose() {
49 if (connected_) {
50 MediaStreamAudioSink::RemoveFromAudioTrack(this, track_);
51 connected_ = false;
52 }
53 }
54
55 void PepperMediaStreamAudioTrackHost::OnData(const int16* audio_data,
56 int sample_rate,
57 int number_of_channels,
58 int number_of_frames) {
59 DCHECK(audio_data);
60 DCHECK_EQ(sample_rate, audio_params_.sample_rate());
61 DCHECK_EQ(number_of_channels, audio_params_.channels());
62 DCHECK_EQ(number_of_frames, audio_params_.frames_per_buffer());
63
64 int32_t index = frame_buffer()->DequeueFrame();
65 // Drop frames if the underlying buffer is full or not initialized.
66 if (index >= 0) {
67 // TODO(penghuang): support re-sampling, etc.
68 ppapi::MediaStreamFrame::Audio* frame =
69 &(frame_buffer()->GetFramePointer(index)->audio);
dmichael (off chromium) 2014/01/21 23:22:53 It's not obvious that it's safe to call frame_buff
Peng 2014/01/22 20:13:32 Done
70 frame->header.size = frame_buffer()->frame_size();
71 frame->header.type = ppapi::MediaStreamFrame::TYPE_AUDIO;
72 frame->timestamp = timestamp_.InMillisecondsF();
73 frame->sample_rate = static_cast<PP_AudioSampleRate>(sample_rate);
74 frame->number_of_channels = number_of_channels;
75 frame->number_of_samples = number_of_channels * number_of_frames;
76 frame->data_size = frame_data_size_;
77
78 memcpy(frame->data, audio_data, frame_data_size_);
79 // This function is called from an audio thread, but
80 // |SendEnqueueFrameMessageToPlugin()| doesn't use any sync IPC,
81 // so it is safe to call it directly.
82 SendEnqueueFrameMessageToPlugin(index);
dmichael (off chromium) 2014/01/17 23:45:06 The way that ChannelProxy makes it OK to send from
Peng 2014/01/20 22:05:44 Do we have existing host which lives on the IO thr
dmichael (off chromium) 2014/01/21 23:22:53 We have "Filters" instead, which are (IIRC) create
Peng 2014/01/22 20:13:32 Leave it. Maybe revisit it in future, if we find a
83 }
84 timestamp_ += frame_duration_;
85 }
86
87 void PepperMediaStreamAudioTrackHost::OnSetFormat(
88 const media::AudioParameters& params) {
89 DCHECK(!audio_params_.IsValid());
90 DCHECK(params.IsValid());
91 DCHECK_EQ(params.bits_per_sample(), 16);
92
93 // TODO(penghuang): support setting format more than once.
94 audio_params_ = params;
95 frame_duration_ = audio_params_.GetBufferDuration();
96 frame_data_size_ = audio_params_.GetBytesPerBuffer();
97
98 // The size is slight bigger for containing a frame, because 8 extra bytes are
dmichael (off chromium) 2014/01/17 23:45:06 nit: "slight bigger"->"slightly bigger than necess
Peng 2014/01/20 22:05:44 Done.
99 // added into the struct. Also see |MediaStreamFrame|.
100 int32_t size = sizeof(ppapi::MediaStreamFrame::Audio) + frame_data_size_;
101
102 // This function is called from an audio thread and |InitFrames()| uses some
103 // sync IPC. So we have to call |InitFrames()| in the main thread.
104 main_message_loop_proxy_->PostTask(
105 FROM_HERE,
106 base::Bind(&PepperMediaStreamAudioTrackHost::InitFramesOnMainThread,
107 weak_factory_.GetWeakPtr(), kNumberOfFrames, size));
108 }
109
110 void PepperMediaStreamAudioTrackHost::DidConnectPendingHostToResource() {
111 if (!connected_) {
112 MediaStreamAudioSink::AddToAudioTrack(this, track_);
113 connected_ = true;
114 }
115 }
116
117 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_media_stream_audio_track_host.h ('k') | content/renderer/pepper/resource_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698