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

Unified Diff: remoting/proto/video.proto

Issue 850983002: Implement video frame acknowledgements in the chromoting protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
Index: remoting/proto/video.proto
diff --git a/remoting/proto/video.proto b/remoting/proto/video.proto
index 0ee29c9b8922d65c30dfb653fa32db538104eb79..509694121cf161d720eb57d031e8e2f274f7a061 100644
--- a/remoting/proto/video.proto
+++ b/remoting/proto/video.proto
@@ -66,4 +66,18 @@ message VideoPacket {
// Optional frame timestamp. Used in tests to estimate frame latency.
optional int64 timestamp = 12;
+
+ optional int32 frame_id = 13;
+}
+
+message VideoAck {
+ // Frame ID.
+ optional int32 frame_id = 1;
+
+ // Time in microseconds it took to receive this frame from the beginning to
+ // the end.
Wez 2015/01/21 01:35:38 nit: to receive the VideoPacket. Also consider no
Sergey Ulanov 2015/01/29 01:33:28 Done.
+ optional int32 time_to_receive_us = 2;
+
+ // Time in microseconds it took to render the frame.
+ optional int32 rendering_delay_us = 3;
}

Powered by Google App Engine
This is Rietveld 408576698