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

Unified Diff: chrome/common/cast_messages.h

Issue 519443002: Cast: merge InsertCoded{Audio,Video}Frame into InsertFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more missing test file fixed Created 6 years, 3 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/common/cast_messages.h
diff --git a/chrome/common/cast_messages.h b/chrome/common/cast_messages.h
index 21c19353e2064d9ba5999d172e2950ff8bfc810c..59694fbb76ae16c5b57dbe9193ccfc869b498a05 100644
--- a/chrome/common/cast_messages.h
+++ b/chrome/common/cast_messages.h
@@ -123,15 +123,11 @@ IPC_MESSAGE_CONTROL2(
int32 /*channel_id*/,
media::cast::CastTransportRtpConfig /*config*/)
-IPC_MESSAGE_CONTROL2(
- CastHostMsg_InsertCodedAudioFrame,
- int32 /* channel_id */,
- media::cast::EncodedFrame /* audio_frame */)
-
-IPC_MESSAGE_CONTROL2(
- CastHostMsg_InsertCodedVideoFrame,
+IPC_MESSAGE_CONTROL3(
+ CastHostMsg_InsertFrame,
int32 /* channel_id */,
- media::cast::EncodedFrame /* video_frame */)
+ uint32 /* ssrc */,
+ media::cast::EncodedFrame /* audio/video frame */)
IPC_MESSAGE_CONTROL4(
CastHostMsg_SendSenderReport,
« no previous file with comments | « chrome/browser/media/cast_transport_host_filter_unittest.cc ('k') | chrome/renderer/media/cast_transport_sender_ipc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698