Merge master and multifarious hackery.
[dcpomatic.git] / src / lib / imagemagick_decoder.h
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 "video_decoder.h"
21
22 namespace Magick {
23         class Image;
24 }
25
26 class ImageMagickContent;
27
28 class ImageMagickDecoder : public VideoDecoder
29 {
30 public:
31         ImageMagickDecoder (boost::shared_ptr<const Film>, boost::shared_ptr<const ImageMagickContent>);
32
33         /* Decoder */
34
35         void pass ();
36         void seek (Time);
37         void seek_back ();
38         void seek_forward ();
39         Time next () const;
40
41         /* VideoDecoder */
42
43         float video_frame_rate () const;
44         libdcp::Size video_size () const;
45         ContentVideoFrame video_length () const;
46
47         /* ImageMagickDecoder */
48
49         boost::shared_ptr<const ImageMagickContent> content () const {
50                 return _imagemagick_content;
51         }
52
53 private:
54         boost::shared_ptr<const ImageMagickContent> _imagemagick_content;
55         boost::shared_ptr<Image> _image;
56         mutable boost::optional<libdcp::Size> _video_size;
57 };