X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_video_frame.h;h=bf0b7f8c4614da1237f91adada7e30ba002a907f;hb=56139fd8f98ad306c32567c4b8070fe7ff18ab1e;hp=ba49c95a43364a125452c8e515aa33c7d8737dda;hpb=996b0c06e23bcb6b300d7b8799df94993692e07d;p=dcpomatic.git diff --git a/src/lib/dcp_video_frame.h b/src/lib/dcp_video_frame.h index ba49c95a4..bf0b7f8c4 100644 --- a/src/lib/dcp_video_frame.h +++ b/src/lib/dcp_video_frame.h @@ -20,6 +20,7 @@ #include #include +#include #include "util.h" /** @file src/dcp_video_frame.h @@ -36,7 +37,7 @@ class Subtitle; /** @class EncodedData * @brief Container for J2K-encoded data. */ -class EncodedData +class EncodedData : public boost::noncopyable { public: /** @param s Size of data, in bytes */ @@ -47,8 +48,8 @@ public: virtual ~EncodedData (); void send (boost::shared_ptr socket); - void write (boost::shared_ptr, int) const; - void write_info (boost::shared_ptr, int, libdcp::FrameInfo) const; + void write (boost::shared_ptr, int, Eyes) const; + void write_info (boost::shared_ptr, int, Eyes, libdcp::FrameInfo) const; /** @return data */ uint8_t* data () const { @@ -62,11 +63,7 @@ public: protected: uint8_t* _data; ///< data - int _size; ///< data size in bytes - -private: - /* No copy construction */ - EncodedData (EncodedData const &); + int _size; ///< data size in bytes }; /** @class LocallyEncodedData @@ -102,43 +99,33 @@ public: * Objects of this class are used for the queue that we keep * of images that require encoding. */ -class DCPVideoFrame +class DCPVideoFrame : public boost::noncopyable { public: - DCPVideoFrame ( - boost::shared_ptr, boost::shared_ptr, libdcp::Size, - int, int, float, Scaler const *, int, int, int, int, boost::shared_ptr - ); - - virtual ~DCPVideoFrame (); + DCPVideoFrame (boost::shared_ptr, int, Eyes, ColourConversion, int, int, boost::shared_ptr); + DCPVideoFrame (boost::shared_ptr, boost::shared_ptr, boost::shared_ptr); boost::shared_ptr encode_locally (); - boost::shared_ptr encode_remotely (ServerDescription const *); + boost::shared_ptr encode_remotely (ServerDescription); + Eyes eyes () const { + return _eyes; + } + int frame () const { return _frame; } private: - void create_openjpeg_container (); - - boost::shared_ptr _input; ///< the input image - boost::shared_ptr _subtitle; ///< any subtitle that should be on the image - libdcp::Size _out_size; ///< the required size of the output, in pixels - int _padding; - int _subtitle_offset; - float _subtitle_scale; - Scaler const * _scaler; ///< scaler to use - int _frame; ///< frame index within the DCP's intrinsic duration - int _frames_per_second; ///< Frames per second that we will use for the DCP - int _colour_lut; ///< Colour look-up table to use - int _j2k_bandwidth; ///< J2K bandwidth to use - boost::shared_ptr _log; ///< log + void add_metadata (xmlpp::Element *) const; + + boost::shared_ptr _image; + int _frame; ///< frame index within the DCP's intrinsic duration + Eyes _eyes; + ColourConversion _conversion; + int _frames_per_second; ///< Frames per second that we will use for the DCP + int _j2k_bandwidth; ///< J2K bandwidth to use - opj_image_cmptparm_t _cmptparm[3]; ///< libopenjpeg's opj_image_cmptparm_t - opj_image* _image; ///< libopenjpeg's image container - opj_cparameters_t* _parameters; ///< libopenjpeg's parameters - opj_cinfo_t* _cinfo; ///< libopenjpeg's opj_cinfo_t - opj_cio_t* _cio; ///< libopenjpeg's opj_cio_t + boost::shared_ptr _log; ///< log };