summaryrefslogtreecommitdiff
path: root/src/lib/sndfile_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-04-14 01:01:28 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-18 11:50:29 +0100
commit65b331d32c383f3a9049f29bf03ab3fe3193b31a (patch)
tree3b27e0ca60742021094cee889a1c8d1ef4d75f8c /src/lib/sndfile_content.h
parent6dd3777a0074f6f97c7f7286621006a1c14376e8 (diff)
Split audio; builds.
Diffstat (limited to 'src/lib/sndfile_content.h')
-rw-r--r--src/lib/sndfile_content.h12
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