Put Image in dcpomatic:: to avoid Fastvideo name clash.
[dcpomatic.git] / src / lib / filter_graph.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/lib/filter_graph.h
22  *  @brief A graph of FFmpeg filters.
23  */
24
25 #ifndef DCPOMATIC_FILTER_GRAPH_H
26 #define DCPOMATIC_FILTER_GRAPH_H
27
28 #include "util.h"
29 extern "C" {
30 #include <libavfilter/buffersink.h>
31 }
32
33 struct AVFilterContext;
34 struct AVFrame;
35 class Filter;
36
37 /** @class FilterGraph
38  *  @brief A graph of FFmpeg filters.
39  */
40 class FilterGraph : public boost::noncopyable
41 {
42 public:
43         FilterGraph ();
44         virtual ~FilterGraph ();
45
46         void setup (std::vector<Filter const *>);
47         AVFilterContext* get (std::string name);
48
49 protected:
50         virtual std::string src_parameters () const = 0;
51         virtual std::string src_name () const = 0;
52         virtual void* sink_parameters () const = 0;
53         virtual std::string sink_name () const = 0;
54
55         AVFilterGraph* _graph;
56         /** true if this graph has no filters in, so it just copies stuff straight through */
57         bool _copy;
58         AVFilterContext* _buffer_src_context;
59         AVFilterContext* _buffer_sink_context;
60         AVFrame* _frame;
61 };
62
63 #endif