X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Faudio_mapping.h;h=ca9b9847fe8f9bc7002ca268014273b934f48800;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=9a507b550e958a8d0928adf2f1a9733eb79db708;hpb=373f010a7f04add1f49169cbaa60cb7ae5f508d4;p=dcpomatic.git diff --git a/src/lib/audio_mapping.h b/src/lib/audio_mapping.h index 9a507b550..ca9b9847f 100644 --- a/src/lib/audio_mapping.h +++ b/src/lib/audio_mapping.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-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,12 +17,17 @@ */ +/** @file src/lib/audio_mapping.h + * @brief AudioMapping class. + */ + #ifndef DCPOMATIC_AUDIO_MAPPING_H #define DCPOMATIC_AUDIO_MAPPING_H -#include -#include +#include +#include #include +#include namespace xmlpp { class Node; @@ -32,39 +37,44 @@ namespace cxml { class Node; } -/** A many-to-many mapping from some content channels to DCP channels. - * The number of content channels is set on construction and fixed, - * and then each of those content channels can be mapped to zero or - * more DCP channels. +/** @class AudioMapping. + * @brief A many-to-many mapping of audio channels. */ class AudioMapping { public: AudioMapping (); - AudioMapping (int); - AudioMapping (boost::shared_ptr); + AudioMapping (int input_channels, int output_channels); + AudioMapping (cxml::ConstNodePtr, int); /* Default copy constructor is fine */ - + void as_xml (xmlpp::Node *) const; - void add (int, libdcp::Channel); - void make_default (); + void make_zero (); + + void set (int input_channel, int output_channel, float); + float get (int input_channel, int output_channel) const; - std::list dcp_to_content (libdcp::Channel) const; - std::list > content_to_dcp () const { - return _content_to_dcp; + int input_channels () const { + return _input_channels; } - int content_channels () const { - return _content_channels; + int output_channels () const { + return _output_channels; } - - std::list content_to_dcp (int) const; + + std::string digest () const; + + std::list mapped_output_channels () const; + void unmap_all (); private: - int _content_channels; - std::list > _content_to_dcp; + void setup (int input_channels, int output_channels); + + int _input_channels; + int _output_channels; + std::vector > _gain; }; #endif