lavfi: fix signature for avfilter_graph_parse() and avfilter_graph_config()

Require "void *" rather than "AVClass *" for the log context type.
This commit is contained in:
Stefano Sabatini
2011-06-11 11:41:49 +02:00
parent f5901fd392
commit d468ed0321
4 changed files with 5 additions and 5 deletions

View File

@ -229,7 +229,7 @@ int ff_avfilter_graph_config_formats(AVFilterGraph *graph, AVClass *log_ctx)
return 0;
}
int avfilter_graph_config(AVFilterGraph *graphctx, AVClass *log_ctx)
int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx)
{
int ret;