Merge master.
[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 DCPOMATIC_IMAGE_H
25 #define DCPOMATIC_IMAGE_H
26
27 #include <string>
28 #include <boost/shared_ptr.hpp>
29 #include <boost/function.hpp>
30 extern "C" {
31 #include <libavcodec/avcodec.h>
32 #include <libavfilter/avfilter.h>
33 }
34 #include <dcp/image.h>
35 #include "util.h"
36 #include "position.h"
37 #include "position_image.h"
38
39 class Scaler;
40
41 class Image : public dcp::Image
42 {
43 public:
44         Image (AVPixelFormat, dcp::Size, bool);
45         Image (AVFrame *);
46         Image (Image const &);
47         Image (boost::shared_ptr<const Image>, bool);
48         Image& operator= (Image const &);
49         ~Image ();
50         
51         uint8_t ** data () const;
52         int * line_size () const;
53         int * stride () const;
54         dcp::Size size () const;
55         bool aligned () const;
56
57         int components () const;
58         int line_factor (int) const;
59         int lines (int) const;
60
61         boost::shared_ptr<Image> scale (dcp::Size, Scaler const *, AVPixelFormat, bool aligned) const;
62         boost::shared_ptr<Image> crop (Crop c, bool aligned) const;
63
64         boost::shared_ptr<Image> crop_scale_window (Crop c, dcp::Size, dcp::Size, Scaler const *, AVPixelFormat, bool aligned) const;
65         
66         void make_black ();
67         void make_transparent ();
68         void alpha_blend (boost::shared_ptr<const Image> image, Position<int> pos);
69         void copy (boost::shared_ptr<const Image> image, Position<int> pos);
70
71         void read_from_socket (boost::shared_ptr<Socket>);
72         void write_to_socket (boost::shared_ptr<Socket>) const;
73         
74         AVPixelFormat pixel_format () const {
75                 return _pixel_format;
76         }
77
78         std::string digest () const;
79
80 private:
81         friend class pixel_formats_test;
82         
83         void allocate ();
84         void swap (Image &);
85         float bytes_per_pixel (int) const;
86         void yuv_16_black (uint16_t, bool);
87         static uint16_t swap_16 (uint16_t);
88         
89         AVPixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image
90         uint8_t** _data; ///< array of pointers to components
91         int* _line_size; ///< array of sizes of the data in each line, in pixels (without any alignment padding bytes)
92         int* _stride; ///< array of strides for each line (including any alignment padding bytes)
93         bool _aligned;
94 };
95
96 extern PositionImage merge (std::list<PositionImage> images);
97
98 #endif