5dfcab6f0c92439d42b7a45c54003910da46f20d
[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 ImageMagickDecoder : public VideoDecoder
27 {
28 public:
29         ImageMagickDecoder (boost::shared_ptr<Film>, DecodeOptions, Job *);
30
31         float frames_per_second () const {
32                 /* We don't know */
33                 return 0;
34         }
35
36         Size native_size () const;
37
38         SourceFrame length () const {
39                 /* We don't know */
40                 return 0;
41         }
42
43         int audio_channels () const {
44                 return 0;
45         }
46
47         int audio_sample_rate () const {
48                 return 0;
49         }
50
51         int64_t audio_channel_layout () const {
52                 return 0;
53         }
54
55         bool has_subtitles () const {
56                 return false;
57         }
58
59         bool seek (double);
60         bool seek_to_last ();
61
62 protected:
63         bool pass ();
64         PixelFormat pixel_format () const;
65
66         int time_base_numerator () const {
67                 return 0;
68         }
69
70         int time_base_denominator () const {
71                 return 0;
72         }
73
74         int sample_aspect_ratio_numerator () const {
75                 /* XXX */
76                 return 1;
77         }
78
79         int sample_aspect_ratio_denominator () const {
80                 /* XXX */
81                 return 1;
82         }
83
84 private:
85         void film_changed (Film::Property);
86         
87         std::list<std::string> _files;
88         std::list<std::string>::iterator _iter;
89 };