regenerate and manually fix all PO files so that ./waf i18n doesn't generate unnecess...
[ardour.git] / libs / ardour / export_graph_builder.cc
index 685db817d495673c1789aa749cf055bd0927c531..49b40a673608c7991d62463523d94e4e0514a08a 100644 (file)
 #include "audiographer/general/normalizer.h"
 #include "audiographer/general/analyser.h"
 #include "audiographer/general/peak_reader.h"
+#include "audiographer/general/loudness_reader.h"
 #include "audiographer/general/sample_format_converter.h"
 #include "audiographer/general/sr_converter.h"
 #include "audiographer/general/silence_trimmer.h"
 #include "audiographer/general/threader.h"
 #include "audiographer/sndfile/tmp_file.h"
+#include "audiographer/sndfile/tmp_file_rt.h"
 #include "audiographer/sndfile/sndfile_writer.h"
 
 #include "ardour/audioengine.h"
@@ -305,33 +307,60 @@ ExportGraphBuilder::SFC::SFC (ExportGraphBuilder &parent, FileSpec const & new_c
        config = new_config;
        data_width = sndfile_data_width (Encoder::get_real_format (config));
        unsigned channels = new_config.channel_config->get_n_chans();
-       analyser.reset (new Analyser (config.format->sample_rate(), channels, max_frames,
-                               (framecnt_t) ceil (parent.timespan->get_length () * config.format->sample_rate () / (double) parent.session.nominal_frame_rate ())));
-       parent.add_analyser (config.filename->get_path (config.format), analyser);
+       _analyse = config.format->analyse();
+       if (_analyse) {
+               framecnt_t sample_rate = parent.session.nominal_frame_rate();
+               framecnt_t sb = config.format->silence_beginning_at (parent.timespan->get_start(), sample_rate);
+               framecnt_t se = config.format->silence_end_at (parent.timespan->get_end(), sample_rate);
+               framecnt_t duration = parent.timespan->get_length () + sb + se;
+               max_frames = min ((framecnt_t) 8192 * channels, max ((framecnt_t) 4096 * channels, max_frames));
+               chunker.reset (new Chunker<Sample> (max_frames));
+               analyser.reset (new Analyser (config.format->sample_rate(), channels, max_frames,
+                                       (framecnt_t) ceil (duration * config.format->sample_rate () / (double) sample_rate)));
+               chunker->add_output (analyser);
+               parent.add_analyser (config.filename->get_path (config.format), analyser);
+       }
 
        if (data_width == 8 || data_width == 16) {
                short_converter = ShortConverterPtr (new SampleFormatConverter<short> (channels));
                short_converter->init (max_frames, config.format->dither_type(), data_width);
                add_child (config);
-               analyser->add_output (short_converter);
+               if (_analyse) { analyser->add_output (short_converter); }
+
        } else if (data_width == 24 || data_width == 32) {
                int_converter = IntConverterPtr (new SampleFormatConverter<int> (channels));
                int_converter->init (max_frames, config.format->dither_type(), data_width);
                add_child (config);
-               analyser->add_output (int_converter);
+               if (_analyse) { analyser->add_output (int_converter); }
        } else {
                int actual_data_width = 8 * sizeof(Sample);
                float_converter = FloatConverterPtr (new SampleFormatConverter<Sample> (channels));
                float_converter->init (max_frames, config.format->dither_type(), actual_data_width);
                add_child (config);
-               analyser->add_output (float_converter);
+               if (_analyse) { analyser->add_output (float_converter); }
+       }
+}
+
+void
+ExportGraphBuilder::SFC::set_peak (float gain)
+{
+       if (_analyse) {
+               analyser->set_normalization_gain (gain);
        }
 }
 
 ExportGraphBuilder::FloatSinkPtr
 ExportGraphBuilder::SFC::sink ()
 {
-       return analyser;
+       if (_analyse) {
+               return chunker;
+       } else if (data_width == 8 || data_width == 16) {
+               return short_converter;
+       } else if (data_width == 24 || data_width == 32) {
+               return int_converter;
+       } else {
+               return float_converter;
+       }
 }
 
 void
@@ -378,8 +407,9 @@ ExportGraphBuilder::SFC::operator== (FileSpec const & other_config) const
 
 /* Normalizer */
 
