X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=d67592ed812544c644b8766bcb1b1be1c03e84de;hb=5f64a83b76dd015cc03d106061bf890d3d80d788;hp=72b866ffe9e7e6cf2dcad643cbe50b7376569dae;hpb=147cca5876dfbdf56e21289c3a36bec4b4850191;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 72b866ffe..d67592ed8 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2013 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 @@ -24,46 +24,33 @@ #ifndef DCPOMATIC_DECODER_H #define DCPOMATIC_DECODER_H -#include -#include -#include #include -#include -#include "util.h" -#include "video_source.h" -#include "audio_source.h" -#include "film.h" +#include +#include -class Image; -class Log; -class DelayLine; -class TimedSubtitle; -class Subtitle; -class FilterGraph; +class Film; /** @class Decoder. * @brief Parent class for decoders of content. - * - * These classes can be instructed run through their content (by - * calling ::go), and they emit signals when video or audio data is - * ready for something else to process. */ -class Decoder +class Decoder : public boost::noncopyable { public: Decoder (boost::shared_ptr); virtual ~Decoder () {} - virtual bool pass () = 0; - virtual bool seek (double); + /** Perform one decode pass of the content, which may or may not + * cause the object to emit some data. + */ + virtual void pass () = 0; + virtual bool done () const = 0; protected: - boost::shared_ptr _film; -private: - virtual void film_changed (Film::Property) {} - - boost::signals2::scoped_connection _film_connection; + virtual void flush () {}; + + /** The Film that we are decoding in */ + boost::weak_ptr _film; }; #endif