summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-10-05 23:18:39 +0100
committerCarl Hetherington <cth@carlh.net>2014-10-05 23:18:39 +0100
commit1ac89aeb6ca8642b7cc0f6b43899e4c8d9e08489 (patch)
treea62ff054492a9a1d795d69f2082d4abd18e4f661 /src
parent97ad6afa48bd6324132a25103ac2d36df5d4829c (diff)
Bump ffmpeg version.
Diffstat (limited to 'src')
-rw-r--r--src/lib/filter_graph.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/filter_graph.cc b/src/lib/filter_graph.cc
index 0d72eacdf..639992d70 100644
--- a/src/lib/filter_graph.cc
+++ b/src/lib/filter_graph.cc
@@ -114,7 +114,7 @@ FilterGraph::FilterGraph (shared_ptr<const FFmpegContent> content, libdcp::Size
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."));
}