X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftranscoder.h;h=0dc0560c0c0313b44e5a6a5ab66486182761a592;hb=cae6fe1be05b9b8174f586b561029c5a40fb1c31;hp=856b10f3af73bc219016858eeb5c0ab34d37f6ef;hpb=b468ccabdb13fca86ae8a324239d83490ef5832e;p=dcpomatic.git diff --git a/src/lib/transcoder.h b/src/lib/transcoder.h index 856b10f3a..0dc0560c0 100644 --- a/src/lib/transcoder.h +++ b/src/lib/transcoder.h @@ -17,42 +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" 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 Writer; +class Job; + +/** @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 (); -protected: - /** A Job that is running this Transcoder, or 0 */ - boost::shared_ptr _job; - boost::shared_ptr _playlist; + float current_encoding_rate () const; + int video_frames_out () const; + + /** @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; };