Barely-functioning GL playback with new arrangement.
[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/colour_conversion.h>
35 #include <boost/shared_ptr.hpp>
36 #include <boost/enable_shared_from_this.hpp>
37
38 struct AVFrame;
39 class Socket;
40
41 class Image : public boost::enable_shared_from_this<Image>
42 {
43 public:
44         Image (AVPixelFormat p, dcp::Size s, bool aligned);
45         explicit Image (AVFrame *);
46         explicit Image (Image const &);
47         Image (boost::shared_ptr<const Image>, bool);
48         Image& operator= (Image const &);
49         ~Image ();
50
51         uint8_t * const * data () const;
52         int const * line_size () const;
53         int const * stride () const;
54         dcp::Size size () const;
55         bool aligned () const;
56
57         int planes () const;
58         int vertical_factor (int) const;
59         int horizontal_factor (int) const;
60         dcp::Size sample_size (int) const;
61         float bytes_per_pixel (int) const;
62
63         boost::shared_ptr<Image> convert_pixel_format (dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool aligned, bool fast) const;
64         boost::shared_ptr<Image> scale (dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool aligned, bool fast) const;
65         boost::shared_ptr<Image> crop_scale_window (
66                 Crop crop, dcp::Size inter_size, dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, VideoRange video_range, AVPixelFormat out_format, bool aligned, bool fast
67                 ) const;
68
69         void make_black ();
70         void make_transparent ();
71         void alpha_blend (boost::shared_ptr<const Image> image, Position<int> pos);
72         void copy (boost::shared_ptr<const Image> image, Position<int> pos);
73         void fade (float);
74
75         void read_from_socket (boost::shared_ptr<Socket>);
76         void write_to_socket (boost::shared_ptr<Socket>) const;
77
78         AVPixelFormat pixel_format () const {
79                 return _pixel_format;
80         }
81
82         size_t memory_used () const;
83
84         dcp::Data as_png () const;
85
86         void png_error (char const * message);
87
88         static boost::shared_ptr<const Image> ensure_aligned (boost::shared_ptr<const Image> image);
89
90 private:
91         friend struct pixel_formats_test;
92
93         void allocate ();
94         void swap (Image &);
95         void make_part_black (int x, int w);
96         void yuv_16_black (uint16_t, bool);
97         static uint16_t swap_16 (uint16_t);
98
99         dcp::Size _size;
100         AVPixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image
101         uint8_t** _data; ///< array of pointers to components
102         int* _line_size; ///< array of sizes of the data in each line, in bytes (without any alignment padding bytes)
103         int* _stride; ///< array of strides for each line, in bytes (including any alignment padding bytes)
104         bool _aligned;
105 };
106
107 extern PositionImage merge (std::list<PositionImage> images);
108 extern bool operator== (Image const & a, Image const & b);
109
110 #endif