Commit 39747d87 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter_graph_parse: add support for parsing sws_flags

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 248b1ff2
......@@ -520,6 +520,9 @@ int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
AVFilterInOut *open_inputs = open_inputs_ptr ? *open_inputs_ptr : NULL;
AVFilterInOut *open_outputs = open_outputs_ptr ? *open_outputs_ptr : NULL;
if ((ret = parse_sws_flags(&filters, graph)) < 0)
goto end;
do {
AVFilterContext *filter;
const char *filterchain = filters;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment