Bump version
[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 "image_proxy.h"
27 #include "film.h"
28 #include "exceptions.h"
29
30 #include "i18n.h"
31
32 using std::cout;
33 using boost::shared_ptr;
34 using libdcp::Size;
35
36 ImageDecoder::ImageDecoder (shared_ptr<const Film> f, shared_ptr<const ImageContent> c)
37         : Decoder (f)
38         , VideoDecoder (f, c)
39         , _image_content (c)
40 {
41
42 }
43
44 void
45 ImageDecoder::pass ()
46 {
47         if (_video_position >= _image_content->video_length ()) {
48                 return;
49         }
50
51         if (_image && _image_content->still ()) {
52                 video (_image, true, _video_position);
53                 return;
54         }
55
56         _image.reset (new MagickImageProxy (_image_content->path (_image_content->still() ? 0 : _video_position)));
57         video (_image, false, _video_position);
58 }
59
60 void
61 ImageDecoder::seek (VideoContent::Frame frame, bool)
62 {
63         _video_position = frame;
64 }
65
66 bool
67 ImageDecoder::done () const
68 {
69         return _video_position >= _image_content->video_length ();
70 }