Remove use of boost::noncopyable.
[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 Image;
36 class Filter;
37
38 /** @class FilterGraph
39  *  @brief A graph of FFmpeg filters.
40  */
41 class FilterGraph
42 {
43 public:
44         FilterGraph ();
45         virtual ~FilterGraph ();
46
47         FilterGraph (FilterGraph const&) = delete;
48         FilterGraph& operator== (FilterGraph const&) = delete;
49
50         void setup (std::vector<Filter const *>);
51         AVFilterContext* get (std::string name);
52
53 protected:
54         virtual std::string src_parameters () const = 0;
55         virtual std::string src_name () const = 0;
56         virtual void* sink_parameters () const = 0;
57         virtual std::string sink_name () const = 0;
58
59         AVFilterGraph* _graph;
60         /** true if this graph has no filters in, so it just copies stuff straight through */
61         bool _copy;
62         AVFilterContext* _buffer_src_context;
63         AVFilterContext* _buffer_sink_context;
64         AVFrame* _frame;
65 };
66
67 #endif