Fix missing RMS plots in some cases (caused by plotting #inf
[dcpomatic.git] / src / wx / audio_plot.h
index 094f8e1b0124527e4b27794d53c4f1a3c14e832b..7eedd8ffe9b869e77d7f588659b687f8d91ac03d 100644 (file)
@@ -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;