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