X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=dea4def3a09a510cefd73cd50aa9c0c633a9bf77;hb=25d55759c94adba96336edf6780cee7138c2ec21;hp=34accf6c740afdd60eb0e97a1a2e763d28a2c7e8;hpb=d62877ae6c4e316e43f4052e4b9ba673610012cf;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 34accf6c7..dea4def3a 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 @@ -21,32 +21,23 @@ * @brief Parent class for decoders of content. */ -#ifndef DVDOMATIC_DECODER_H -#define DVDOMATIC_DECODER_H +#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" class Image; class Log; class DelayLine; -class TimedSubtitle; -class Subtitle; class FilterGraph; /** @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 { @@ -54,16 +45,23 @@ public: Decoder (boost::shared_ptr); virtual ~Decoder () {} - virtual bool pass () = 0; - virtual bool seek (double); - virtual bool seek_to_last (); + /** 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; + + /** The Film that we are decoding in */ + boost::weak_ptr _film; private: + /** This will be called when our Film emits Changed */ virtual void film_changed (Film::Property) {} + /** Connection to our Film */ boost::signals2::scoped_connection _film_connection; };