Visualize events related to probing in the total bitrate graph.
BUG=webrtc:6984 R=terelius@webrtc.org Review-Url: https://codereview.webrtc.org/2782553005 . Cr-Commit-Position: refs/heads/master@{#17449}
This commit is contained in:
@ -75,6 +75,11 @@ void PythonPlot::Draw() {
|
||||
"plt.plot(x%zu[1:], y%zu[:-1], color=rgb_colors[%zu], "
|
||||
"label=\'%s\')\n",
|
||||
i, i, i, series_list_[i].label.c_str());
|
||||
} else if (series_list_[i].style == DOT_GRAPH) {
|
||||
printf(
|
||||
"plt.plot(x%zu, y%zu, color=rgb_colors[%zu], label=\'%s\', "
|
||||
"marker='.', ls=' ')\n",
|
||||
i, i, i, series_list_[i].label.c_str());
|
||||
} else {
|
||||
printf("raise Exception(\"Unknown graph type\")\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user