X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_analysis.cc;h=127def8074625742ecc54bd3535ecb40a0b36075;hb=99428af22969a6cfb1dbd2053a9356bb23b3182f;hp=e1251662089bd543fc3d713eadb8748ca37c8a9d;hpb=89115db77729a2c99f1a09ff6a461720e16f889e;p=dcpomatic.git diff --git a/src/lib/audio_analysis.cc b/src/lib/audio_analysis.cc index e12516620..127def807 100644 --- a/src/lib/audio_analysis.cc +++ b/src/lib/audio_analysis.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,22 +17,27 @@ */ +#include "audio_analysis.h" +#include "cross.h" +#include "util.h" +#include "raw_convert.h" +#include +#include +#include #include #include -#include -#include -#include -#include "audio_analysis.h" +#include +#include +#include using std::ostream; using std::istream; using std::string; -using std::ofstream; -using std::ifstream; using std::vector; using std::cout; using std::max; using std::list; +using boost::shared_ptr; AudioPoint::AudioPoint () { @@ -41,21 +46,39 @@ AudioPoint::AudioPoint () } } -AudioPoint::AudioPoint (istream& s) +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) { - s >> _data[i]; + _data[i] = other._data[i]; } } -void -AudioPoint::write (ostream& s) const +AudioPoint & +AudioPoint::operator= (AudioPoint const & other) { + if (this == &other) { + return *this; + } + for (int i = 0; i < COUNT; ++i) { - s << _data[i] << "\n"; + _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) { @@ -64,32 +87,35 @@ AudioAnalysis::AudioAnalysis (int channels) AudioAnalysis::AudioAnalysis (boost::filesystem::path filename) { - ifstream f (filename.string().c_str ()); + cxml::Document f ("AudioAnalysis"); + f.read_file (filename); - int channels; - f >> channels; - _data.resize (channels); + BOOST_FOREACH (cxml::NodePtr i, f.node_children ("Channel")) { + vector channel; - for (int i = 0; i < channels; ++i) { - int points; - f >> points; - for (int j = 0; j < points; ++j) { - _data[i].push_back (AudioPoint (f)); + BOOST_FOREACH (cxml::NodePtr j, i->node_children ("Point")) { + channel.push_back (AudioPoint (j)); } + + _data.push_back (channel); } + + _peak = f.number_child ("Peak"); + _peak_time = DCPTime (f.number_child ("PeakTime")); + _analysis_gain = f.optional_number_child ("AnalysisGain"); } void AudioAnalysis::add_point (int c, AudioPoint const & p) { - assert (c < channels ()); + DCPOMATIC_ASSERT (c < channels ()); _data[c].push_back (p); } AudioPoint AudioAnalysis::get_point (int c, int p) const { - assert (p < points (c)); + DCPOMATIC_ASSERT (p < points (c)); return _data[c][p]; } @@ -102,24 +128,31 @@ AudioAnalysis::channels () const int AudioAnalysis::points (int c) const { - assert (c < channels ()); + DCPOMATIC_ASSERT (c < channels ()); return _data[c].size (); } void AudioAnalysis::write (boost::filesystem::path filename) { - string tmp = filename.string() + ".tmp"; - - ofstream f (tmp.c_str ()); - f << _data.size() << "\n"; - for (vector >::iterator i = _data.begin(); i != _data.end(); ++i) { - f << i->size () << "\n"; - for (vector::iterator j = i->begin(); j != i->end(); ++j) { - j->write (f); + shared_ptr doc (new xmlpp::Document); + xmlpp::Element* root = doc->create_root_node ("AudioAnalysis"); + + BOOST_FOREACH (vector& i, _data) { + xmlpp::Element* channel = root->add_child ("Channel"); + BOOST_FOREACH (AudioPoint& j, i) { + j.as_xml (channel->add_child ("Point")); } } - f.close (); - boost::filesystem::rename (tmp, 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 (_analysis_gain) { + root->add_child("AnalysisGain")->add_child_text (raw_convert (_analysis_gain.get ())); + } + + doc->write_to_file_formatted (filename.string ()); }