From 515e7fbce1cc555d9eaadad798d3d968ff468987 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Mon, 16 Aug 2021 20:48:00 +0200 Subject: avfilter/avfilter: Remove unused feature to add pads in the middle Reviewed-by: Nicolas George Signed-off-by: Andreas Rheinhardt --- libavfilter/f_streamselect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/f_streamselect.c') diff --git a/libavfilter/f_streamselect.c b/libavfilter/f_streamselect.c index 05a8d5f49a..da2391898f 100644 --- a/libavfilter/f_streamselect.c +++ b/libavfilter/f_streamselect.c @@ -167,10 +167,10 @@ static int parse_definition(AVFilterContext *ctx, int nb_pads, int is_input, int av_log(ctx, AV_LOG_DEBUG, "Add %s pad %s\n", padtype, pad.name); if (is_input) { - ret = ff_insert_inpad(ctx, i, &pad); + ret = ff_append_inpad(ctx, &pad); } else { pad.config_props = config_output; - ret = ff_insert_outpad(ctx, i, &pad); + ret = ff_append_outpad(ctx, &pad); } if (ret < 0) { -- cgit v1.2.3