Browse Source

doc/examples: make use of the parameter filters_descr parameter in init_filters().

tags/n0.11
Clément Bœsch 13 years ago
parent
commit
4fd573970a
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      doc/examples/filtering_audio.c
  2. +1
    -1
      doc/examples/filtering_video.c

+ 1
- 1
doc/examples/filtering_audio.c View File

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



+ 1
- 1
doc/examples/filtering_video.c View File

@@ -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…
Cancel
Save