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

Unified Diff: remoting/proto/video.proto

Issue 1365663003: Add UMA histograms for more detailed latency tracking on the CRD host. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed tests Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/video_frame_pump.cc ('k') | remoting/protocol/connection_to_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/proto/video.proto
diff --git a/remoting/proto/video.proto b/remoting/proto/video.proto
index b2b1258887cdbb3e78596274a70d6dbd1d935572..66e7ce204a9be435056a0752a41998473a0c267f 100644
--- a/remoting/proto/video.proto
+++ b/remoting/proto/video.proto
@@ -71,6 +71,19 @@ message VideoPacket {
// Frame identifier used to match VideoFrame and VideoAck.
optional int32 frame_id = 13;
+
+ // Time from when the last event was received until capturing has started.
+ optional int64 capture_pending_time_ms = 14;
+
+ // Total overhead time for IPC and threading when capturing frames.
+ optional int64 capture_overhead_time_ms = 15;
+
+ // Time between when the frame was captured and when encoder started encoding
+ // it.
+ optional int64 encode_pending_time_ms = 16;
+
+ // Time for which the frame is blocked until it's sent to the client.
+ optional int64 send_pending_time_ms = 17;
}
// VideoAck acknowledges that the frame in the VideoPacket with the same
« no previous file with comments | « remoting/host/video_frame_pump.cc ('k') | remoting/protocol/connection_to_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698