summaryrefslogtreecommitdiff
path: root/libavfilter/f_interleave.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-16 20:48:00 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-17 21:20:59 +0200
commit515e7fbce1cc555d9eaadad798d3d968ff468987 (patch)
tree58e67a3e4d10e2a9af1a6f22170363acb5313df4 /libavfilter/f_interleave.c
parent1e35744a4ce57925d5134cdd1f1e704e9e211270 (diff)
avfilter/avfilter: Remove unused feature to add pads in the middle
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/f_interleave.c')
-rw-r--r--libavfilter/f_interleave.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/f_interleave.c b/libavfilter/f_interleave.c
index 56c30a39c8..2845d72b79 100644
--- a/libavfilter/f_interleave.c
+++ b/libavfilter/f_interleave.c
@@ -173,7 +173,7 @@ static av_cold int init(AVFilterContext *ctx)
default:
av_assert0(0);
}
- if ((ret = ff_insert_inpad(ctx, i, &inpad)) < 0) {
+ if ((ret = ff_append_inpad(ctx, &inpad)) < 0) {
av_freep(&inpad.name);
return ret;
}