X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftranscoder.h;h=7bf214a88de6ccbbb3b53bacc43fb8c8791de410;hb=8446a529b08d754c7ffe968baef54e5c115c26a5;hp=ecc8ebf629a2b245a4c9b0ae22862aebed3fe96b;hpb=a84e33159d708362b10ff61af186a59cc9f5be6b;p=dcpomatic.git diff --git a/src/lib/transcoder.h b/src/lib/transcoder.h index ecc8ebf62..7bf214a88 100644 --- a/src/lib/transcoder.h +++ b/src/lib/transcoder.h @@ -17,45 +17,33 @@ */ -/** @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 f, boost::shared_ptr j ); void go (); float current_encoding_rate () const; + Encoder::State state () const; int video_frames_out () const; -protected: +private: /** A Job that is running this Transcoder, or 0 */ boost::shared_ptr _job; boost::shared_ptr _player; boost::shared_ptr _encoder; - boost::shared_ptr _matcher; - boost::shared_ptr _delay_line; - boost::shared_ptr _gain; };