Add plot of network delay change computed based on transport feedback.

NOTRY=true

Review-Url: https://codereview.webrtc.org/2205803002
Cr-Commit-Position: refs/heads/master@{#13610}
This commit is contained in:
stefan
2016-08-02 07:22:17 -07:00
committed by Commit bot
parent 3ab32dc775
commit c3de0333c0
5 changed files with 113 additions and 6 deletions

View File

@ -47,6 +47,10 @@ DEFINE_bool(plot_bwe,
false,
"Run the bandwidth estimator with the logged rtp and rtcp and plot "
"the output.");
DEFINE_bool(plot_network_delay_feedback,
false,
"Compute network delay based on sent packets and the received "
"transport feedback.");
int main(int argc, char* argv[]) {
std::string program_name = argv[0];
@ -140,6 +144,10 @@ int main(int argc, char* argv[]) {
analyzer.CreateBweGraph(collection->AppendNewPlot());
}
if (FLAGS_plot_all || FLAGS_plot_network_delay_feedback) {
analyzer.CreateNetworkDelayFeebackGraph(collection->AppendNewPlot());
}
collection->Draw();
return 0;