Add event log visualization of rtp timestamps over time.

BUG=None

Review-Url: https://codereview.webrtc.org/2658073002
Cr-Commit-Position: refs/heads/master@{#16417}
This commit is contained in:
stefan
2017-02-02 08:04:18 -08:00
committed by Commit bot
parent a55f021d43
commit e372d3c519
3 changed files with 74 additions and 1 deletions

View File

@ -59,6 +59,9 @@ DEFINE_bool(plot_fraction_loss,
false,
"Plot packet loss in percent for outgoing packets (as perceived by "
"the send-side bandwidth estimator).");
DEFINE_bool(plot_timestamps,
false,
"Plot the rtp timestamps of all rtp and rtcp packets over time.");
DEFINE_string(
force_fieldtrials,
"",
@ -180,6 +183,10 @@ int main(int argc, char* argv[]) {
analyzer.CreateNetworkDelayFeedbackGraph(collection->AppendNewPlot());
}
if (FLAGS_plot_all || FLAGS_plot_timestamps) {
analyzer.CreateTimestampGraph(collection->AppendNewPlot());
}
collection->Draw();
return 0;