X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Faudio_mapping.cc;h=ca2425862e733dc68acc9a08312f904580d78b99;hp=86add09f4cb4330cdcc039fb9d8477f83e8f4465;hb=37d2bf172e9061f24c874d5416bd3c8f9719c823;hpb=e13e5cd4cfda39b0a0b77ed8036e14e15f93ec2e diff --git a/src/lib/audio_mapping.cc b/src/lib/audio_mapping.cc index 86add09f4..ca2425862 100644 --- a/src/lib/audio_mapping.cc +++ b/src/lib/audio_mapping.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2018 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,16 +18,22 @@ */ + #include "audio_mapping.h" -#include "util.h" -#include "digester.h" #include "audio_processor.h" +#include "constants.h" +#include "dcpomatic_assert.h" +#include "digester.h" #include +#include #include +LIBDCP_DISABLE_WARNINGS #include +LIBDCP_ENABLE_WARNINGS #include #include + using std::list; using std::cout; using std::make_pair; @@ -36,17 +42,11 @@ using std::string; using std::min; using std::vector; using std::abs; -using boost::shared_ptr; -using boost::dynamic_pointer_cast; +using std::shared_ptr; +using std::dynamic_pointer_cast; using boost::optional; using dcp::raw_convert; -AudioMapping::AudioMapping () - : _input_channels (0) - , _output_channels (0) -{ - -} /** Create an empty AudioMapping. * @param input_channels Number of input channels. @@ -57,6 +57,7 @@ AudioMapping::AudioMapping (int input_channels, int output_channels) setup (input_channels, output_channels); } + void AudioMapping::setup (int input_channels, int output_channels) { @@ -71,6 +72,7 @@ AudioMapping::setup (int input_channels, int output_channels) make_zero (); } + void AudioMapping::make_zero () { @@ -81,16 +83,36 @@ AudioMapping::make_zero () } } + +struct ChannelRegex +{ + ChannelRegex (string regex_, int channel_) + : regex (regex_) + , channel (channel_) + {} + + string regex; + int channel; +}; + + void AudioMapping::make_default (AudioProcessor const * processor, optional filename) { - static string const regex[] = { - ".*[\\._-]L[\\._-].*", - ".*[\\._-]R[\\._-].*", - ".*[\\._-]C[\\._-].*", - ".*[\\._-]Lfe[\\._-].*", - ".*[\\._-]Ls[\\._-].*", - ".*[\\._-]Rs[\\._-].*" + static ChannelRegex const regex[] = { + ChannelRegex(".*[\\._-]L[\\._-].*", 0), + ChannelRegex(".*[\\._-]R[\\._-].*", 1), + ChannelRegex(".*[\\._-]C[\\._-].*", 2), + ChannelRegex(".*[\\._-]Lfe[\\._-].*", 3), + ChannelRegex(".*[\\._-]LFE[\\._-].*", 3), + ChannelRegex(".*[\\._-]Lss[\\._-].*", 4), + ChannelRegex(".*[\\._-]Lsr[\\._-].*", 6), + ChannelRegex(".*[\\._-]Lrs[\\._-].*", 6), + ChannelRegex(".*[\\._-]Ls[\\._-].*", 4), + ChannelRegex(".*[\\._-]Rss[\\._-].*", 5), + ChannelRegex(".*[\\._-]Rsr[\\._-].*", 7), + ChannelRegex(".*[\\._-]Rrs[\\._-].*", 7), + ChannelRegex(".*[\\._-]Rs[\\._-].*", 5), }; static int const regexes = sizeof(regex) / sizeof(*regex); @@ -105,9 +127,9 @@ AudioMapping::make_default (AudioProcessor const * processor, optionalstring(), e) && i < output_channels()) { - set (0, i, 1); + boost::regex e (regex[i].regex, boost::regex::icase); + if (boost::regex_match(filename->filename().string(), e) && regex[i].channel < output_channels()) { + set (0, regex[i].channel, 1); guessed = true; } } @@ -115,7 +137,7 @@ AudioMapping::make_default (AudioProcessor const * processor, optional(dcp::CENTRE), 1); + set (0, static_cast(dcp::Channel::CENTRE), 1); } } else { /* 1:1 mapping */ @@ -126,46 +148,70 @@ AudioMapping::make_default (AudioProcessor const * processor, optionalnumber_child ("ContentChannels"), MAX_DCP_AUDIO_CHANNELS); + setup (node->number_child("ContentChannels"), MAX_DCP_AUDIO_CHANNELS); } else { - setup (node->number_child ("InputChannels"), node->number_child ("OutputChannels")); + setup (node->number_child("InputChannels"), node->number_child("OutputChannels")); } if (state_version <= 5) { /* Old-style: on/off mapping */ - list const c = node->node_children ("Map"); - for (list::const_iterator i = c.begin(); i != c.end(); ++i) { - set ((*i)->number_child ("ContentIndex"), static_cast ((*i)->number_child ("DCP")), 1); + for (auto i: node->node_children ("Map")) { + set (i->number_child("ContentIndex"), i->number_child("DCP"), 1); } } else { - list const c = node->node_children ("Gain"); - for (list::const_iterator i = c.begin(); i != c.end(); ++i) { + for (auto i: node->node_children("Gain")) { if (state_version < 32) { set ( - (*i)->number_attribute ("Content"), - static_cast ((*i)->number_attribute ("DCP")), - raw_convert ((*i)->content ()) + i->number_attribute("Content"), + i->number_attribute("DCP"), + raw_convert(i->content()) ); } else { set ( - (*i)->number_attribute ("Input"), - (*i)->number_attribute ("Output"), - raw_convert ((*i)->content ()) + i->number_attribute("Input"), + i->number_attribute("Output"), + raw_convert(i->content()) ); } } } } + +void +AudioMapping::set (dcp::Channel input_channel, int output_channel, float g) +{ + set (static_cast(input_channel), output_channel, g); +} + + +void +AudioMapping::set (int input_channel, dcp::Channel output_channel, float g) +{ + set (input_channel, static_cast(output_channel), g); +} + + void AudioMapping::set (int input_channel, int output_channel, float g) { + DCPOMATIC_ASSERT (input_channel < int(_gain.size())); + DCPOMATIC_ASSERT (output_channel < int(_gain[0].size())); _gain[input_channel][output_channel] = g; } + +float +AudioMapping::get (int input_channel, dcp::Channel output_channel) const +{ + return get (input_channel, static_cast(output_channel)); +} + + float AudioMapping::get (int input_channel, int output_channel) const { @@ -174,6 +220,7 @@ AudioMapping::get (int input_channel, int output_channel) const return _gain[input_channel][output_channel]; } + void AudioMapping::as_xml (xmlpp::Node* node) const { @@ -182,7 +229,7 @@ AudioMapping::as_xml (xmlpp::Node* node) const for (int c = 0; c < _input_channels; ++c) { for (int d = 0; d < _output_channels; ++d) { - xmlpp::Element* t = node->add_child ("Gain"); + auto t = node->add_child ("Gain"); t->set_attribute ("Input", raw_convert (c)); t->set_attribute ("Output", raw_convert (d)); t->add_child_text (raw_convert (get (c, d))); @@ -190,6 +237,7 @@ AudioMapping::as_xml (xmlpp::Node* node) const } } + /** @return a string which is unique for a given AudioMapping configuration, for * differentiation between different AudioMappings. */ @@ -208,6 +256,7 @@ AudioMapping::digest () const return digester.get (); } + list AudioMapping::mapped_output_channels () const { @@ -215,10 +264,10 @@ AudioMapping::mapped_output_channels () const list mapped; - for (vector >::const_iterator i = _gain.begin(); i != _gain.end(); ++i) { - for (size_t j = 0; j < i->size(); ++j) { - if (abs ((*i)[j]) > minus_96_db) { - mapped.push_back (j); + for (auto const& i: _gain) { + for (auto j: dcp::used_audio_channels()) { + if (abs(i[static_cast(j)]) > minus_96_db) { + mapped.push_back (static_cast(j)); } } } @@ -229,12 +278,13 @@ AudioMapping::mapped_output_channels () const return mapped; } + void AudioMapping::unmap_all () { - for (vector >::iterator i = _gain.begin(); i != _gain.end(); ++i) { - for (vector::iterator j = i->begin(); j != i->end(); ++j) { - *j = 0; + for (auto& i: _gain) { + for (auto& j: i) { + j = 0; } } }