Merge master.
[dcpomatic.git] / src / lib / image_decoder.cc
1 /*
2     Copyright (C) 2012-2013 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 "image_content.h"
24 #include "image_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 dcp::Size;
34
35 ImageDecoder::ImageDecoder (shared_ptr<const ImageContent> c)
36         : VideoDecoder (c)
37         , _image_content (c)
38 {
39
40 }
41
42 bool
43 ImageDecoder::pass ()
44 {
45         if (_video_position >= _image_content->video_length ()) {
46                 return true;
47         }
48
49         if (_image && _image_content->still ()) {
50                 video (_image, true, _video_position);
51                 _video_position += ContentTime::from_frames (1, _image_content->video_frame_rate ());
52                 return false;
53         }
54
55         Magick::Image* magick_image = 0;
56
57         boost::filesystem::path const path = _image_content->path (
58                 _image_content->still() ? 0 : _video_position.frames (_image_content->video_frame_rate ())
59                 );
60         
61         try {
62                 magick_image = new Magick::Image (path.string ());
63         } catch (...) {
64                 throw OpenFileError (path);
65         }
66         
67         dcp::Size size (magick_image->columns(), magick_image->rows());
68
69         _image.reset (new Image (PIX_FMT_RGB24, size, true));
70
71         using namespace MagickCore;
72         
73         uint8_t* p = _image->data()[0];
74         for (int y = 0; y < size.height; ++y) {
75                 uint8_t* q = p;
76                 for (int x = 0; x < size.width; ++x) {
77                         Magick::Color c = magick_image->pixelColor (x, y);
78                         *q++ = c.redQuantum() * 255 / QuantumRange;
79                         *q++ = c.greenQuantum() * 255 / QuantumRange;
80                         *q++ = c.blueQuantum() * 255 / QuantumRange;
81                 }
82                 p += _image->stride()[0];
83         }
84
85         delete magick_image;
86
87         video (_image, false, _video_position);
88         _video_position += ContentTime::from_frames (1, _image_content->video_frame_rate ());
89
90         return false;
91 }
92
93 void
94 ImageDecoder::seek (ContentTime time, bool accurate)
95 {
96         Decoder::seek (time, accurate);
97         _video_position = time;
98 }