diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-11 11:41:49 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-11 12:23:03 +0200 |
commit | d468ed032169c8007ed24cb2adfbee3a842eb742 (patch) | |
tree | ca3870efb34c360bf7c64860160266322bb1dd79 /libavfilter/graphparser.c | |
parent | f5901fd392889dabe0d2eb9005e62ac667655b2f (diff) | |
download | ffmpeg-d468ed032169c8007ed24cb2adfbee3a842eb742.tar.gz |
lavfi: fix signature for avfilter_graph_parse() and avfilter_graph_config()
Require "void *" rather than "AVClass *" for the log context type.
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r-- | libavfilter/graphparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 4f11529900..b7a2232270 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -329,7 +329,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; |