OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // Internal message types that should not be seen outside the protocol | 5 // Internal message types that should not be seen outside the protocol |
6 // directory. | 6 // directory. |
7 | 7 |
8 syntax = "proto2"; | 8 syntax = "proto2"; |
9 | 9 |
10 option optimize_for = LITE_RUNTIME; | 10 option optimize_for = LITE_RUNTIME; |
(...skipping 19 matching lines...) Expand all Loading... |
30 // Total overhead time for IPC and threading when capturing frames. | 30 // Total overhead time for IPC and threading when capturing frames. |
31 optional int32 capture_overhead_time_ms = 6; | 31 optional int32 capture_overhead_time_ms = 6; |
32 | 32 |
33 // Time between when the frame was captured and when encoding started. | 33 // Time between when the frame was captured and when encoding started. |
34 optional int32 encode_pending_time_ms = 7; | 34 optional int32 encode_pending_time_ms = 7; |
35 | 35 |
36 // Time in milliseconds spent in encoding this video frame. | 36 // Time in milliseconds spent in encoding this video frame. |
37 optional int32 encode_time_ms = 8; | 37 optional int32 encode_time_ms = 8; |
38 | 38 |
39 // Time for which the frame is blocked until it's sent to the client. | 39 // Time for which the frame is blocked until it's sent to the client. |
40 optional int64 send_pending_time_ms = 9; | 40 optional int32 send_pending_time_ms = 9; |
| 41 |
| 42 // Current network RTT estimate. |
| 43 optional int32 rtt_estimate_ms = 10; |
| 44 |
| 45 // Current bandwidth estimate in kb/s. |
| 46 optional int32 bandwidth_estimate_kbps = 11; |
41 } | 47 } |
42 | 48 |
OLD | NEW |