Supporters update.
[dcpomatic.git] / src / lib / video_filter_graph_set.cc
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 #include "dcpomatic_log.h"
23 #include "video_filter_graph.h"
24 #include "video_filter_graph_set.h"
25
26 #include "i18n.h"
27
28
29 using std::make_shared;
30 using std::shared_ptr;
31
32
33 shared_ptr<VideoFilterGraph>
34 VideoFilterGraphSet::get(dcp::Size size, AVPixelFormat format)
35 {
36         auto graph = std::find_if(
37                 _graphs.begin(),
38                 _graphs.end(),
39                 [size, format](shared_ptr<VideoFilterGraph> g) {
40                         return g->can_process(size, format);
41                 });
42
43         if (graph != _graphs.end()) {
44                 return *graph;
45         }
46
47         auto new_graph = make_shared<VideoFilterGraph>(size, format, _frame_rate);
48         new_graph->setup(_filters);
49         _graphs.push_back(new_graph);
50
51         LOG_GENERAL(N_("New graph for %1x%2, pixel format %3"), size.width, size.height, static_cast<int>(format));
52
53         return new_graph;
54 }
55
56
57 void
58 VideoFilterGraphSet::clear()
59 {
60         _graphs.clear();
61 }
62