mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
lavfi: fix signature for avfilter_graph_parse() and avfilter_graph_config()
Require "void *" rather than "AVClass *" for the log context type. Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
committed by
Anton Khirnov
parent
64abd375ec
commit
57fa314090
@@ -331,7 +331,7 @@ static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs,
|
||||
|
||||
int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
|
||||
AVFilterInOut *open_inputs,
|
||||
AVFilterInOut *open_outputs, AVClass *log_ctx)
|
||||
AVFilterInOut *open_outputs, void *log_ctx)
|
||||
{
|
||||
int index = 0, ret;
|
||||
char chr = 0;
|
||||
|
||||
Reference in New Issue
Block a user