Supporters update.
[dcpomatic.git] / src / lib / filter_graph.cc
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.cc
23  *  @brief A graph of FFmpeg filters.
24  */
25
26
27 #include "filter_graph.h"
28 #include "filter.h"
29 #include "exceptions.h"
30 #include "image.h"
31 #include "compose.hpp"
32 extern "C" {
33 #include <libavfilter/buffersrc.h>
34 #include <libavfilter/buffersink.h>
35 #include <libavformat/avio.h>
36 }
37 #include <iostream>
38
39 #include "i18n.h"
40
41
42 using std::string;
43 using std::list;
44 using std::pair;
45 using std::make_pair;
46 using std::cout;
47 using std::vector;
48 using std::shared_ptr;
49 using std::weak_ptr;
50 using dcp::Size;
51
52
53 void
54 FilterGraph::setup(vector<Filter> const& filters)
55 {
56         auto const filters_string = Filter::ffmpeg_string (filters);
57         if (filters.empty()) {
58                 return;
59         }
60
61         _copy = false;
62
63         _frame = av_frame_alloc ();
64
65         _graph = avfilter_graph_alloc();
66         if (!_graph) {
67                 throw DecodeError (N_("could not create filter graph."));
68         }
69
70         auto const buffer_src = avfilter_get_by_name (src_name().c_str());
71         if (!buffer_src) {
72                 throw DecodeError (N_("could not find buffer src filter"));
73         }
74
75         auto const buffer_sink = avfilter_get_by_name (sink_name().c_str());
76         if (!buffer_sink) {
77                 throw DecodeError (N_("Could not create buffer sink filter"));
78         }
79
80         if (avfilter_graph_create_filter (&_buffer_src_context, buffer_src, N_("in"), src_parameters().c_str(), 0, _graph) < 0) {
81                 throw DecodeError (N_("could not create buffer source"));
82         }
83
84         if (avfilter_graph_create_filter (&_buffer_sink_context, buffer_sink, N_("out"), nullptr, nullptr, _graph) < 0) {
85                 throw DecodeError (N_("could not create buffer sink."));
86         }
87
88         set_parameters (_buffer_sink_context);
89
90         auto outputs = avfilter_inout_alloc ();
91         outputs->name = av_strdup(N_("in"));
92         outputs->filter_ctx = _buffer_src_context;
93         outputs->pad_idx = 0;
94         outputs->next = 0;
95
96         auto inputs = avfilter_inout_alloc ();
97         inputs->name = av_strdup(N_("out"));
98         inputs->filter_ctx = _buffer_sink_context;
99         inputs->pad_idx = 0;
100         inputs->next = 0;
101
102         if (avfilter_graph_parse (_graph, filters_string.c_str(), inputs, outputs, 0) < 0) {
103                 throw DecodeError (N_("could not set up filter graph."));
104         }
105
106         int e = avfilter_graph_config (_graph, 0);
107         if (e < 0) {
108                 throw DecodeError (String::compose(N_("could not configure filter graph (%1)"), e));
109         }
110 }
111
112
113 FilterGraph::~FilterGraph ()
114 {
115         if (_frame) {
116                 av_frame_free (&_frame);
117         }
118
119         if (_graph) {
120                 avfilter_graph_free (&_graph);
121         }
122 }
123
124
125 AVFilterContext *
126 FilterGraph::get (string name)
127 {
128         return avfilter_graph_get_filter (_graph, name.c_str());
129 }