X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsndfile_content.h;h=cdb842c042f471d234eb5df17ab543cb8b2be149;hb=3db1df492e1009ee28641cdc593a139df156e8d7;hp=75c723518ea61ebf48ed6e06163b2894e71fe53b;hpb=946dbad9821e676f1d8fdc5abba459da54b8e84c;p=dcpomatic.git diff --git a/src/lib/sndfile_content.h b/src/lib/sndfile_content.h index 75c723518..cdb842c04 100644 --- a/src/lib/sndfile_content.h +++ b/src/lib/sndfile_content.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2016 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,16 +20,11 @@ #ifndef DCPOMATIC_SNDFILE_CONTENT_H #define DCPOMATIC_SNDFILE_CONTENT_H -extern "C" { -#include -} -#include "single_stream_audio_content.h" +#include "content.h" -namespace cxml { - class Node; -} +class AudioExaminer; -class SndfileContent : public SingleStreamAudioContent +class SndfileContent : public Content { public: SndfileContent (boost::shared_ptr, boost::filesystem::path); @@ -38,15 +33,15 @@ public: boost::shared_ptr shared_from_this () { return boost::dynamic_pointer_cast (Content::shared_from_this ()); } - + DCPTime full_length () const; - + void examine (boost::shared_ptr); std::string summary () const; std::string technical_summary () const; std::string information () const; void as_xml (xmlpp::Node *) const; - + static bool valid_file (boost::filesystem::path); };