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

Side by Side Diff: chrome/common/cast_messages.h

Issue 343523005: Cast: Avoid retransmit if we sent the same packet recently (less than RTT) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bugfix Created 6 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for the Cast transport API. 5 // IPC messages for the Cast transport API.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "ipc/ipc_message_macros.h" 8 #include "ipc/ipc_message_macros.h"
9 #include "media/cast/cast_sender.h" 9 #include "media/cast/cast_sender.h"
10 #include "media/cast/logging/logging_defines.h" 10 #include "media/cast/logging/logging_defines.h"
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 CastHostMsg_InsertCodedVideoFrame, 126 CastHostMsg_InsertCodedVideoFrame,
127 int32 /* channel_id */, 127 int32 /* channel_id */,
128 media::cast::transport::EncodedFrame /* video_frame */) 128 media::cast::transport::EncodedFrame /* video_frame */)
129 129
130 IPC_MESSAGE_CONTROL3( 130 IPC_MESSAGE_CONTROL3(
131 CastHostMsg_SendRtcpFromRtpSender, 131 CastHostMsg_SendRtcpFromRtpSender,
132 int32 /* channel_id */, 132 int32 /* channel_id */,
133 media::cast::transport::SendRtcpFromRtpSenderData /* data */, 133 media::cast::transport::SendRtcpFromRtpSenderData /* data */,
134 media::cast::transport::RtcpDlrrReportBlock /* dlrr */) 134 media::cast::transport::RtcpDlrrReportBlock /* dlrr */)
135 135
136 IPC_MESSAGE_CONTROL4( 136 IPC_MESSAGE_CONTROL5(
137 CastHostMsg_ResendPackets, 137 CastHostMsg_ResendPackets,
138 int32 /* channel_id */, 138 int32 /* channel_id */,
139 bool /* is_audio */, 139 bool /* is_audio */,
140 media::cast::MissingFramesAndPacketsMap /* missing_packets */, 140 media::cast::MissingFramesAndPacketsMap /* missing_packets */,
141 bool /* cancel_rtx_if_not_in_list */) 141 bool /* cancel_rtx_if_not_in_list */,
142 base::TimeDelta /* dedupe_window */)
142 143
143 IPC_MESSAGE_CONTROL2( 144 IPC_MESSAGE_CONTROL2(
144 CastHostMsg_New, 145 CastHostMsg_New,
145 int32 /* channel_id */, 146 int32 /* channel_id */,
146 net::IPEndPoint /*remote_end_point*/); 147 net::IPEndPoint /*remote_end_point*/);
147 148
148 IPC_MESSAGE_CONTROL1( 149 IPC_MESSAGE_CONTROL1(
149 CastHostMsg_Delete, 150 CastHostMsg_Delete,
150 int32 /* channel_id */); 151 int32 /* channel_id */);
OLDNEW
« 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