Fix crash when alpha-blending subtitles onto YUV420 images.
[dcpomatic.git] / src / lib / image.h
index cdad28c20214ff38f71dcce743d19126ac2c36fa..9a5a7dae8c961c90756ee439beda9fe774ad010c 100644 (file)
@@ -54,8 +54,10 @@ public:
        bool aligned () const;
 
        int planes () const;
-       int line_factor (int) const;
+       int vertical_factor (int) const;
+       int horizontal_factor (int) const;
        dcp::Size sample_size (int) const;
+       float bytes_per_pixel (int) const;
 
        boost::shared_ptr<Image> scale (dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool aligned, bool fast) const;
        boost::shared_ptr<Image> crop_scale_window (
@@ -75,12 +77,13 @@ public:
                return _pixel_format;
        }
 
+       static boost::shared_ptr<Image> ensure_aligned (boost::shared_ptr<Image> image);
+
 private:
        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);