X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftranscoder.h;h=ed0a6b1b561bb45a628080819d0866944e8a37f8;hb=cb1dfa9ec09af2abf6d10e4bf2764476db83841b;hp=ecc8ebf629a2b245a4c9b0ae22862aebed3fe96b;hpb=190c074cc1508c0aa429452ea920f8f94ef0d0f2;p=dcpomatic.git diff --git a/src/lib/transcoder.h b/src/lib/transcoder.h index ecc8ebf62..ed0a6b1b5 100644 --- a/src/lib/transcoder.h +++ b/src/lib/transcoder.h @@ -17,45 +17,34 @@ */ -/** @file src/transcoder.h - * - * A decoder is selected according to the content type, and the encoder can be specified - * as a parameter to the constructor. - */ +#include "types.h" +#include "encoder.h" class Film; -class Job; class Encoder; -class Matcher; class VideoFilter; -class Gain; -class DelayLine; class Player; -/** @class Transcoder - * - * A decoder is selected according to the content type, and the encoder can be specified - * as a parameter to the constructor. - */ -class Transcoder +/** @class Transcoder */ +class Transcoder : public boost::noncopyable { public: - Transcoder ( - boost::shared_ptr f, - boost::shared_ptr j - ); + Transcoder (boost::shared_ptr, boost::shared_ptr); void go (); float current_encoding_rate () const; int video_frames_out () const; -protected: - /** A Job that is running this Transcoder, or 0 */ - boost::shared_ptr _job; + /** @return true if we are in the process of calling Encoder::process_end */ + bool finishing () const { + return _finishing; + } + +private: + boost::shared_ptr _film; boost::shared_ptr _player; + boost::shared_ptr _writer; boost::shared_ptr _encoder; - boost::shared_ptr _matcher; - boost::shared_ptr _delay_line; - boost::shared_ptr _gain; + bool _finishing; };