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

Side by Side Diff: media/cast/logging/proto/raw_events.proto

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
« no previous file with comments | « media/cast/logging/proto/proto_utils.cc ('k') | media/cast/rtcp/rtcp_sender_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Protocol for audio messages. 5 // Protocol for audio messages.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 FRAME_CAPTURE_BEGIN = 29; 59 FRAME_CAPTURE_BEGIN = 29;
60 FRAME_CAPTURE_END = 30; 60 FRAME_CAPTURE_END = 30;
61 FRAME_ENCODED = 31; 61 FRAME_ENCODED = 31;
62 FRAME_ACK_RECEIVED = 32; 62 FRAME_ACK_RECEIVED = 32;
63 FRAME_ACK_SENT = 33; 63 FRAME_ACK_SENT = 33;
64 FRAME_DECODED = 34; 64 FRAME_DECODED = 34;
65 FRAME_PLAYOUT = 35; 65 FRAME_PLAYOUT = 35;
66 PACKET_SENT_TO_NETWORK = 36; 66 PACKET_SENT_TO_NETWORK = 36;
67 PACKET_RETRANSMITTED = 37; 67 PACKET_RETRANSMITTED = 37;
68 PACKET_RECEIVED = 38; 68 PACKET_RECEIVED = 38;
69 PACKET_RTX_REJECTED = 39;
69 } 70 }
70 71
71 // Contains information independent of the stream that describes the system 72 // Contains information independent of the stream that describes the system
72 // setup, e.g. OS and hardware info. 73 // setup, e.g. OS and hardware info.
73 message GeneralDescription { 74 message GeneralDescription {
74 optional string product = 1; 75 optional string product = 1;
75 optional string product_version = 2; 76 optional string product_version = 2;
76 optional string os = 3; 77 optional string os = 3;
77 } 78 }
78 79
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 140
140 // Size of the packet. 141 // Size of the packet.
141 optional int32 size = 4; 142 optional int32 size = 4;
142 } 143 }
143 144
144 message AggregatedPacketEvent { 145 message AggregatedPacketEvent {
145 optional uint32 relative_rtp_timestamp = 1; 146 optional uint32 relative_rtp_timestamp = 1;
146 repeated BasePacketEvent base_packet_event = 2; 147 repeated BasePacketEvent base_packet_event = 2;
147 }; 148 };
148 149
OLDNEW
« no previous file with comments | « media/cast/logging/proto/proto_utils.cc ('k') | media/cast/rtcp/rtcp_sender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698