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 22 matching lines...) Expand all Loading... |
33 AUDIO_FRAME_DECODED = 12; | 33 AUDIO_FRAME_DECODED = 12; |
34 // Video sender. | 34 // Video sender. |
35 VIDEO_FRAME_CAPTURED = 13; | 35 VIDEO_FRAME_CAPTURED = 13; |
36 VIDEO_FRAME_RECEIVED = 14; | 36 VIDEO_FRAME_RECEIVED = 14; |
37 VIDEO_FRAME_SENT_TO_ENCODER = 15; | 37 VIDEO_FRAME_SENT_TO_ENCODER = 15; |
38 VIDEO_FRAME_ENCODED = 16; | 38 VIDEO_FRAME_ENCODED = 16; |
39 // Video receiver. | 39 // Video receiver. |
40 VIDEO_FRAME_DECODED = 17; | 40 VIDEO_FRAME_DECODED = 17; |
41 VIDEO_RENDER_DELAY = 18; | 41 VIDEO_RENDER_DELAY = 18; |
42 // Send-side packet events. | 42 // Send-side packet events. |
43 AUDIO_PACKET_SENT_TO_PACER = 19; | 43 // AUDIO_PACKET_SENT_TO_PACER = 19; // Deprecated |
44 VIDEO_PACKET_SENT_TO_PACER = 20; | 44 // VIDEO_PACKET_SENT_TO_PACER = 20; // Deprecated |
45 AUDIO_PACKET_SENT_TO_NETWORK = 21; | 45 AUDIO_PACKET_SENT_TO_NETWORK = 21; |
46 VIDEO_PACKET_SENT_TO_NETWORK = 22; | 46 VIDEO_PACKET_SENT_TO_NETWORK = 22; |
47 AUDIO_PACKET_RETRANSMITTED = 23; | 47 AUDIO_PACKET_RETRANSMITTED = 23; |
48 VIDEO_PACKET_RETRANSMITTED = 24; | 48 VIDEO_PACKET_RETRANSMITTED = 24; |
49 // Receiver-side packet events. | 49 // Receiver-side packet events. |
50 AUDIO_PACKET_RECEIVED = 25; | 50 AUDIO_PACKET_RECEIVED = 25; |
51 VIDEO_PACKET_RECEIVED = 26; | 51 VIDEO_PACKET_RECEIVED = 26; |
52 DUPLICATE_AUDIO_PACKET_RECEIVED = 27; | 52 DUPLICATE_AUDIO_PACKET_RECEIVED = 27; |
53 DUPLICATE_VIDEO_PACKET_RECEIVED = 28; | 53 DUPLICATE_VIDEO_PACKET_RECEIVED = 28; |
54 } | 54 } |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 // LogMetadata.reference_timestamp_ms_at_unix_epoch to relate to a real time | 107 // LogMetadata.reference_timestamp_ms_at_unix_epoch to relate to a real time |
108 // and date. | 108 // and date. |
109 repeated int64 event_timestamp_ms = 3 [packed = true]; | 109 repeated int64 event_timestamp_ms = 3 [packed = true]; |
110 } | 110 } |
111 | 111 |
112 message AggregatedPacketEvent { | 112 message AggregatedPacketEvent { |
113 optional uint32 relative_rtp_timestamp = 1; | 113 optional uint32 relative_rtp_timestamp = 1; |
114 repeated BasePacketEvent base_packet_event = 2; | 114 repeated BasePacketEvent base_packet_event = 2; |
115 }; | 115 }; |
116 | 116 |
OLD | NEW |