Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-04-15 16:52:00 +0400
committerAnton Khirnov <anton@khirnov.net>2012-04-15 22:20:03 +0400
commit7af99a01c4e77efa002a672d72f142257e87bf38 (patch)
tree2adca802315fec44405658d21d30f9a4e4ab4704 /libavfilter/graphparser.c
parent2e215267901dfbe90d2c041d7e5944aa32b3e071 (diff)
graphparser: fix the order in which unlabeled input links are returned.
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r--libavfilter/graphparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 454704710b..f318984397 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -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);
}
}