X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsndfile_content.h;h=94f46fea34f5650f4fd9f8832ac76027505ae5d7;hb=8aeb741ccbe2edb528e98a431bf55459a6836a9b;hp=e0d66b9928e7de8ec21e6b8b71158afe3b6f5d79;hpb=0c66eaeac227d6aeb63a7a36e202ef87081dc222;p=dcpomatic.git diff --git a/src/lib/sndfile_content.h b/src/lib/sndfile_content.h index e0d66b992..94f46fea3 100644 --- a/src/lib/sndfile_content.h +++ b/src/lib/sndfile_content.h @@ -1,5 +1,3 @@ -/* -*- c-basic-offset: 8; default-tab-width: 8; -*- */ - /* Copyright (C) 2013 Carl Hetherington @@ -19,6 +17,9 @@ */ +#ifndef DCPOMATIC_SNDFILE_CONTENT_H +#define DCPOMATIC_SNDFILE_CONTENT_H + extern "C" { #include } @@ -31,48 +32,52 @@ 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, int); 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 technical_summary () const; std::string information () const; void as_xml (xmlpp::Node *) const; - boost::shared_ptr clone () const; - Time length (boost::shared_ptr) const; + DCPTime full_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 { + AudioFrame audio_length () const { boost::mutex::scoped_lock lm (_mutex); return _audio_length; } - int content_audio_frame_rate () const { + int content_audio_frame_rate () const { boost::mutex::scoped_lock lm (_mutex); return _audio_frame_rate; } - int output_audio_frame_rate (boost::shared_ptr) const; - + int output_audio_frame_rate () const; + AudioMapping audio_mapping () const { boost::mutex::scoped_lock lm (_mutex); - return _mapping; + return _audio_mapping; } + + void set_audio_mapping (AudioMapping); static bool valid_file (boost::filesystem::path); private: int _audio_channels; - ContentAudioFrame _audio_length; + AudioFrame _audio_length; int _audio_frame_rate; - AudioMapping _mapping; + AudioMapping _audio_mapping; }; + +#endif