X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftranscoder.h;h=7bf214a88de6ccbbb3b53bacc43fb8c8791de410;hb=8446a529b08d754c7ffe968baef54e5c115c26a5;hp=3c47b0c7ea421f61067d5e06b3a8af4b5fb0534b;hpb=a054c067ab2cbf6c5abc5df4caa08ffaac206f0b;p=dcpomatic.git diff --git a/src/lib/transcoder.h b/src/lib/transcoder.h index 3c47b0c7e..7bf214a88 100644 --- a/src/lib/transcoder.h +++ b/src/lib/transcoder.h @@ -17,44 +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 "decoder_factory.h" +#include "types.h" +#include "encoder.h" class Film; class Job; class Encoder; -class Matcher; class VideoFilter; -class Gain; -class DelayLine; -class Playlist; - -/** @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 Player; + +/** @class Transcoder */ +class Transcoder : public boost::noncopyable { public: Transcoder ( - boost::shared_ptr f, + boost::shared_ptr f, boost::shared_ptr j ); void go (); -protected: + float current_encoding_rate () const; + Encoder::State state () const; + int video_frames_out () const; + +private: /** A Job that is running this Transcoder, or 0 */ boost::shared_ptr _job; - boost::shared_ptr _playlist; + boost::shared_ptr _player; boost::shared_ptr _encoder; - boost::shared_ptr _matcher; - boost::shared_ptr _delay_line; - boost::shared_ptr _gain; };