From 9884f64d84bfda452384ef7c6fa6dbe5a3e65ab3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 26 Feb 2014 22:28:42 +0000 Subject: Fix missing RMS plots in some cases (caused by plotting #inf coordinates). Reported-by: Markus Raab --- src/wx/audio_plot.h | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'src/wx/audio_plot.h') 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 _analysis; bool _channel_visible[MAX_AUDIO_CHANNELS]; @@ -48,16 +53,6 @@ private: int _smoothing; std::vector _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; -- cgit v1.2.3