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

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: rebase 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
« no previous file with comments | « chrome/renderer/media/cast_transport_sender_ipc.h ('k') | media/cast/audio_receiver/audio_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 cb5b741f2dc4ad9502bdba0bbbbc83e55a31d0e3..b5a034e8f93ec386bc711c780165aa64f3f952b3 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(
« no previous file with comments | « chrome/renderer/media/cast_transport_sender_ipc.h ('k') | media/cast/audio_receiver/audio_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698