X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_mapping.h;h=e37beaeb26eb77dce33fd0a75a7ab8dee51d1086;hb=0a93237cb5e4642d3b698ff9b7d0cfae5401478c;hp=8be8eeb6fa030cfbb27099abdf4c18a4d9b3e519;hpb=f1d30fb114b3b2c6ccd8fdf5823e7cd6b26c1eef;p=dcpomatic.git diff --git a/src/lib/audio_mapping.h b/src/lib/audio_mapping.h index 8be8eeb6f..e37beaeb2 100644 --- a/src/lib/audio_mapping.h +++ b/src/lib/audio_mapping.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2014 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,13 +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 +#include namespace xmlpp { class Node; @@ -33,7 +37,9 @@ namespace cxml { class Node; } -/** A many-to-many mapping from some content channels to DCP channels. +/** @class AudioMapping. + * @brief 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 are mapped to each DCP channel * by a linear gain. @@ -58,13 +64,23 @@ public: return _content_channels; } + void set_name (int channel, std::string name); + std::string name (int channel) const { + return _name[channel]; + } + std::string digest () const; + + std::list mapped_dcp_channels () const; + void unmap_all (); private: void setup (int); + void make_zero (); int _content_channels; std::vector > _gain; + std::vector _name; }; #endif