First cut at J2K import.
[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 "magick_image_proxy.h"
27 #include "j2k_image_proxy.h"
28 #include "film.h"
29 #include "exceptions.h"
30
31 #include "i18n.h"
32
33 using std::cout;
34 using boost::shared_ptr;
35 using dcp::Size;
36
37 ImageDecoder::ImageDecoder (shared_ptr<const ImageContent> c)
38         : VideoDecoder (c)
39         , _image_content (c)
40 {
41
42 }
43
44 bool
45 ImageDecoder::pass ()
46 {
47         if (_video_position >= _image_content->video_length().frames (_image_content->video_frame_rate ())) {
48                 return true;
49         }
50
51         if (!_image_content->still() || !_image) {
52                 /* Either we need an image or we are using moving images, so load one */
53                 boost::filesystem::path path = _image_content->path (_image_content->still() ? 0 : _video_position);
54                 if (valid_j2k_file (path)) {
55                         /* We can't extract image size from a JPEG2000 codestream without decoding it,
56                            so pass in the image content's size here.
57                         */
58                         _image.reset (new J2KImageProxy (path, _image_content->video_size ()));
59                 } else {
60                         _image.reset (new MagickImageProxy (path));
61                 }
62         }
63                 
64         video (_image, _video_position);
65         ++_video_position;
66         return false;
67 }
68
69 void
70 ImageDecoder::seek (ContentTime time, bool accurate)
71 {
72         VideoDecoder::seek (time, accurate);
73         _video_position = time.frames (_image_content->video_frame_rate ());
74 }