X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=d67592ed812544c644b8766bcb1b1be1c03e84de;hb=872557b0261c0daf2206a24e38f33b1c9871c8a3;hp=96d3a201460df5b2b9e9e0be77f44708c430b9d4;hpb=9c58fcdb6fd8131c17456dd71c5c277a6b0ae053;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 96d3a2014..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 @@ -21,52 +21,36 @@ * @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 "stream.h" -#include "video_source.h" -#include "audio_source.h" +#include +#include -class Job; -class Options; -class Image; -class Log; -class DelayLine; -class TimedSubtitle; -class Subtitle; class Film; -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 +class Decoder : public boost::noncopyable { public: - Decoder (boost::shared_ptr, boost::shared_ptr, Job *); + Decoder (boost::shared_ptr); virtual ~Decoder () {} - virtual bool pass () = 0; - virtual void seek (SourceFrame); + /** 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: - /** our Film */ - boost::shared_ptr _film; - /** our options */ - boost::shared_ptr _opt; - /** associated Job, or 0 */ - Job* _job; + + virtual void flush () {}; + + /** The Film that we are decoding in */ + boost::weak_ptr _film; }; #endif