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

Side by Side Diff: remoting/proto/video_stats.proto

Issue 2176443002: Add client and host dispatchers for video_stats channel to send video stats from host to client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_channel
Patch Set: . Created 4 years, 5 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Internal message types that should not be seen outside the protocol
6 // directory.
7
8 syntax = "proto2";
9
10 option optimize_for = LITE_RUNTIME;
11
12 package remoting;
13
14 message FrameStatsMessage {
15 // Frame ID.
16 optional int32 frame_id = 1;
17
18 // Frame size.
19 optional int32 frame_size = 2;
20
21 // Id of the last event that was injected before this frame was captured.
22 optional int64 latest_event_timestamp = 3;
23
24 // Time from when the last event was injected until capturing has started.
25 optional int32 capture_pending_time_ms = 4;
26
27 // Time in milliseconds spent in capturing this video frame.
28 optional int32 capture_time_ms = 5;
29
30 // Total overhead time for IPC and threading when capturing frames.
31 optional int32 capture_overhead_time_ms = 6;
32
33 // Time between when the frame was captured and when encoding started.
34 optional int32 encode_pending_time_ms = 7;
35
36 // Time in milliseconds spent in encoding this video frame.
37 optional int32 encode_time_ms = 8;
38
39 // Time for which the frame is blocked until it's sent to the client.
40 optional int64 send_pending_time_ms = 9;
41 }
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698