X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage.h;h=de03d0e3f60485a8d316deb00cef21ad80bc92f7;hb=f861018389acd9d277fe34d7621182b9b54f977f;hp=3e16d43bfff220a4ceeb22a82b999976f35c054f;hpb=ade28a703b15af710161faa017cddf95d66c4118;p=dcpomatic.git diff --git a/src/lib/image.h b/src/lib/image.h index 3e16d43bf..de03d0e3f 100644 --- a/src/lib/image.h +++ b/src/lib/image.h @@ -21,16 +21,18 @@ * @brief A set of classes to describe video images. */ -#ifndef DVDOMATIC_IMAGE_H -#define DVDOMATIC_IMAGE_H +#ifndef DCPOMATIC_IMAGE_H +#define DCPOMATIC_IMAGE_H #include #include +#include extern "C" { #include #include } #include "util.h" +#include "ffmpeg_compatibility.h" class Scaler; class RGBFrameImage; @@ -48,7 +50,7 @@ class SimpleImage; class Image { public: - Image (PixelFormat p) + Image (AVPixelFormat p) : _pixel_format (p) {} @@ -64,23 +66,37 @@ public: virtual int * stride () const = 0; /** @return Size of the image, in pixels */ - virtual Size size () const = 0; + virtual libdcp::Size size () const = 0; + + virtual bool aligned () const = 0; int components () const; int lines (int) const; - boost::shared_ptr scale_and_convert_to_rgb (Size, int, Scaler const *) const; - boost::shared_ptr scale (Size, Scaler const *) const; - boost::shared_ptr post_process (std::string) const; - void alpha_blend (boost::shared_ptr image, Position pos); + + boost::shared_ptr scale_and_convert_to_rgb (libdcp::Size out_size, int padding, Scaler const * scaler, bool aligned) const; + boost::shared_ptr scale (libdcp::Size, Scaler const *, bool aligned) const; + boost::shared_ptr post_process (std::string, bool aligned) const; + void alpha_blend (boost::shared_ptr image, Position pos); + boost::shared_ptr crop (Crop c, bool aligned) const; void make_black (); + + void read_from_socket (boost::shared_ptr); + void write_to_socket (boost::shared_ptr) const; - PixelFormat pixel_format () const { + AVPixelFormat pixel_format () const { return _pixel_format; } +protected: + virtual void swap (Image &); + float bytes_per_pixel (int) const; + private: - PixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image + void yuv_16_black (uint16_t); + static uint16_t swap_16 (uint16_t); + + AVPixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image }; /** @class FilterBufferImage @@ -89,16 +105,22 @@ private: class FilterBufferImage : public Image { public: - FilterBufferImage (PixelFormat, AVFilterBufferRef *); + FilterBufferImage (AVPixelFormat, AVFilterBufferRef *); ~FilterBufferImage (); uint8_t ** data () const; int * line_size () const; int * stride () const; - Size size () const; + libdcp::Size size () const; + bool aligned () const; private: + /* Not allowed */ + FilterBufferImage (FilterBufferImage const &); + FilterBufferImage& operator= (FilterBufferImage const &); + AVFilterBufferRef* _buffer; + int* _line_size; }; /** @class SimpleImage @@ -107,43 +129,42 @@ private: class SimpleImage : public Image { public: - SimpleImage (PixelFormat, Size); + SimpleImage (AVPixelFormat, libdcp::Size, bool); + SimpleImage (SimpleImage const &); + SimpleImage (boost::shared_ptr); + SimpleImage& operator= (SimpleImage const &); ~SimpleImage (); uint8_t ** data () const; int * line_size () const; int * stride () const; - Size size () const; + libdcp::Size size () const; + bool aligned () const; + +protected: + void allocate (); + void swap (SimpleImage &); private: - Size _size; ///< size in pixels + libdcp::Size _size; ///< size in pixels uint8_t** _data; ///< array of pointers to components int* _line_size; ///< array of sizes of the data in each line, in pixels (without any alignment padding bytes) int* _stride; ///< array of strides for each line (including any alignment padding bytes) - + bool _aligned; }; -/** @class RGBFrameImage - * @brief An RGB image that is held within an AVFrame. - */ -class RGBFrameImage : public Image +class RGBPlusAlphaImage : public SimpleImage { public: - RGBFrameImage (Size); - ~RGBFrameImage (); + RGBPlusAlphaImage (boost::shared_ptr); + ~RGBPlusAlphaImage (); - uint8_t ** data () const; - int * line_size () const; - int * stride () const; - Size size () const; - AVFrame * frame () const { - return _frame; + uint8_t* alpha () const { + return _alpha; } - + private: - Size _size; - AVFrame* _frame; - uint8_t* _data; + uint8_t* _alpha; }; #endif