Add a log message and actually use device_for_write().
[dcpomatic.git] / src / lib / audio_analysis.h
index 3684db96abdd97bfd48fa3693c3e2b46abcc5ecf..99a69edb4c26dfccccb77cd81c48e069301a436f 100644 (file)
@@ -116,6 +116,14 @@ public:
                _sample_rate = sr;
        }
 
+       void set_leqm (double leqm) {
+               _leqm = leqm;
+       }
+
+       boost::optional<double> leqm () const {
+               return _leqm;
+       }
+
        void write (boost::filesystem::path);
 
        float gain_correction (boost::shared_ptr<const Playlist> playlist);
@@ -126,6 +134,7 @@ private:
        std::vector<float> _true_peak;
        boost::optional<float> _integrated_loudness;
        boost::optional<float> _loudness_range;
+       boost::optional<double> _leqm;
        /** If this analysis was run on a single piece of
         *  content we store its gain in dB when the analysis
         *  happened.