1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-06-19 19:03:00 +02:00

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

This commit is contained in:
Anton Khirnov
2012-04-15 14:52:00 +02:00
parent 2e21526790
commit 7af99a01c4
+1 -1
View File
@@ -242,7 +242,7 @@ static int link_filter_inouts(AVFilterContext *filt_ctx,
} else {
p->filter_ctx = filt_ctx;
p->pad_idx = pad;
insert_inout(open_inputs, p);
append_inout(open_inputs, &p);
}
}