mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavfi/graphparser: drop a redundant label
This commit is contained in:
parent
ca67a783ab
commit
54c0e72b42
@ -421,7 +421,7 @@ int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
|
||||
filters += strspn(filters, WHITESPACES);
|
||||
|
||||
if ((ret = parse_sws_flags(&filters, graph)) < 0)
|
||||
goto fail;
|
||||
goto end;
|
||||
|
||||
do {
|
||||
AVFilterContext *filter;
|
||||
@ -463,7 +463,7 @@ int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
|
||||
*outputs = open_outputs;
|
||||
return 0;
|
||||
|
||||
fail:end:
|
||||
end:
|
||||
while (graph->nb_filters)
|
||||
avfilter_free(graph->filters[0]);
|
||||
av_freep(&graph->filters);
|
||||
|
Loading…
Reference in New Issue
Block a user