Total packet rate plots for event_log_visualizer.

Bug: b/152399961
Change-Id: I9fcd2e234f229cefc972149ab22ccd845a8e90ba
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/172440
Reviewed-by: Björn Terelius <terelius@webrtc.org>
Commit-Queue: Kristoffer Erlandsson <kerl@google.com>
Cr-Commit-Position: refs/heads/master@{#30963}
This commit is contained in:
Kristoffer Erlandsson
2020-04-01 14:33:30 +02:00
committed by Commit Bot
parent 647968f7c9
commit a2ce423efb
3 changed files with 60 additions and 0 deletions

View File

@ -297,6 +297,12 @@ int main(int argc, char* argv[]) {
plots.RegisterPlot("outgoing_packet_rate", [&](Plot* plot) {
analyzer.CreatePacketRateGraph(webrtc::kOutgoingPacket, plot);
});
plots.RegisterPlot("total_incoming_packet_rate", [&](Plot* plot) {
analyzer.CreateTotalPacketRateGraph(webrtc::kIncomingPacket, plot);
});
plots.RegisterPlot("total_outgoing_packet_rate", [&](Plot* plot) {
analyzer.CreateTotalPacketRateGraph(webrtc::kOutgoingPacket, plot);
});
plots.RegisterPlot("audio_playout",
[&](Plot* plot) { analyzer.CreatePlayoutGraph(plot); });
plots.RegisterPlot("incoming_audio_level", [&](Plot* plot) {