1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-19 22:01:10 +00:00

af_lavfi: fix graph parse deprecation warning

This commit is contained in:
Kevin Mitchell 2014-04-12 17:57:26 -07:00 committed by wm4
parent f5954b2223
commit 09528da0e2

View File

@ -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 {