| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |