Split timed from untimed sinks / sources. Should produce same output, in theory.
[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_decoder.h"
24 #include "image.h"
25 #include "film.h"
26 #include "exceptions.h"
27
28 #include "i18n.h"
29
30 using std::cout;
31 using boost::shared_ptr;
32 using libdcp::Size;
33
34 ImageMagickDecoder::ImageMagickDecoder (
35         boost::shared_ptr<Film> f, DecodeOptions o)
36         : Decoder (f, o)
37         , VideoDecoder (f, o)
38 {
39         if (boost::filesystem::is_directory (_film->content_path())) {
40                 for (
41                         boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (_film->content_path());
42                         i != boost::filesystem::directory_iterator();
43                         ++i) {
44
45                         if (still_image_file (i->path().string())) {
46                                 _files.push_back (i->path().string());
47                         }
48                 }
49         } else {
50                 _files.push_back (_film->content_path ());
51         }
52
53         _iter = _files.begin ();
54 }
55
56 libdcp::Size
57 ImageMagickDecoder::native_size () const
58 {
59         if (_files.empty ()) {
60                 throw DecodeError (_("no still image files found"));
61         }
62
63         /* Look at the first file and assume its size holds for all */
64         using namespace MagickCore;
65         Magick::Image* image = new Magick::Image (_film->content_path ());
66         libdcp::Size const s = libdcp::Size (image->columns(), image->rows());
67         delete image;
68
69         return s;
70 }
71
72 bool
73 ImageMagickDecoder::pass ()
74 {
75         if (_iter == _files.end()) {
76                 if (video_frame() >= _film->still_duration_in_frames()) {
77                         return true;
78                 }
79
80                 /* XXX: timestamp is wrong */
81                 repeat_last_video (0);
82                 return false;
83         }
84         
85         Magick::Image* magick_image = new Magick::Image (_film->content_path ());
86         
87         libdcp::Size size = native_size ();
88         shared_ptr<Image> image (new SimpleImage (PIX_FMT_RGB24, size, false));
89
90         using namespace MagickCore;
91         
92         uint8_t* p = image->data()[0];
93         for (int y = 0; y < size.height; ++y) {
94                 for (int x = 0; x < size.width; ++x) {
95                         Magick::Color c = magick_image->pixelColor (x, y);
96                         *p++ = c.redQuantum() * 255 / QuantumRange;
97                         *p++ = c.greenQuantum() * 255 / QuantumRange;
98                         *p++ = c.blueQuantum() * 255 / QuantumRange;
99                 }
100         }
101
102         delete magick_image;
103
104         image = image->crop (_film->crop(), true);
105         
106         emit_video (image, 0);
107
108         ++_iter;
109         return false;
110 }
111
112 PixelFormat
113 ImageMagickDecoder::pixel_format () const
114 {
115         /* XXX: always true? */
116         return PIX_FMT_RGB24;
117 }
118
119 bool
120 ImageMagickDecoder::seek_to_last ()
121 {
122         if (_iter == _files.end()) {
123                 _iter = _files.begin();
124         } else {
125                 --_iter;
126         }
127
128         return false;
129 }
130
131 bool
132 ImageMagickDecoder::seek (double t)
133 {
134         int const f = t * frames_per_second();
135         
136         _iter = _files.begin ();
137         for (int i = 0; i < f; ++i) {
138                 if (_iter == _files.end()) {
139                         return true;
140                 }
141                 ++_iter;
142         }
143         
144         return false;
145 }
146
147 void
148 ImageMagickDecoder::film_changed (Film::Property p)
149 {
150         if (p == Film::CROP) {
151                 OutputChanged ();
152         }
153 }