mirror of https://git.ffmpeg.org/ffmpeg.git
doc/examples: make use of the parameter filters_descr parameter in init_filters().
This commit is contained in:
parent
0cc9ee5fab
commit
4fd573970a
|
@ -129,7 +129,7 @@ static int init_filters(const char *filters_descr)
|
|||
inputs->pad_idx = 0;
|
||||
inputs->next = NULL;
|
||||
|
||||
if ((ret = avfilter_graph_parse(filter_graph, filter_descr,
|
||||
if ((ret = avfilter_graph_parse(filter_graph, filters_descr,
|
||||
&inputs, &outputs, NULL)) < 0)
|
||||
return ret;
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ static int init_filters(const char *filters_descr)
|
|||
inputs->pad_idx = 0;
|
||||
inputs->next = NULL;
|
||||
|
||||
if ((ret = avfilter_graph_parse(filter_graph, filter_descr,
|
||||
if ((ret = avfilter_graph_parse(filter_graph, filters_descr,
|
||||
&inputs, &outputs, NULL)) < 0)
|
||||
return ret;
|
||||
|
||||
|
|
Loading…
Reference in New Issue