diff options
author | Kevin Mitchell <kevmitch@gmail.com> | 2014-04-12 17:57:26 -0700 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-04-13 18:03:01 +0200 |
commit | 09528da0e2245bc5b95a46dc39b53576320b9c6d (patch) | |
tree | 1cf53f4e3990b8a15f614f2cb3941ca798514288 | |
parent | f5954b222365c6a9224a90be112e6842c8f62e62 (diff) |
af_lavfi: fix graph parse deprecation warning
-rw-r--r-- | audio/filter/af_lavfi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/filter/af_lavfi.c b/audio/filter/af_lavfi.c index 73d093d095..5bca39d6dd 100644 --- a/audio/filter/af_lavfi.c +++ b/audio/filter/af_lavfi.c @@ -48,7 +48,7 @@ avfilter_graph_parse(graph, filters, inputs, outputs, log_ctx) #else #define graph_parse(graph, filters, inputs, outputs, log_ctx) \ - avfilter_graph_parse(graph, filters, &(inputs), &(outputs), log_ctx) + avfilter_graph_parse_ptr(graph, filters, &(inputs), &(outputs), log_ctx) #endif struct priv { |