X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_analysis.cc;h=03f35d84e0564881dc8eb03a45f9bf3b74611a47;hb=aebfa24afe42d80693df66318e5d2818ebf5989b;hp=73422a9be9ad8a2f3a6039d7487c284ddfe4f8bf;hpb=6f0a590bc3266f21ba577116219bd019e891d480;p=dcpomatic.git diff --git a/src/lib/audio_analysis.cc b/src/lib/audio_analysis.cc index 73422a9be..03f35d84e 100644 --- a/src/lib/audio_analysis.cc +++ b/src/lib/audio_analysis.cc @@ -21,6 +21,8 @@ #include "cross.h" #include "util.h" #include "raw_convert.h" +#include "playlist.h" +#include "audio_content.h" #include #include #include @@ -38,48 +40,8 @@ using std::cout; using std::max; using std::list; using boost::shared_ptr; +using boost::dynamic_pointer_cast; -AudioPoint::AudioPoint () -{ - for (int i = 0; i < COUNT; ++i) { - _data[i] = 0; - } -} - -AudioPoint::AudioPoint (cxml::ConstNodePtr node) -{ - _data[PEAK] = node->number_child ("Peak"); - _data[RMS] = node->number_child ("RMS"); -} - -AudioPoint::AudioPoint (AudioPoint const & other) -{ - for (int i = 0; i < COUNT; ++i) { - _data[i] = other._data[i]; - } -} - -AudioPoint & -AudioPoint::operator= (AudioPoint const & other) -{ - if (this == &other) { - return *this; - } - - for (int i = 0; i < COUNT; ++i) { - _data[i] = other._data[i]; - } - - return *this; -} - -void -AudioPoint::as_xml (xmlpp::Element* parent) const -{ - parent->add_child ("Peak")->add_child_text (raw_convert (_data[PEAK])); - parent->add_child ("RMS")->add_child_text (raw_convert (_data[RMS])); -} - AudioAnalysis::AudioAnalysis (int channels) { _data.resize (channels); @@ -100,8 +62,23 @@ AudioAnalysis::AudioAnalysis (boost::filesystem::path filename) _data.push_back (channel); } - _peak = f.number_child ("Peak"); - _peak_time = DCPTime (f.number_child ("PeakTime")); + _sample_peak = f.optional_number_child ("Peak"); + if (!_sample_peak) { + /* New key */ + _sample_peak = f.optional_number_child ("SamplePeak"); + } + + if (f.optional_number_child ("PeakTime")) { + _sample_peak_time = DCPTime (f.number_child ("PeakTime")); + } else if (f.optional_number_child ("SamplePeakTime")) { + _sample_peak_time = DCPTime (f.number_child ("SamplePeakTime")); + } + + _true_peak = f.optional_number_child ("TruePeak"); + _integrated_loudness = f.optional_number_child ("IntegratedLoudness"); + _loudness_range = f.optional_number_child ("LoudnessRange"); + + _analysis_gain = f.optional_number_child ("AnalysisGain"); } void @@ -144,10 +121,42 @@ AudioAnalysis::write (boost::filesystem::path filename) } } - if (_peak) { - root->add_child("Peak")->add_child_text (raw_convert (_peak.get ())); - root->add_child("PeakTime")->add_child_text (raw_convert (_peak_time.get().get ())); + if (_sample_peak) { + root->add_child("SamplePeak")->add_child_text (raw_convert (_sample_peak.get ())); + root->add_child("SamplePeakTime")->add_child_text (raw_convert (_sample_peak_time.get().get ())); + } + + if (_true_peak) { + root->add_child("TruePeak")->add_child_text (raw_convert (_true_peak.get ())); + } + + if (_integrated_loudness) { + root->add_child("IntegratedLoudness")->add_child_text (raw_convert (_integrated_loudness.get ())); + } + + if (_loudness_range) { + root->add_child("LoudnessRange")->add_child_text (raw_convert (_loudness_range.get ())); + } + + if (_analysis_gain) { + root->add_child("AnalysisGain")->add_child_text (raw_convert (_analysis_gain.get ())); } doc->write_to_file_formatted (filename.string ()); } + +float +AudioAnalysis::gain_correction (shared_ptr playlist) +{ + if (playlist->content().size() == 1 && analysis_gain ()) { + /* In this case we know that the analysis was of a single piece of content and + we know that content's gain when the analysis was run. Hence we can work out + what correction is now needed to make it look `right'. + */ + shared_ptr ac = dynamic_pointer_cast (playlist->content().front ()); + DCPOMATIC_ASSERT (ac); + return ac->audio_gain() - analysis_gain().get (); + } + + return 0.0f; +}