Fix the build for older macOS.
[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                 _copy = true;
59                 return;
60         }
61
62         _frame = av_frame_alloc ();
63
64         _graph = avfilter_graph_alloc();
65         if (!_graph) {
66                 throw DecodeError (N_("could not create filter graph."));
67         }
68
69         auto const buffer_src = avfilter_get_by_name (src_name().c_str());
70         if (!buffer_src) {
71                 throw DecodeError (N_("could not find buffer src filter"));
72         }
73
74         auto const buffer_sink = avfilter_get_by_name (sink_name().c_str());
75         if (!buffer_sink) {
76                 throw DecodeError (N_("Could not create buffer sink filter"));
77         }
78
79         if (avfilter_graph_create_filter (&_buffer_src_context, buffer_src, N_("in"), src_parameters().c_str(), 0, _graph) < 0) {
80                 throw DecodeError (N_("could not create buffer source"));
81         }
82
83         if (avfilter_graph_create_filter (&_buffer_sink_context, buffer_sink, N_("out"), nullptr, nullptr, _graph) < 0) {
84                 throw DecodeError (N_("could not create buffer sink."));
85         }
86
87         set_parameters (_buffer_sink_context);
88
89         auto outputs = avfilter_inout_alloc ();
90         outputs->name = av_strdup(N_("in"));
91         outputs->filter_ctx = _buffer_src_context;
92         outputs->pad_idx = 0;
93         outputs->next = 0;
94
95         auto inputs = avfilter_inout_alloc ();
96         inputs->name = av_strdup(N_("out"));
97         inputs->filter_ctx = _buffer_sink_context;
98         inputs->pad_idx = 0;
99         inputs->next = 0;
100
101         if (avfilter_graph_parse (_graph, filters_string.c_str(), inputs, outputs, 0) < 0) {
102                 throw DecodeError (N_("could not set up filter graph."));
103         }
104
105         int e = avfilter_graph_config (_graph, 0);
106         if (e < 0) {
107                 throw DecodeError (String::compose(N_("could not configure filter graph (%1)"), e));
108         }
109 }
110
111
112 FilterGraph::~FilterGraph ()
113 {
114         if (_frame) {
115                 av_frame_free (&_frame);
116         }
117
118         if (_graph) {
119                 avfilter_graph_free (&_graph);
120         }
121 }
122
123
124 AVFilterContext *
125 FilterGraph::get (string name)
126 {
127         return avfilter_graph_get_filter (_graph, name.c_str());
128 }