summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cscript2
-rw-r--r--src/lib/filter_graph.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/cscript b/cscript
index 90cbbecfb..180eca941 100644
--- a/cscript
+++ b/cscript
@@ -156,7 +156,7 @@ def make_control(debian_version, bits, filename, debug):
print >>f,''
def dependencies(target):
- return (('ffmpeg-cdist', '7e95caa'),
+ return (('ffmpeg-cdist', '2dffa11'),
('libdcp', '1.0'))
def build(target, options):
diff --git a/src/lib/filter_graph.cc b/src/lib/filter_graph.cc
index d2427c31f..2d8f83aa7 100644
--- a/src/lib/filter_graph.cc
+++ b/src/lib/filter_graph.cc
@@ -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."));
}