-ExportGraphBuilder::Normalizer::Normalizer (ExportGraphBuilder & parent, FileSpec const & new_config, framecnt_t /*max_frames*/)
+ExportGraphBuilder::Normalizer::Normalizer (ExportGraphBuilder & parent, FileSpec const & new_config, framecnt_t max_frames)
        : parent (parent)
+       , use_loudness (false)
 {
        std::string tmpfile_path = parent.session.session_directory().export_path();
        tmpfile_path = Glib::build_filename(tmpfile_path, "XXXXXX");
@@ -390,10 +420,12 @@ ExportGraphBuilder::Normalizer::Normalizer (ExportGraphBuilder & parent, FileSpe
        config = new_config;
        uint32_t const channels = config.channel_config->get_n_chans();
        max_frames_out = 4086 - (4086 % channels); // TODO good chunk size
+       use_loudness = config.format->normalize_loudness ();
 
        buffer.reset (new AllocatingProcessContext<Sample> (max_frames_out, channels));
        peak_reader.reset (new PeakReader ());
-       normalizer.reset (new AudioGrapher::Normalizer (config.format->normalize_target()));
+       loudness_reader.reset (new LoudnessReader (config.format->sample_rate(), channels, max_frames));
+       normalizer.reset (new AudioGrapher::Normalizer (use_loudness ? 0.0 : config.format->normalize_dbfs()));
        threader.reset (new Threader<Sample> (parent.thread_pool));
 
        normalizer->alloc_buffer (max_frames_out);
@@ -406,12 +438,19 @@ ExportGraphBuilder::Normalizer::Normalizer (ExportGraphBuilder & parent, FileSpe
 
        add_child (new_config);
 
-       peak_reader->add_output (tmp_file);
+       if (use_loudness) {
+               loudness_reader->add_output (tmp_file);
+       } else {
+               peak_reader->add_output (tmp_file);
+       }
 }
 
 ExportGraphBuilder::FloatSinkPtr
 ExportGraphBuilder::Normalizer::sink ()
 {
+       if (use_loudness) {
+               return loudness_reader;
+       }
        return peak_reader;
 }
 
@@ -444,7 +483,13 @@ bool
 ExportGraphBuilder::Normalizer::operator== (FileSpec const & other_config) const
 {
        return config.format->normalize() == other_config.format->normalize() &&
-               config.format->normalize_target() == other_config.format->normalize_target();
+               config.format->normalize_loudness () == other_config.format->normalize_loudness() &&
+               (
+                (!config.format->normalize_loudness () && config.format->normalize_dbfs() == other_config.format->normalize_dbfs())
+                ||
+                // FIXME: allow simultaneous export of two formats with different loundness normalization settings
+                (config.format->normalize_loudness () /* lufs/dbtp is a result option, not an instantaion option */)
+               );
 }
 
 unsigned
@@ -464,7 +509,15 @@ ExportGraphBuilder::Normalizer::process()
 void
 ExportGraphBuilder::Normalizer::start_post_processing()
 {
-       normalizer->set_peak (peak_reader->get_peak());
+       float gain;
+       if (use_loudness) {
+               gain = normalizer->set_peak (loudness_reader->get_peak (config.format->normalize_lufs (), config.format->normalize_dbtp ()));
+       } else {
+               gain = normalizer->set_peak (peak_reader->get_peak());
+       }
+       for (boost::ptr_list<SFC>::iterator i = children.begin(); i != children.end(); ++i) {
+               (*i).set_peak (gain);
+       }
        tmp_file->seek (0, SEEK_SET);
        tmp_file->add_output (normalizer);
        parent.normalizers.push_back (this);
@@ -550,7 +603,12 @@ ExportGraphBuilder::SilenceHandler::SilenceHandler (ExportGraphBuilder & parent,
        max_frames_in = max_frames;
        framecnt_t sample_rate = parent.session.nominal_frame_rate();
 
-       silence_trimmer.reset (new SilenceTrimmer<Sample>(max_frames_in));
+#ifdef MIXBUS
+       silence_trimmer.reset (new SilenceTrimmer<Sample>(max_frames_in, -90));
+#else
+       // TODO silence-threshold should be per export-preset, with Config->get_silence_threshold being the default
+       silence_trimmer.reset (new SilenceTrimmer<Sample>(max_frames_in, Config->get_export_silence_threshold ()));
+#endif
        silence_trimmer->set_trim_beginning (config.format->trim_beginning());
        silence_trimmer->set_trim_end (config.format->trim_end());