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

Unified Diff: media/cast/transport/cast_transport_sender.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.h
diff --git a/media/cast/transport/cast_transport_sender.h b/media/cast/transport/cast_transport_sender.h
index 1d3ac322c6b0de75c07ff3d43bb45397762bbd14..676be3cd9ca83c5ecc19ec5d27aff8578270018c 100644
--- a/media/cast/transport/cast_transport_sender.h
+++ b/media/cast/transport/cast_transport_sender.h
@@ -81,11 +81,8 @@ class CastTransportSender : public base::NonThreadSafe {
// The following two functions handle the encoded media frames (audio and
// video) to be processed.
// Frames will be encrypted, packetized and transmitted to the network.
- virtual void InsertCodedAudioFrame(const EncodedAudioFrame* audio_frame,
- const base::TimeTicks& recorded_time) = 0;
-
- virtual void InsertCodedVideoFrame(const EncodedVideoFrame* video_frame,
- const base::TimeTicks& capture_time) = 0;
+ virtual void InsertCodedAudioFrame(const EncodedFrame& audio_frame) = 0;
+ virtual void InsertCodedVideoFrame(const EncodedFrame& video_frame) = 0;
// Builds an RTCP packet and sends it to the network.
virtual void SendRtcpFromRtpSender(uint32 packet_type_flags,

Powered by Google App Engine
This is Rietveld 408576698