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

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

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: chrome/renderer/media/cast_transport_sender_ipc.cc
diff --git a/chrome/renderer/media/cast_transport_sender_ipc.cc b/chrome/renderer/media/cast_transport_sender_ipc.cc
index 1dd3906329418d62aea78c5818c5ae0393606033..8ef6c4715314918b673cda122d92ab669735db94 100644
--- a/chrome/renderer/media/cast_transport_sender_ipc.cc
+++ b/chrome/renderer/media/cast_transport_sender_ipc.cc
@@ -46,19 +46,13 @@ void CastTransportSenderIPC::InitializeVideo(
}
void CastTransportSenderIPC::InsertCodedAudioFrame(
- const media::cast::transport::EncodedAudioFrame* audio_frame,
- const base::TimeTicks& recorded_time) {
- Send(new CastHostMsg_InsertCodedAudioFrame(channel_id_,
- *audio_frame,
- recorded_time));
+ const media::cast::transport::EncodedFrame& audio_frame) {
+ Send(new CastHostMsg_InsertCodedAudioFrame(channel_id_, audio_frame));
}
void CastTransportSenderIPC::InsertCodedVideoFrame(
- const media::cast::transport::EncodedVideoFrame* video_frame,
- const base::TimeTicks& capture_time) {
- Send(new CastHostMsg_InsertCodedVideoFrame(channel_id_,
- *video_frame,
- capture_time));
+ const media::cast::transport::EncodedFrame& video_frame) {
+ Send(new CastHostMsg_InsertCodedVideoFrame(channel_id_, video_frame));
}
void CastTransportSenderIPC::SendRtcpFromRtpSender(

Powered by Google App Engine
This is Rietveld 408576698