Improve FFmpeg sync, in theory.
[dcpomatic.git] / src / lib / imagemagick_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 "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 (c)
39 {
40
41 }
42
43 void
44 ImageMagickDecoder::pass ()
45 {
46         if (_video_position >= _imagemagick_content->video_length ()) {
47                 return;
48         }
49
50         if (_image) {
51                 video (_image, true, _video_position);
52                 return;
53         }
54
55         Magick::Image* magick_image = new Magick::Image (_imagemagick_content->file().string ());
56         _video_size = libdcp::Size (magick_image->columns(), magick_image->rows());
57         
58         _image.reset (new SimpleImage (PIX_FMT_RGB24, _video_size.get(), false));
59
60         using namespace MagickCore;
61         
62         uint8_t* p = _image->data()[0];
63         for (int y = 0; y < _video_size->height; ++y) {
64                 for (int x = 0; x < _video_size->width; ++x) {
65                         Magick::Color c = magick_image->pixelColor (x, y);
66                         *p++ = c.redQuantum() * 255 / QuantumRange;
67                         *p++ = c.greenQuantum() * 255 / QuantumRange;
68                         *p++ = c.blueQuantum() * 255 / QuantumRange;
69                 }
70         }
71
72         delete magick_image;
73
74         video (_image, false, _video_position);
75 }
76
77 void
78 ImageMagickDecoder::seek (VideoContent::Frame frame)
79 {
80         _video_position = frame;
81 }
82
83 void
84 ImageMagickDecoder::seek_back ()
85 {
86         if (_video_position > 0) {
87                 _video_position--;
88         }
89 }
90
91 bool
92 ImageMagickDecoder::done () const
93 {
94         return _video_position >= _imagemagick_content->video_length ();
95 }