X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fencoder.h;h=19c1120b360f789fd8af1ef76ccf85a97e494337;hp=27ae64aac589ba577578fb874fcafdffe8557b40;hb=da44da6f31f97d39ca91c35955e573e76371f2c2;hpb=a78b741c43830c84bcb4d18e3147746f13a668e5 diff --git a/src/lib/encoder.h b/src/lib/encoder.h index 27ae64aac..19c1120b3 100644 --- a/src/lib/encoder.h +++ b/src/lib/encoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2016 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,98 +18,52 @@ */ + #ifndef DCPOMATIC_ENCODER_H #define DCPOMATIC_ENCODER_H -/** @file src/encoder.h - * @brief Encoder class. - */ -#include "util.h" -#include "cross.h" -#include "exception_store.h" -#include -#include -#include -#include -#include +#include "player_text.h" +#include "types.h" #include -#include -#include -#include + class Film; -class EncodeServerDescription; -class DCPVideo; -class Writer; +class Encoder; +class Player; class Job; class PlayerVideo; +class AudioBuffers; + /** @class Encoder - * @brief Class to manage encoding to JPEG2000. - * - * This class keeps a queue of frames to be encoded and distributes - * the work around threads and encoding servers. + * @brief Parent class for something that can encode a film into some format */ - -class Encoder : public boost::noncopyable, public ExceptionStore, public boost::enable_shared_from_this +class Encoder { public: - Encoder (boost::shared_ptr, boost::shared_ptr); - ~Encoder (); - - /** Called to indicate that a processing run is about to begin */ - void begin (); - - /** Called to pass a bit of video to be encoded as the next DCP frame */ - void encode (boost::shared_ptr f, DCPTime time); - - /** Called when a processing run has finished */ - void end (); + Encoder (std::shared_ptr film, std::weak_ptr job); + virtual ~Encoder () {} - float current_encoding_rate () const; - int video_frames_enqueued () const; + Encoder (Encoder const&) = delete; + Encoder& operator= (Encoder const&) = delete; - void servers_list_changed (); + virtual void go () = 0; -private: + /** @return the current frame rate over the last short while */ + virtual boost::optional current_rate () const { + return {}; + } - static void call_servers_list_changed (boost::weak_ptr encoder); + /** @return the number of frames that are done */ + virtual Frame frames_done () const = 0; + virtual bool finishing () const = 0; - void frame_done (); - - void encoder_thread (boost::optional); - void terminate_threads (); - - /** Film that we are encoding */ - boost::shared_ptr _film; - - /** Mutex for _time_history */ - mutable boost::mutex _state_mutex; - /** List of the times of completion of the last _history_size frames; - first is the most recently completed. - */ - std::list _time_history; - /** Number of frames that we should keep history for */ - static int const _history_size; - - /** Mutex for _threads */ - mutable boost::mutex _threads_mutex; - std::list _threads; - mutable boost::mutex _queue_mutex; - std::list > _queue; - /** condition to manage thread wakeups when we have nothing to do */ - boost::condition _empty_condition; - /** condition to manage thread wakeups when we have too much to do */ - boost::condition _full_condition; - - boost::shared_ptr _writer; - Waker _waker; - - boost::shared_ptr _last_player_video; - boost::optional _last_player_video_time; - - boost::signals2::scoped_connection _server_found_connection; +protected: + std::shared_ptr _film; + std::weak_ptr _job; + std::shared_ptr _player; }; + #endif