Subs successfully exported with thumbs.
[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 "decoder.h"
21
22 namespace Magick {
23         class Image;
24 }
25
26 class ImageMagickDecoder : public Decoder
27 {
28 public:
29         ImageMagickDecoder (boost::shared_ptr<const FilmState>, boost::shared_ptr<const Options>, Job *, Log *, bool, bool);
30
31         int length_in_frames () const {
32                 return 1;
33         }
34
35         float frames_per_second () const {
36                 return static_frames_per_second ();
37         }
38
39         Size native_size () const;
40
41         int audio_channels () const {
42                 return 0;
43         }
44
45         int audio_sample_rate () const {
46                 return 0;
47         }
48
49         AVSampleFormat audio_sample_format () const {
50                 return AV_SAMPLE_FMT_NONE;
51         }
52
53         int64_t audio_channel_layout () const {
54                 return 0;
55         }
56
57         bool has_subtitles () const {
58                 return false;
59         }
60
61         static float static_frames_per_second () {
62                 return 24;
63         }
64
65 protected:
66         bool do_pass ();
67         PixelFormat pixel_format () const;
68
69         int time_base_numerator () const {
70                 return 0;
71         }
72
73         int time_base_denominator () const {
74                 return 0;
75         }
76
77         int sample_aspect_ratio_numerator () const {
78                 /* XXX */
79                 return 1;
80         }
81
82         int sample_aspect_ratio_denominator () const {
83                 /* XXX */
84                 return 1;
85         }
86
87 private:
88         Magick::Image* _magick_image;
89         bool _done;
90 };