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

Unified Diff: chrome/renderer/media/cast_receiver_session_delegate.cc

Issue 883293005: Cast: Basic cast_receiver API for chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed extra BUILD.gn line Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/media/cast_receiver_session_delegate.h ('k') | chrome/renderer/media/cast_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/cast_receiver_session_delegate.cc
diff --git a/chrome/renderer/media/cast_receiver_session_delegate.cc b/chrome/renderer/media/cast_receiver_session_delegate.cc
new file mode 100644
index 0000000000000000000000000000000000000000..400dbf382650aa0fa325644627d164d160a8eb6b
--- /dev/null
+++ b/chrome/renderer/media/cast_receiver_session_delegate.cc
@@ -0,0 +1,101 @@
+// Copyright 2015 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 "chrome/renderer/media/cast_receiver_session_delegate.h"
+
+#include "base/synchronization/waitable_event.h"
+#include "base/values.h"
+
+CastReceiverSessionDelegate::CastReceiverSessionDelegate()
+ : weak_factory_(this) {
+}
+CastReceiverSessionDelegate::~CastReceiverSessionDelegate() {}
+
+void CastReceiverSessionDelegate::LogRawEvents(
+ const std::vector<media::cast::PacketEvent>& packet_events,
+ const std::vector<media::cast::FrameEvent>& frame_events) {
+ NOTREACHED();
+}
+
+void CastReceiverSessionDelegate::Start(
+ const media::cast::FrameReceiverConfig& audio_config,
+ const media::cast::FrameReceiverConfig& video_config,
+ const net::IPEndPoint& local_endpoint,
+ const net::IPEndPoint& remote_endpoint,
+ scoped_ptr<base::DictionaryValue> options,
+ const media::VideoCaptureFormat& format) {
+ format_ = format;
+ DCHECK(io_message_loop_proxy_->BelongsToCurrentThread());
+ CastSessionDelegateBase::StartUDP(local_endpoint,
+ remote_endpoint,
+ options.Pass());
+ cast_receiver_ = media::cast::CastReceiver::Create(cast_environment_,
+ audio_config,
+ video_config,
+ cast_transport_.get());
+ on_audio_decoded_cb_ = base::Bind(
+ &CastReceiverSessionDelegate::OnDecodedAudioFrame,
+ weak_factory_.GetWeakPtr());
+ on_video_decoded_cb_ = base::Bind(
+ &CastReceiverSessionDelegate::OnDecodedVideoFrame,
+ weak_factory_.GetWeakPtr());
+}
+
+void CastReceiverSessionDelegate::ReceivePacket(
+ scoped_ptr<media::cast::Packet> packet) {
+ cast_receiver_->ReceivePacket(packet.Pass());
+}
+
+void CastReceiverSessionDelegate::StartAudio(
+ scoped_refptr<CastReceiverAudioValve> audio_valve) {
+ DCHECK(io_message_loop_proxy_->BelongsToCurrentThread());
+ audio_valve_ = audio_valve;
+ cast_receiver_->RequestDecodedAudioFrame(on_audio_decoded_cb_);
+}
+
+void CastReceiverSessionDelegate::OnDecodedAudioFrame(
+ scoped_ptr<media::AudioBus> audio_bus,
+ const base::TimeTicks& playout_time,
+ bool is_continous) {
+ DCHECK(io_message_loop_proxy_->BelongsToCurrentThread());
+ if (!audio_valve_)
+ return;
+
+ // We're on the IO thread, which doesn't allow blocking
+ // operations. Since we don't know what the Capture callback
+ // will do exactly, we need to jump to a different thread.
+ // Let's re-use the audio decoder thread.
+ base::TimeTicks now = cast_environment_->Clock()->NowTicks();
+ cast_environment_->PostTask(
+ media::cast::CastEnvironment::AUDIO,
+ FROM_HERE,
+ base::Bind(&CastReceiverAudioValve::Capture,
+ audio_valve_,
+ base::Owned(audio_bus.release()),
+ (playout_time - now).InMilliseconds(),
+ 1.0,
+ false));
+ cast_receiver_->RequestDecodedAudioFrame(on_audio_decoded_cb_);
+}
+
+void CastReceiverSessionDelegate::StartVideo(
+ content::VideoCaptureDeliverFrameCB video_callback) {
+ DCHECK(io_message_loop_proxy_->BelongsToCurrentThread());
+ frame_callback_ = video_callback;
+ cast_receiver_->RequestDecodedVideoFrame(on_video_decoded_cb_);
+}
+
+void CastReceiverSessionDelegate::StopVideo() {
+ frame_callback_ = content::VideoCaptureDeliverFrameCB();
+}
+
+void CastReceiverSessionDelegate::OnDecodedVideoFrame(
+ const scoped_refptr<media::VideoFrame>& video_frame,
+ const base::TimeTicks& playout_time,
+ bool is_continous) {
+ if (frame_callback_.is_null())
+ return;
+ frame_callback_.Run(video_frame, format_, playout_time);
+ cast_receiver_->RequestDecodedVideoFrame(on_video_decoded_cb_);
+}
« no previous file with comments | « chrome/renderer/media/cast_receiver_session_delegate.h ('k') | chrome/renderer/media/cast_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698