diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-04-14 01:01:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-18 11:50:29 +0100 |
| commit | 65b331d32c383f3a9049f29bf03ab3fe3193b31a (patch) | |
| tree | 3b27e0ca60742021094cee889a1c8d1ef4d75f8c /src/lib/sndfile_content.h | |
| parent | 6dd3777a0074f6f97c7f7286621006a1c14376e8 (diff) | |
Split audio; builds.
Diffstat (limited to 'src/lib/sndfile_content.h')
| -rw-r--r-- | src/lib/sndfile_content.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/lib/sndfile_content.h b/src/lib/sndfile_content.h index 5f89b7cc8..dfd36971d 100644 --- a/src/lib/sndfile_content.h +++ b/src/lib/sndfile_content.h @@ -20,11 +20,11 @@ #ifndef DCPOMATIC_SNDFILE_CONTENT_H #define DCPOMATIC_SNDFILE_CONTENT_H -#include "audio_content.h" +#include "content.h" class AudioExaminer; -class SndfileContent : public AudioContent +class SndfileContent : public Content { public: SndfileContent (boost::shared_ptr<const Film>, boost::filesystem::path); @@ -44,12 +44,6 @@ public: void take_from_audio_examiner (boost::shared_ptr<AudioExaminer>); - std::vector<AudioStreamPtr> audio_streams () const; - - AudioStreamPtr audio_stream () const { - return _audio_stream; - } - static bool valid_file (boost::filesystem::path); private: @@ -59,8 +53,6 @@ private: } Frame _audio_length; - - boost::shared_ptr<AudioStream> _audio_stream; }; #endif |
