X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_mapping.h;h=6c7d67203781d14986dfe5406212ad62f643cf14;hb=2e62b2c0de47fc8e5bcb5466b2876f9b23d2ae84;hp=57169cc1e7d8c13c21208691d344ec1e8fe2431b;hpb=fa61fc99549264810e17fcd35abffe9e8ddab5b2;p=dcpomatic.git diff --git a/src/lib/audio_mapping.h b/src/lib/audio_mapping.h index 57169cc1e..6c7d67203 100644 --- a/src/lib/audio_mapping.h +++ b/src/lib/audio_mapping.h @@ -25,18 +25,12 @@ #define DCPOMATIC_AUDIO_MAPPING_H #include -#include -#include #include namespace xmlpp { class Node; } -namespace cxml { - class Node; -} - /** @class AudioMapping. * @brief A many-to-many mapping of audio channels. */ @@ -48,7 +42,7 @@ public: AudioMapping (cxml::ConstNodePtr, int); /* Default copy constructor is fine */ - + void as_xml (xmlpp::Node *) const; void make_zero (); @@ -63,12 +57,12 @@ public: int output_channels () const { return _output_channels; } - + std::string digest () const; std::list mapped_output_channels () const; void unmap_all (); - + private: void setup (int input_channels, int output_channels);