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

Unified Diff: webrtc/logging/rtc_event_log/rtc_event_log.proto

Issue 2997883002: Video/Screenshare loopback tool.
Patch Set: Rebase Created 3 years, 4 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 | « webrtc/logging/rtc_event_log/rtc_event_log.cc ('k') | webrtc/logging/rtc_event_log/rtc_event_log_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/logging/rtc_event_log/rtc_event_log.proto
diff --git a/webrtc/logging/rtc_event_log/rtc_event_log.proto b/webrtc/logging/rtc_event_log/rtc_event_log.proto
index b9053ae87dabd5082587226c396cfed09825a06a..1d7b732e52a8986aef0361d43929d314d6c90c04 100644
--- a/webrtc/logging/rtc_event_log/rtc_event_log.proto
+++ b/webrtc/logging/rtc_event_log/rtc_event_log.proto
@@ -40,6 +40,9 @@ message Event {
AUDIO_NETWORK_ADAPTATION_EVENT = 16;
BWE_PROBE_CLUSTER_CREATED_EVENT = 17;
BWE_PROBE_RESULT_EVENT = 18;
+ BWE_ACKED_BITRATE_EVENT = 19;
+ ALR_STATE_EVENT = 20;
+ PACKET_QUEUE_TIME = 21;
}
// required - Indicates the type of this event
@@ -81,6 +84,15 @@ message Event {
// required if type == BWE_PROBE_RESULT_EVENT
BweProbeResult probe_result = 18;
+
+ // required if type == BWE_ACKED_BITRATE_EVENT
+ BweAckedBitrate acked_bitrate = 19;
+
+ // required if type == ALR_STATE_EVENT
+ AlrState alr_state = 20;
+
+ // required if type == PACKET_QUEUE_TIME
+ PacketQueueTime packet_queue_time = 21;
}
}
@@ -314,3 +326,24 @@ message BweProbeResult {
// optional - but required if result == SUCCESS. The resulting bitrate in bps.
optional uint64 bitrate_bps = 3;
}
+
+message BweAckedBitrate {
+ optional uint64 bitrate_bps = 1;
+}
+
+message AlrState {
+ // required - If we are in ALR or not.
+ optional bool in_alr = 1;
+
+ // required - The usage of the link in bps.
+ optional uint64 usage_bps = 2;
+}
+
+message PacketQueueTime {
+ // required - How long the packet was in the pacer queue.
+ optional uint32 queue_time_ms = 1;
+
+ // required - The ssrc.
+ optional uint32 ssrc = 2;
+}
+
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log.cc ('k') | webrtc/logging/rtc_event_log/rtc_event_log_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698