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:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user