Various bits.
[dcpomatic.git] / src / lib / imagemagick_decoder.cc
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 #include <iostream>
21 #include <boost/filesystem.hpp>
22 #include <Magick++.h>
23 #include "imagemagick_content.h"
24 #include "imagemagick_decoder.h"
25 #include "image.h"
26 #include "film.h"
27 #include "exceptions.h"
28
29 #include "i18n.h"
30
31 using std::cout;
32 using boost::shared_ptr;
33 using libdcp::Size;
34
35 ImageMagickDecoder::ImageMagickDecoder (shared_ptr<const Film> f, shared_ptr<const ImageMagickContent> c)
36         : Decoder (f)
37         , VideoDecoder (f)
38         , _imagemagick_content (c)
39         , _position (0)
40 {
41         
42 }
43
44 libdcp::Size
45 ImageMagickDecoder::native_size () const
46 {
47         using namespace MagickCore;
48         Magick::Image* image = new Magick::Image (_imagemagick_content->file().string());
49         libdcp::Size const s = libdcp::Size (image->columns(), image->rows());
50         delete image;
51
52         return s;
53 }
54
55 bool
56 ImageMagickDecoder::pass ()
57 {
58         if (_position > 0 && _position < _imagemagick_content->video_length ()) {
59                 repeat_last_video ();
60                 _position++;
61                 return false;
62         } else if (_position >= _imagemagick_content->video_length ()) {
63                 return true;
64         }
65         
66         Magick::Image* magick_image = new Magick::Image (_imagemagick_content->file().string ());
67         
68         libdcp::Size size = native_size ();
69         shared_ptr<Image> image (new SimpleImage (PIX_FMT_RGB24, size, false));
70
71         using namespace MagickCore;
72         
73         uint8_t* p = image->data()[0];
74         for (int y = 0; y < size.height; ++y) {
75                 for (int x = 0; x < size.width; ++x) {
76                         Magick::Color c = magick_image->pixelColor (x, y);
77                         *p++ = c.redQuantum() * 255 / QuantumRange;
78                         *p++ = c.greenQuantum() * 255 / QuantumRange;
79                         *p++ = c.blueQuantum() * 255 / QuantumRange;
80                 }
81         }
82
83         delete magick_image;
84
85         image = image->crop (_film->crop(), true);
86         
87         emit_video (image, 0);
88
89         ++_position;
90         return false;
91 }
92
93 PixelFormat
94 ImageMagickDecoder::pixel_format () const
95 {
96         /* XXX: always true? */
97         return PIX_FMT_RGB24;
98 }
99
100 bool
101 ImageMagickDecoder::seek_to_last ()
102 {
103         if (_position > 0) {
104                 --_position;
105         }
106
107         return false;
108 }
109
110 bool
111 ImageMagickDecoder::seek (double t)
112 {
113         int const f = t * _imagemagick_content->video_frame_rate ();
114
115         if (f >= _imagemagick_content->video_length()) {
116                 _position = 0;
117                 return true;
118         }
119
120         _position = f;
121         return false;
122 }
123
124 void
125 ImageMagickDecoder::film_changed (Film::Property p)
126 {
127         if (p == Film::CROP) {
128                 OutputChanged ();
129         }
130 }