// 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. #ifndef CHROME_RENDERER_MEDIA_CAST_RECEIVER_SESSION_DELEGATE_H_ #define CHROME_RENDERER_MEDIA_CAST_RECEIVER_SESSION_DELEGATE_H_ #include "chrome/renderer/media/cast_receiver_audio_valve.h" #include "chrome/renderer/media/cast_session_delegate.h" #include "content/public/renderer/media_stream_video_sink.h" #include "media/base/video_capture_types.h" #include "media/cast/cast_receiver.h" class CastReceiverSessionDelegate : public CastSessionDelegateBase { public: typedef base::Callback ErrorCallback; CastReceiverSessionDelegate(); ~CastReceiverSessionDelegate() override; void ReceivePacket(scoped_ptr packet) override; void LogRawEvents( const std::vector& packet_events, const std::vector& frame_events) override; void 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 options, const media::VideoCaptureFormat& format, const ErrorCallback& error_callback); void StartAudio(scoped_refptr audio_valve); void StartVideo(content::VideoCaptureDeliverFrameCB frame_callback); // Stop Video callbacks (eventually). void StopVideo(); private: void OnDecodedAudioFrame(scoped_ptr audio_bus, const base::TimeTicks& playout_time, bool is_continous); void OnDecodedVideoFrame(const scoped_refptr& video_frame, const base::TimeTicks& playout_time, bool is_continous); scoped_refptr audio_valve_; content::VideoCaptureDeliverFrameCB frame_callback_; media::cast::AudioFrameDecodedCallback on_audio_decoded_cb_; media::cast::VideoFrameDecodedCallback on_video_decoded_cb_; scoped_ptr cast_receiver_; media::VideoCaptureFormat format_; base::WeakPtrFactory weak_factory_; DISALLOW_COPY_AND_ASSIGN(CastReceiverSessionDelegate); }; #endif // CHROME_RENDERER_MEDIA_CAST_RECEIVER_SESSION_DELEGATE_H_