X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Faudio_mapping.h;h=6c7d67203781d14986dfe5406212ad62f643cf14;hp=248d2570eca8a3eee084bfbfe4df957f85f55bf8;hb=aeb835a18c8df347e0ed68fb24631b320abeb611;hpb=f861018389acd9d277fe34d7621182b9b54f977f diff --git a/src/lib/audio_mapping.h b/src/lib/audio_mapping.h index 248d2570e..6c7d67203 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,46 +17,58 @@ */ +/** @file src/lib/audio_mapping.h + * @brief AudioMapping class. + */ + #ifndef DCPOMATIC_AUDIO_MAPPING_H #define DCPOMATIC_AUDIO_MAPPING_H -#include -#include -#include -#include -#include "audio_content.h" +#include +#include + +namespace xmlpp { + class Node; +} +/** @class AudioMapping. + * @brief A many-to-many mapping of audio channels. + */ class AudioMapping { public: + AudioMapping (); + AudioMapping (int input_channels, int output_channels); + AudioMapping (cxml::ConstNodePtr, int); + + /* Default copy constructor is fine */ + void as_xml (xmlpp::Node *) const; - void set_from_xml (ContentList const &, boost::shared_ptr); - - struct Channel { - Channel (boost::weak_ptr c, int i) - : content (c) - , index (i) - {} - - boost::weak_ptr content; - int index; - }; - - void add (Channel, libdcp::Channel); - - int dcp_channels () const; - std::list dcp_to_content (libdcp::Channel) const; - std::list > content_to_dcp () const { - return _content_to_dcp; + + void make_zero (); + + void set (int input_channel, int output_channel, float); + float get (int input_channel, int output_channel) const; + + int input_channels () const { + return _input_channels; + } + + int output_channels () const { + return _output_channels; } - std::list content_channels () const; - std::list content_to_dcp (Channel) const; + std::string digest () const; + + std::list mapped_output_channels () const; + void unmap_all (); private: - std::list > _content_to_dcp; -}; + void setup (int input_channels, int output_channels); -extern bool operator== (AudioMapping::Channel const &, AudioMapping::Channel const &); + int _input_channels; + int _output_channels; + std::vector > _gain; +}; #endif