X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage.h;h=5c3931102af776c259965bf7fb9487a02370d193;hb=661de111c0dbc968ecb004eca5b26f8400b136f1;hp=2d9f322310c2c3e66d5a9d4e05f9c88deffb3b51;hpb=16e8c1c7222796246f74153bf294909c3efe57dc;p=dcpomatic.git diff --git a/src/lib/image.h b/src/lib/image.h index 2d9f32231..5c3931102 100644 --- a/src/lib/image.h +++ b/src/lib/image.h @@ -24,47 +24,49 @@ #ifndef DCPOMATIC_IMAGE_H #define DCPOMATIC_IMAGE_H -#include -#include -#include +#include "position.h" +#include "position_image.h" +#include "types.h" +#include extern "C" { #include #include } -#include -#include "util.h" -#include "position.h" +#include +#include +#include -class Scaler; +class Socket; -class Image : public libdcp::Image +class Image { public: - Image (AVPixelFormat, libdcp::Size, bool); + Image (AVPixelFormat, dcp::Size, bool); Image (AVFrame *); Image (Image const &); Image (boost::shared_ptr, bool); Image& operator= (Image const &); ~Image (); - uint8_t ** data () const; + uint8_t * const * data () const; int * line_size () const; - int * stride () const; - libdcp::Size size () const; + int const * stride () const; + dcp::Size size () const; bool aligned () const; int components () const; int line_factor (int) const; int lines (int) const; - boost::shared_ptr scale (libdcp::Size, Scaler const *, AVPixelFormat, bool aligned) const; + boost::shared_ptr scale (dcp::Size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat, bool aligned) const; boost::shared_ptr crop (Crop c, bool aligned) const; - - boost::shared_ptr crop_scale_window (Crop c, libdcp::Size, libdcp::Size, Scaler const *, AVPixelFormat, bool aligned) const; + boost::shared_ptr crop_scale_window (Crop c, dcp::Size, dcp::Size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat, bool aligned) const; void make_black (); + void make_transparent (); void alpha_blend (boost::shared_ptr image, Position pos); void copy (boost::shared_ptr image, Position pos); + void fade (float); void read_from_socket (boost::shared_ptr); void write_to_socket (boost::shared_ptr) const; @@ -73,15 +75,18 @@ public: return _pixel_format; } + std::string digest () const; + private: - friend class pixel_formats_test; + friend struct pixel_formats_test; void allocate (); void swap (Image &); float bytes_per_pixel (int) const; void yuv_16_black (uint16_t, bool); static uint16_t swap_16 (uint16_t); - + + dcp::Size _size; AVPixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image 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) @@ -89,4 +94,7 @@ private: bool _aligned; }; +extern PositionImage merge (std::list images); +extern bool operator== (Image const & a, Image const & b); + #endif