X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Faudio_mapping.h;h=6c7d67203781d14986dfe5406212ad62f643cf14;hp=a2de8306bbf376457788bb77884d4a523bbabee0;hb=aeb835a18c8df347e0ed68fb24631b320abeb611;hpb=951a81dbb75db9850ee0226f74a575af7335a576 diff --git a/src/lib/audio_mapping.h b/src/lib/audio_mapping.h index a2de8306b..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,42 +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 namespace xmlpp { class Node; } -namespace cxml { - class Node; -} - +/** @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_zero (); - std::list dcp_to_content (libdcp::Channel) const; - std::list > content_to_dcp () const { - return _content_to_dcp; + 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 (int) 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); + + int _input_channels; + int _output_channels; + std::vector > _gain; }; #endif