0161d2b01f9850b28f4deb47fc9a184e21f6b10f
[dcpomatic.git] / src / lib / image.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/image.h
21  *  @brief A set of classes to describe video images.
22  */
23
24 #ifndef DVDOMATIC_IMAGE_H
25 #define DVDOMATIC_IMAGE_H
26
27 #include <string>
28 #include <boost/shared_ptr.hpp>
29 extern "C" {
30 #include <libavcodec/avcodec.h>
31 #include <libavfilter/avfilter.h>
32 }
33 #include "util.h"
34
35 class Scaler;
36 class RGBFrameImage;
37 class PostProcessImage;
38
39 /** @class Image
40  *  @brief Parent class for wrappers of some image, in some format, that
41  *  can present a set of components and a size in pixels.
42  *
43  *  This class also has some conversion / processing methods.
44  *
45  *  The main point of this class (and its subclasses) is to abstract
46  *  details of FFmpeg's memory management and varying data formats.
47  */
48 class Image
49 {
50 public:
51         Image (PixelFormat p)
52                 : _pixel_format (p)
53         {}
54         
55         virtual ~Image () {}
56
57         /** @return Array of pointers to arrays of the component data */
58         virtual uint8_t ** data () const = 0;
59
60         /** @return Array of sizes of each line, in pixels */
61         virtual int * line_size () const = 0;
62
63         /** @return Size of the image, in pixels */
64         virtual Size size () const = 0;
65
66         int components () const;
67         int lines (int) const;
68         boost::shared_ptr<RGBFrameImage> scale_and_convert_to_rgb (Size, int, Scaler const *) const;
69         boost::shared_ptr<PostProcessImage> post_process (std::string) const;
70         
71         void make_black ();
72         
73         PixelFormat pixel_format () const {
74                 return _pixel_format;
75         }
76
77 private:
78         PixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image
79 };
80
81 /** @class FilterBufferImage
82  *  @brief An Image that is held in an AVFilterBufferRef.
83  */
84 class FilterBufferImage : public Image
85 {
86 public:
87         FilterBufferImage (PixelFormat, AVFilterBufferRef *);
88         ~FilterBufferImage ();
89
90         uint8_t ** data () const;
91         int * line_size () const;
92         Size size () const;
93
94 private:
95         AVFilterBufferRef* _buffer;
96 };
97
98 /** @class SimpleImage
99  *  @brief An Image for which memory is allocated using a `simple' av_malloc().
100  */
101 class SimpleImage : public Image
102 {
103 public:
104         SimpleImage (PixelFormat, Size);
105         ~SimpleImage ();
106
107         uint8_t ** data () const;
108         int * line_size () const;
109         Size size () const;
110         
111         void set_line_size (int, int);
112
113 private:
114         Size _size; ///< size in pixels
115         uint8_t** _data; ///< array of pointers to components
116         int* _line_size; ///< array of widths of each line, in bytes
117 };
118
119 /** @class RGBFrameImage
120  *  @brief An RGB image that is held within an AVFrame.
121  */
122 class RGBFrameImage : public Image
123 {
124 public:
125         RGBFrameImage (Size);
126         ~RGBFrameImage ();
127
128         uint8_t ** data () const;
129         int * line_size () const;
130         Size size () const;
131         AVFrame * frame () const {
132                 return _frame;
133         }
134
135 private:
136         Size _size;
137         AVFrame* _frame;
138         uint8_t* _data;
139 };
140
141 /** @class PostProcessImage
142  *  @brief An image that is the result of an FFmpeg post-processing run.
143  */
144 class PostProcessImage : public Image
145 {
146 public:
147         PostProcessImage (PixelFormat, Size);
148         ~PostProcessImage ();
149
150         uint8_t ** data () const;
151         int * line_size () const;
152         Size size () const;
153
154 private:
155         Size _size;
156         uint8_t** _data;
157         int* _line_size;
158 };
159
160 #endif