Bump version
[dcpomatic.git] / src / lib / 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 /** @file  src/decoder.h
21  *  @brief Parent class for decoders of content.
22  */
23
24 #ifndef DVDOMATIC_DECODER_H
25 #define DVDOMATIC_DECODER_H
26
27 #include <vector>
28 #include <string>
29 #include <stdint.h>
30 #include <boost/shared_ptr.hpp>
31 #include <boost/signals2.hpp>
32 #include "util.h"
33 #include "stream.h"
34 #include "video_source.h"
35 #include "audio_source.h"
36 #include "film.h"
37 #include "options.h"
38
39 class Image;
40 class Log;
41 class DelayLine;
42 class TimedSubtitle;
43 class Subtitle;
44 class FilterGraph;
45
46 /** @class Decoder.
47  *  @brief Parent class for decoders of content.
48  *
49  *  These classes can be instructed run through their content (by
50  *  calling ::go), and they emit signals when video or audio data is
51  *  ready for something else to process.
52  */
53 class Decoder
54 {
55 public:
56         Decoder (boost::shared_ptr<Film>, DecodeOptions);
57         virtual ~Decoder () {}
58
59         virtual bool pass () = 0;
60         virtual bool seek (double);
61         virtual bool seek_to_last ();
62         virtual void seek_back () {}
63         virtual void seek_forward () {}
64
65         boost::signals2::signal<void()> OutputChanged;
66
67 protected:
68         /** our Film */
69         boost::shared_ptr<Film> _film;
70         /** our decode options */
71         DecodeOptions _opt;
72
73 private:
74         virtual void film_changed (Film::Property) {}
75         
76         boost::signals2::scoped_connection _film_connection;
77 };
78
79 #endif