Overlay REMB in total bitrate graphs in visualization tool.

This doesn't affect the production code.

BUG=webrtc:7726

Review-Url: https://codereview.webrtc.org/2912813002
Cr-Commit-Position: refs/heads/master@{#18400}
This commit is contained in:
terelius
2017-06-02 01:29:48 -07:00
committed by Commit Bot
parent 1476a9d789
commit 2c8e8a306a
3 changed files with 52 additions and 3 deletions

View File

@ -109,6 +109,10 @@ class Plot {
// Add a new TimeSeries to the plot.
void AppendTimeSeries(TimeSeries&& time_series);
// Add a new TimeSeries to the plot if the series contains contains data.
// Otherwise, the call has no effect and the timeseries is destroyed.
void AppendTimeSeriesIfNotEmpty(TimeSeries&& time_series);
protected:
float xaxis_min_;
float xaxis_max_;