Skip to content
Snippets Groups Projects
Commit 7af99a01 authored by Anton Khirnov's avatar Anton Khirnov
Browse files

graphparser: fix the order in which unlabeled input links are returned.

parent 2e215267
No related branches found
No related tags found
No related merge requests found
...@@ -242,7 +242,7 @@ static int link_filter_inouts(AVFilterContext *filt_ctx, ...@@ -242,7 +242,7 @@ static int link_filter_inouts(AVFilterContext *filt_ctx,
} else { } else {
p->filter_ctx = filt_ctx; p->filter_ctx = filt_ctx;
p->pad_idx = pad; p->pad_idx = pad;
insert_inout(open_inputs, p); append_inout(open_inputs, &p);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment