diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-02-26 22:28:42 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-02-26 22:28:42 +0000 |
| commit | 9884f64d84bfda452384ef7c6fa6dbe5a3e65ab3 (patch) | |
| tree | f9e472b37e6d704a486205058253d630b08d0062 /src/wx/audio_plot.h | |
| parent | 7d83ba07916a66d5d3b2bb8152efa7298f2f788b (diff) | |
Fix missing RMS plots in some cases (caused by plotting #inf
coordinates).
Reported-by: Markus Raab
Diffstat (limited to 'src/wx/audio_plot.h')
| -rw-r--r-- | src/wx/audio_plot.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/wx/audio_plot.h b/src/wx/audio_plot.h index 094f8e1b0..7eedd8ffe 100644 --- a/src/wx/audio_plot.h +++ b/src/wx/audio_plot.h @@ -23,6 +23,8 @@ #include "lib/util.h" #include "lib/audio_analysis.h" +class Metrics; + class AudioPlot : public wxPanel { public: @@ -39,6 +41,9 @@ public: private: void paint (); + void plot_peak (wxGraphicsPath &, int, Metrics const &) const; + void plot_rms (wxGraphicsPath &, int, Metrics const &) const; + float y_for_linear (float, Metrics const &) const; boost::shared_ptr<AudioAnalysis> _analysis; bool _channel_visible[MAX_AUDIO_CHANNELS]; @@ -48,16 +53,6 @@ private: int _smoothing; std::vector<wxColour> _colours; - void plot_peak (wxGraphicsPath &, int) const; - void plot_rms (wxGraphicsPath &, int) const; - float y_for_linear (float) const; - - double _db_label_width; - int _height; - int _y_origin; - float _x_scale; - float _y_scale; - wxString _message; static const int _minimum; |
