X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsndfile_content.h;h=3b61eee64a848253ec6afe439dc778be67beeea4;hb=77fd65d0dd95506b5b51802ab58b6bd5eae60dc7;hp=27c5f3615bde9c5477e79f02ebe2906ed7b16cc8;hpb=e94cd129dcd66a76210880bfdf19d27f7992651b;p=dcpomatic.git diff --git a/src/lib/sndfile_content.h b/src/lib/sndfile_content.h index 27c5f3615..3b61eee64 100644 --- a/src/lib/sndfile_content.h +++ b/src/lib/sndfile_content.h @@ -17,6 +17,9 @@ */ +#ifndef DCPOMATIC_SNDFILE_CONTENT_H +#define DCPOMATIC_SNDFILE_CONTENT_H + extern "C" { #include } @@ -29,43 +32,51 @@ namespace cxml { class SndfileContent : public AudioContent { public: - SndfileContent (boost::filesystem::path); - SndfileContent (boost::shared_ptr); + SndfileContent (boost::shared_ptr, boost::filesystem::path); + SndfileContent (boost::shared_ptr, boost::shared_ptr); boost::shared_ptr shared_from_this () { return boost::dynamic_pointer_cast (Content::shared_from_this ()); } - void examine (boost::shared_ptr, boost::shared_ptr, bool); + void examine (boost::shared_ptr); std::string summary () const; std::string information () const; void as_xml (xmlpp::Node *) const; - boost::shared_ptr clone () const; + Time length () const; - /* AudioContent */ - int audio_channels () const { + /* AudioContent */ + int audio_channels () const { boost::mutex::scoped_lock lm (_mutex); return _audio_channels; } - ContentAudioFrame audio_length () const { + AudioContent::Frame audio_length () const { boost::mutex::scoped_lock lm (_mutex); return _audio_length; } - int audio_frame_rate () const { + int content_audio_frame_rate () const { boost::mutex::scoped_lock lm (_mutex); return _audio_frame_rate; } - - int64_t audio_channel_layout () const { - return av_get_default_channel_layout (audio_channels ()); + + int output_audio_frame_rate () const; + + AudioMapping audio_mapping () const { + boost::mutex::scoped_lock lm (_mutex); + return _audio_mapping; } + void set_audio_mapping (AudioMapping); + static bool valid_file (boost::filesystem::path); private: int _audio_channels; - ContentAudioFrame _audio_length; + AudioContent::Frame _audio_length; int _audio_frame_rate; + AudioMapping _audio_mapping; }; + +#endif