Fix crashes when using templates in some cases (#2491).
[dcpomatic.git] / src / lib / filter_graph.h
1 /*
2     Copyright (C) 2012-2021 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
22 /** @file src/lib/filter_graph.h
23  *  @brief A graph of FFmpeg filters.
24  */
25
26
27 #ifndef DCPOMATIC_FILTER_GRAPH_H
28 #define DCPOMATIC_FILTER_GRAPH_H
29
30
31 #include <dcp/warnings.h>
32 LIBDCP_DISABLE_WARNINGS
33 extern "C" {
34 #include <libavfilter/buffersink.h>
35 }
36 LIBDCP_ENABLE_WARNINGS
37 #include <string>
38 #include <vector>
39
40
41 struct AVFilterContext;
42 struct AVFrame;
43 class Image;
44 class Filter;
45
46
47 /** @class FilterGraph
48  *  @brief A graph of FFmpeg filters.
49  */
50 class FilterGraph
51 {
52 public:
53         FilterGraph() = default;
54         virtual ~FilterGraph ();
55
56         FilterGraph (FilterGraph const&) = delete;
57         FilterGraph& operator== (FilterGraph const&) = delete;
58
59         void setup (std::vector<Filter const *>);
60         AVFilterContext* get (std::string name);
61
62 protected:
63         virtual std::string src_parameters () const = 0;
64         virtual std::string src_name () const = 0;
65         virtual void set_parameters (AVFilterContext* context) const = 0;
66         virtual std::string sink_name () const = 0;
67
68         AVFilterGraph* _graph = nullptr;
69         /** true if this graph has no filters in, so it just copies stuff straight through */
70         bool _copy = false;
71         AVFilterContext* _buffer_src_context = nullptr;
72         AVFilterContext* _buffer_sink_context = nullptr;
73         AVFrame* _frame = nullptr;
74 };
75
76
77 #endif