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

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

Issue 560223002: [Cast] Limit frames in flight by duration, and not by number of frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaks. 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 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 29 matching lines...) Expand all
40 40
41 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock) 41 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock)
42 IPC_STRUCT_TRAITS_MEMBER(last_rr) 42 IPC_STRUCT_TRAITS_MEMBER(last_rr)
43 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr) 43 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr)
44 IPC_STRUCT_TRAITS_END() 44 IPC_STRUCT_TRAITS_END()
45 45
46 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig) 46 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig)
47 IPC_STRUCT_TRAITS_MEMBER(ssrc) 47 IPC_STRUCT_TRAITS_MEMBER(ssrc)
48 IPC_STRUCT_TRAITS_MEMBER(feedback_ssrc) 48 IPC_STRUCT_TRAITS_MEMBER(feedback_ssrc)
49 IPC_STRUCT_TRAITS_MEMBER(rtp_payload_type) 49 IPC_STRUCT_TRAITS_MEMBER(rtp_payload_type)
50 IPC_STRUCT_TRAITS_MEMBER(stored_frames)
51 IPC_STRUCT_TRAITS_MEMBER(aes_key) 50 IPC_STRUCT_TRAITS_MEMBER(aes_key)
52 IPC_STRUCT_TRAITS_MEMBER(aes_iv_mask) 51 IPC_STRUCT_TRAITS_MEMBER(aes_iv_mask)
53 IPC_STRUCT_TRAITS_END() 52 IPC_STRUCT_TRAITS_END()
54 53
55 IPC_STRUCT_TRAITS_BEGIN(media::cast::PacketEvent) 54 IPC_STRUCT_TRAITS_BEGIN(media::cast::PacketEvent)
56 IPC_STRUCT_TRAITS_MEMBER(rtp_timestamp) 55 IPC_STRUCT_TRAITS_MEMBER(rtp_timestamp)
57 IPC_STRUCT_TRAITS_MEMBER(frame_id) 56 IPC_STRUCT_TRAITS_MEMBER(frame_id)
58 IPC_STRUCT_TRAITS_MEMBER(max_packet_id) 57 IPC_STRUCT_TRAITS_MEMBER(max_packet_id)
59 IPC_STRUCT_TRAITS_MEMBER(packet_id) 58 IPC_STRUCT_TRAITS_MEMBER(packet_id)
60 IPC_STRUCT_TRAITS_MEMBER(size) 59 IPC_STRUCT_TRAITS_MEMBER(size)
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 142
144 IPC_MESSAGE_CONTROL3( 143 IPC_MESSAGE_CONTROL3(
145 CastHostMsg_New, 144 CastHostMsg_New,
146 int32 /* channel_id */, 145 int32 /* channel_id */,
147 net::IPEndPoint /* remote_end_point */, 146 net::IPEndPoint /* remote_end_point */,
148 base::DictionaryValue /* options */) 147 base::DictionaryValue /* options */)
149 148
150 IPC_MESSAGE_CONTROL1( 149 IPC_MESSAGE_CONTROL1(
151 CastHostMsg_Delete, 150 CastHostMsg_Delete,
152 int32 /* channel_id */) 151 int32 /* channel_id */)
OLDNEW
« no previous file with comments | « chrome/browser/media/cast_transport_host_filter_unittest.cc ('k') | media/cast/net/cast_transport_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698