std::shared_ptr
[dcpomatic.git] / src / lib / image.h
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/image.h
22  *  @brief A set of classes to describe video images.
23  */
24
25 #ifndef DCPOMATIC_IMAGE_H
26 #define DCPOMATIC_IMAGE_H
27
28 #include "position.h"
29 #include "position_image.h"
30 #include "types.h"
31 extern "C" {
32 #include <libavutil/pixfmt.h>
33 }
34 #include <dcp/array_data.h>
35 #include <dcp/colour_conversion.h>
36
37 struct AVFrame;
38 class Socket;
39
40 class Image : public std::enable_shared_from_this<Image>
41 {
42 public:
43         Image (AVPixelFormat p, dcp::Size s, bool aligned);
44         explicit Image (AVFrame *);
45         explicit Image (Image const &);
46         Image (std::shared_ptr<const Image>, bool);
47         Image& operator= (Image const &);
48         ~Image ();
49
50         uint8_t * const * data () const;
51         /** @return array of sizes of the data in each line, in bytes (not including any alignment padding) */
52         int const * line_size () const;
53         /** @return array of sizes of the data in each line, in bytes (including any alignment padding) */
54         int const * stride () const;
55         dcp::Size size () const;
56         bool aligned () const;
57
58         int planes () const;
59         int vertical_factor (int) const;
60         int horizontal_factor (int) const;
61         dcp::Size sample_size (int) const;
62         float bytes_per_pixel (int) const;
63
64         std::shared_ptr<Image> convert_pixel_format (dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool aligned, bool fast) const;
65         std::shared_ptr<Image> scale (dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool aligned, bool fast) const;
66         std::shared_ptr<Image> crop_scale_window (
67                 Crop crop,
68                 dcp::Size inter_size,
69                 dcp::Size out_size,
70                 dcp::YUVToRGB yuv_to_rgb,
71                 VideoRange video_range,
72                 AVPixelFormat out_format,
73                 VideoRange out_video_range,
74                 bool aligned,
75                 bool fast
76                 ) const;
77
78         void make_black ();
79         void make_transparent ();
80         void alpha_blend (std::shared_ptr<const Image> image, Position<int> pos);
81         void copy (std::shared_ptr<const Image> image, Position<int> pos);
82         void fade (float);
83         void video_range_to_full_range ();
84
85         void read_from_socket (std::shared_ptr<Socket>);
86         void write_to_socket (std::shared_ptr<Socket>) const;
87
88         AVPixelFormat pixel_format () const {
89                 return _pixel_format;
90         }
91
92         size_t memory_used () const;
93
94         dcp::ArrayData as_png () const;
95
96         void png_error (char const * message);
97
98         static std::shared_ptr<const Image> ensure_aligned (std::shared_ptr<const Image> image);
99
100 private:
101         friend struct pixel_formats_test;
102
103         void allocate ();
104         void swap (Image &);
105         void make_part_black (int x, int w);
106         void yuv_16_black (uint16_t, bool);
107         static uint16_t swap_16 (uint16_t);
108
109         dcp::Size _size;
110         AVPixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image
111         uint8_t** _data; ///< array of pointers to components
112         int* _line_size; ///< array of sizes of the data in each line, in bytes (without any alignment padding bytes)
113         int* _stride; ///< array of strides for each line, in bytes (including any alignment padding bytes)
114         bool _aligned;
115 };
116
117 extern PositionImage merge (std::list<PositionImage> images);
118 extern bool operator== (Image const & a, Image const & b);
119
120 #endif