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

Unified Diff: media/cast/transport/cast_transport_sender_impl.h

Issue 288103002: [Cast] EncodedAudioFrame+EncodedVideoFrame+reference_time --> EncodedFrame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: media/cast/transport/cast_transport_sender_impl.h
diff --git a/media/cast/transport/cast_transport_sender_impl.h b/media/cast/transport/cast_transport_sender_impl.h
index ce44e63f224c4c7904cf274e8c392e280eb38e62..86dd85b9b50bb6f5d830acb6b126d0197bda3489 100644
--- a/media/cast/transport/cast_transport_sender_impl.h
+++ b/media/cast/transport/cast_transport_sender_impl.h
@@ -54,13 +54,8 @@ class CastTransportSenderImpl : public CastTransportSender {
virtual void SetPacketReceiver(const PacketReceiverCallback& packet_receiver)
OVERRIDE;
- virtual void InsertCodedAudioFrame(const EncodedAudioFrame* audio_frame,
- const base::TimeTicks& recorded_time)
- OVERRIDE;
-
- virtual void InsertCodedVideoFrame(const EncodedVideoFrame* video_frame,
- const base::TimeTicks& capture_time)
- OVERRIDE;
+ virtual void InsertCodedAudioFrame(const EncodedFrame& audio_frame) OVERRIDE;
+ virtual void InsertCodedVideoFrame(const EncodedFrame& video_frame) OVERRIDE;
virtual void SendRtcpFromRtpSender(uint32 packet_type_flags,
const RtcpSenderInfo& sender_info,

Powered by Google App Engine
This is Rietveld 408576698