Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 video messages. | 5 // Protocol for video 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 87 | 87 |
| 88 // Time in milliseconds spent in capturing this video frame. | 88 // Time in milliseconds spent in capturing this video frame. |
| 89 optional int32 capture_time_ms = 7; | 89 optional int32 capture_time_ms = 7; |
| 90 | 90 |
| 91 // Time in milliseconds spent in encoding this video frame. | 91 // Time in milliseconds spent in encoding this video frame. |
| 92 optional int32 encode_time_ms = 8; | 92 optional int32 encode_time_ms = 8; |
| 93 | 93 |
| 94 // The most recent sequence number received from the client on the event | 94 // The most recent sequence number received from the client on the event |
| 95 // channel. | 95 // channel. |
| 96 optional int64 client_sequence_number = 9; | 96 optional int64 client_sequence_number = 9; |
| 97 | |
| 98 // The DPI for this video packet. | |
| 99 optional int32 dpi = 10; | |
|
Sergey Ulanov
2012/07/12 01:39:36
would it be better to make this part of VideoPacke
Wez
2012/07/12 18:15:49
Agreed; this is part of the format.
Wez
2012/07/12 18:15:49
We should provide separate X & Y DPI values, so th
Jamie
2012/07/13 19:59:44
Done.
Jamie
2012/07/13 19:59:44
Done.
| |
| 97 } | 100 } |
| OLD | NEW |