GPL boilerplate.
[dcpomatic.git] / src / lib / video_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 #ifndef DVDOMATIC_VIDEO_DECODER_H
21 #define DVDOMATIC_VIDEO_DECODER_H
22
23 #include "video_source.h"
24 #include "stream.h"
25 #include "decoder.h"
26
27 class VideoDecoder : public VideoSource, public virtual Decoder
28 {
29 public:
30         VideoDecoder (boost::shared_ptr<Film>, boost::shared_ptr<const Options>, Job *);
31
32         /** @return video frames per second, or 0 if unknown */
33         virtual float frames_per_second () const = 0;
34         /** @return native size in pixels */
35         virtual Size native_size () const = 0;
36
37         virtual int time_base_numerator () const = 0;
38         virtual int time_base_denominator () const = 0;
39         virtual int sample_aspect_ratio_numerator () const = 0;
40         virtual int sample_aspect_ratio_denominator () const = 0;
41
42         virtual void set_subtitle_stream (boost::optional<SubtitleStream>);
43
44         SourceFrame video_frame () const {
45                 return _video_frame;
46         }
47
48         boost::optional<SubtitleStream> subtitle_stream () const {
49                 return _subtitle_stream;
50         }
51
52         std::vector<SubtitleStream> subtitle_streams () const {
53                 return _subtitle_streams;
54         }
55
56 protected:
57         
58         virtual PixelFormat pixel_format () const = 0;
59         void set_progress () const;
60
61         void emit_video (boost::shared_ptr<Image>);
62         void emit_subtitle (boost::shared_ptr<TimedSubtitle>);
63         void repeat_last_video ();
64
65         boost::optional<SubtitleStream> _subtitle_stream;
66         std::vector<SubtitleStream> _subtitle_streams;
67
68 private:
69         void signal_video (boost::shared_ptr<Image>, boost::shared_ptr<Subtitle>);
70
71         SourceFrame _video_frame;
72
73         boost::shared_ptr<TimedSubtitle> _timed_subtitle;
74
75         boost::shared_ptr<Image> _last_image;
76         boost::shared_ptr<Subtitle> _last_subtitle;
77 };
78
79 #endif