Use dcp::file_to_string().
[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 "util.h"
32 #include "warnings.h"
33 DCPOMATIC_DISABLE_WARNINGS
34 extern "C" {
35 #include <libavfilter/buffersink.h>
36 }
37 DCPOMATIC_ENABLE_WARNINGS
38
39
40 struct AVFilterContext;
41 struct AVFrame;
42 class Image;
43 class Filter;
44
45
46 /** @class FilterGraph
47  *  @brief A graph of FFmpeg filters.
48  */
49 class FilterGraph
50 {
51 public:
52         FilterGraph() = default;
53         virtual ~FilterGraph ();
54
55         FilterGraph (FilterGraph const&) = delete;
56         FilterGraph& operator== (FilterGraph const&) = delete;
57
58         void setup (std::vector<Filter const *>);
59         AVFilterContext* get (std::string name);
60
61 protected:
62         virtual std::string src_parameters () const = 0;
63         virtual std::string src_name () const = 0;
64         virtual void set_parameters (AVFilterContext* context) const = 0;
65         virtual std::string sink_name () const = 0;
66
67         AVFilterGraph* _graph = nullptr;
68         /** true if this graph has no filters in, so it just copies stuff straight through */
69         bool _copy = false;
70         AVFilterContext* _buffer_src_context = nullptr;
71         AVFilterContext* _buffer_sink_context = nullptr;
72         AVFrame* _frame = nullptr;
73 };
74
75
76 #endif