Merge remote-tracking branch 'origin/master' into 2.0
[dcpomatic.git] / src / lib / filter_graph.cc
index d2427c31faf35957b251320d1d091fce2e54b161..2d8f83aa73da6d8b03c46005b5c45ff3780da6f7 100644 (file)
@@ -117,7 +117,7 @@ FilterGraph::FilterGraph (shared_ptr<const FFmpegContent> content, dcp::Size s,
        inputs->pad_idx = 0;
        inputs->next = 0;
 
-       if (avfilter_graph_parse (graph, filters.c_str(), &inputs, &outputs, 0) < 0) {
+       if (avfilter_graph_parse (graph, filters.c_str(), inputs, outputs, 0) < 0) {
                throw DecodeError (N_("could not set up filter graph."));
        }