GPL boilerplate.
[dcpomatic.git] / src / lib / processor.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_PROCESSOR_H
21 #define DVDOMATIC_PROCESSOR_H
22
23 #include "video_source.h"
24 #include "video_sink.h"
25 #include "audio_source.h"
26 #include "audio_sink.h"
27
28 class Log;
29
30 class Processor
31 {
32 public:
33         Processor (Log* log)
34                 : _log (log)
35         {}
36         
37         virtual void process_begin () {}
38         virtual void process_end () {}
39
40 protected:
41         Log* _log;
42 };
43
44 class AudioVideoProcessor : public Processor, public VideoSource, public VideoSink, public AudioSource, public AudioSink
45 {
46 public:
47         AudioVideoProcessor (Log* log)
48                 : Processor (log)
49         {}
50 };
51
52 class AudioProcessor : public Processor, public AudioSource, public AudioSink
53 {
54 public:
55         AudioProcessor (Log* log)
56                 : Processor (log)
57         {}
58 };
59
60 class VideoProcessor : public Processor, public VideoSource, public VideoSink
61 {
62 public:
63         VideoProcessor (Log* log)
64                 : Processor (log)
65         {}
66 };
67
68 #endif