Merge branch 'master' into speed-up
[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         /** @return length (in source video frames), according to our content's header */
37         virtual SourceFrame length () const = 0;
38
39         virtual int time_base_numerator () const = 0;
40         virtual int time_base_denominator () const = 0;
41         virtual int sample_aspect_ratio_numerator () const = 0;
42         virtual int sample_aspect_ratio_denominator () const = 0;
43
44         virtual void set_subtitle_stream (boost::shared_ptr<SubtitleStream>);
45
46         void set_progress () const;
47         
48         SourceFrame video_frame () const {
49                 return _video_frame;
50         }
51
52         boost::shared_ptr<SubtitleStream> subtitle_stream () const {
53                 return _subtitle_stream;
54         }
55
56         std::vector<boost::shared_ptr<SubtitleStream> > subtitle_streams () const {
57                 return _subtitle_streams;
58         }
59
60 protected:
61         
62         virtual PixelFormat pixel_format () const = 0;
63
64         void emit_video (boost::shared_ptr<Image>);
65         void emit_subtitle (boost::shared_ptr<TimedSubtitle>);
66         void repeat_last_video ();
67
68         /** Subtitle stream to use when decoding */
69         boost::shared_ptr<SubtitleStream> _subtitle_stream;
70         /** Subtitle streams that this decoder's content has */
71         std::vector<boost::shared_ptr<SubtitleStream> > _subtitle_streams;
72
73 private:
74         void signal_video (boost::shared_ptr<Image>, boost::shared_ptr<Subtitle>);
75
76         SourceFrame _video_frame;
77
78         boost::shared_ptr<TimedSubtitle> _timed_subtitle;
79
80         boost::shared_ptr<Image> _last_image;
81         boost::shared_ptr<Subtitle> _last_subtitle;
82 };
83
84 #endif