summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-05-21 14:19:31 +0100
committerCarl Hetherington <cth@carlh.net>2015-05-21 14:20:05 +0100
commit61bafeda23d9e849f636ac416a745b0ab28bc103 (patch)
tree7a9ca8fceca304730a34e497e728875593a2299e /src
parente69d9bf7e5d80b6d627226af8e9812aefb5ee8fa (diff)
avfilter_graph_parse frees inputs and outputs passed in, so we should not.
Diffstat (limited to 'src')
-rw-r--r--src/lib/filter_graph.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/filter_graph.cc b/src/lib/filter_graph.cc
index 86f291fde..9f80118bd 100644
--- a/src/lib/filter_graph.cc
+++ b/src/lib/filter_graph.cc
@@ -124,9 +124,6 @@ FilterGraph::FilterGraph (shared_ptr<const FFmpegContent> content, dcp::Size s,
if (avfilter_graph_config (graph, 0) < 0) {
throw DecodeError (N_("could not configure filter graph."));
}
-
- avfilter_inout_free (&inputs);
- avfilter_inout_free (&outputs);
}
FilterGraph::~FilterGraph ()