Chromium Code Reviews| Index: content/renderer/pepper/pepper_media_stream_audio_track_host.cc |
| diff --git a/content/renderer/pepper/pepper_media_stream_audio_track_host.cc b/content/renderer/pepper/pepper_media_stream_audio_track_host.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2b64911fb206a4aa1dc989672ef448269044956e |
| --- /dev/null |
| +++ b/content/renderer/pepper/pepper_media_stream_audio_track_host.cc |
| @@ -0,0 +1,117 @@ |
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "content/renderer/pepper/pepper_media_stream_audio_track_host.h" |
| + |
| +#include "base/bind.h" |
| +#include "base/location.h" |
| +#include "base/logging.h" |
| +#include "base/message_loop/message_loop_proxy.h" |
| +#include "ppapi/c/pp_errors.h" |
| +#include "ppapi/c/ppb_audio_frame.h" |
| +#include "ppapi/shared_impl/media_stream_frame.h" |
| + |
| +namespace { |
| + |
| +// TODO(penghuang): make it configurable. |
| +const int32_t kNumberOfFrames = 4; |
| + |
| +} // namespace |
| + |
| +namespace content { |
| + |
| +PepperMediaStreamAudioTrackHost::PepperMediaStreamAudioTrackHost( |
| + RendererPpapiHost* host, |
| + PP_Instance instance, |
| + PP_Resource resource, |
| + const blink::WebMediaStreamTrack& track) |
| + : PepperMediaStreamTrackHostBase(host, instance, resource), |
| + track_(track), |
| + connected_(false), |
| + frame_data_size_(0), |
| + main_message_loop_proxy_(base::MessageLoopProxy::current()), |
| + weak_factory_(this) { |
| + DCHECK(!track_.isNull()); |
| +} |
| + |
| +PepperMediaStreamAudioTrackHost::~PepperMediaStreamAudioTrackHost() { |
| + OnClose(); |
| +} |
| + |
| +void PepperMediaStreamAudioTrackHost::InitFramesOnMainThread( |
| + uint32_t number_of_frames, uint32_t frame_size) { |
| + bool result = InitFrames(number_of_frames, frame_size); |
| + DCHECK(result); |
| +} |
| + |
| +void PepperMediaStreamAudioTrackHost::OnClose() { |
| + if (connected_) { |
| + MediaStreamAudioSink::RemoveFromAudioTrack(this, track_); |
| + connected_ = false; |
| + } |
| +} |
| + |
| +void PepperMediaStreamAudioTrackHost::OnData(const int16* audio_data, |
| + int sample_rate, |
| + int number_of_channels, |
| + int number_of_frames) { |
| + DCHECK(audio_data); |
| + DCHECK_EQ(sample_rate, audio_params_.sample_rate()); |
| + DCHECK_EQ(number_of_channels, audio_params_.channels()); |
| + DCHECK_EQ(number_of_frames, audio_params_.frames_per_buffer()); |
| + |
| + int32_t index = frame_buffer()->DequeueFrame(); |
| + // Drop frames if the underlying buffer is full or not initialized. |
| + if (index >= 0) { |
| + // TODO(penghuang): support re-sampling, etc. |
| + ppapi::MediaStreamFrame::Audio* frame = |
| + &(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
|
| + frame->header.size = frame_buffer()->frame_size(); |
| + frame->header.type = ppapi::MediaStreamFrame::TYPE_AUDIO; |
| + frame->timestamp = timestamp_.InMillisecondsF(); |
| + frame->sample_rate = static_cast<PP_AudioSampleRate>(sample_rate); |
| + frame->number_of_channels = number_of_channels; |
| + frame->number_of_samples = number_of_channels * number_of_frames; |
| + frame->data_size = frame_data_size_; |
| + |
| + memcpy(frame->data, audio_data, frame_data_size_); |
| + // This function is called from an audio thread, but |
| + // |SendEnqueueFrameMessageToPlugin()| doesn't use any sync IPC, |
| + // so it is safe to call it directly. |
| + 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
|
| + } |
| + timestamp_ += frame_duration_; |
| +} |
| + |
| +void PepperMediaStreamAudioTrackHost::OnSetFormat( |
| + const media::AudioParameters& params) { |
| + DCHECK(!audio_params_.IsValid()); |
| + DCHECK(params.IsValid()); |
| + DCHECK_EQ(params.bits_per_sample(), 16); |
| + |
| + // TODO(penghuang): support setting format more than once. |
| + audio_params_ = params; |
| + frame_duration_ = audio_params_.GetBufferDuration(); |
| + frame_data_size_ = audio_params_.GetBytesPerBuffer(); |
| + |
| + // 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.
|
| + // added into the struct. Also see |MediaStreamFrame|. |
| + int32_t size = sizeof(ppapi::MediaStreamFrame::Audio) + frame_data_size_; |
| + |
| + // This function is called from an audio thread and |InitFrames()| uses some |
| + // sync IPC. So we have to call |InitFrames()| in the main thread. |
| + main_message_loop_proxy_->PostTask( |
| + FROM_HERE, |
| + base::Bind(&PepperMediaStreamAudioTrackHost::InitFramesOnMainThread, |
| + weak_factory_.GetWeakPtr(), kNumberOfFrames, size)); |
| +} |
| + |
| +void PepperMediaStreamAudioTrackHost::DidConnectPendingHostToResource() { |
| + if (!connected_) { |
| + MediaStreamAudioSink::AddToAudioTrack(this, track_); |
| + connected_ = true; |
| + } |
| +} |
| + |
| +} // namespace content |