Supporters update.
[dcpomatic.git] / src / lib / video_filter_graph_set.h
1 /*
2     Copyright (C) 2022 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 #ifndef DCPOMATIC_VIDEO_FILTER_GRAPH_SET_H
23 #define DCPOMATIC_VIDEO_FILTER_GRAPH_SET_H
24
25
26 #include <dcp/types.h>
27 extern "C" {
28 #include <libavutil/avutil.h>
29 }
30 #include <memory>
31 #include <vector>
32
33
34 class Filter;
35 class VideoFilterGraph;
36
37
38 class VideoFilterGraphSet
39 {
40 public:
41         VideoFilterGraphSet(std::vector<Filter> const& filters, dcp::Fraction frame_rate)
42                 : _filters(filters)
43                 , _frame_rate(frame_rate)
44         {}
45
46         VideoFilterGraphSet(VideoFilterGraphSet const&) = delete;
47         VideoFilterGraphSet& operator=(VideoFilterGraphSet const&) = delete;
48
49         std::shared_ptr<VideoFilterGraph> get(dcp::Size size, AVPixelFormat format);
50
51         void clear();
52
53 private:
54         std::vector<Filter> _filters;
55         dcp::Fraction _frame_rate;
56         std::vector<std::shared_ptr<VideoFilterGraph>> _graphs;
57 };
58
59
60 #endif
61