diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-16 20:48:00 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-17 21:20:59 +0200 |
commit | 515e7fbce1cc555d9eaadad798d3d968ff468987 (patch) | |
tree | 58e67a3e4d10e2a9af1a6f22170363acb5313df4 /libavfilter/af_lv2.c | |
parent | 1e35744a4ce57925d5134cdd1f1e704e9e211270 (diff) | |
download | ffmpeg-515e7fbce1cc555d9eaadad798d3d968ff468987.tar.gz |
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/af_lv2.c')
-rw-r--r-- | libavfilter/af_lv2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_lv2.c b/libavfilter/af_lv2.c index 83ff5e7861..a7f069206d 100644 --- a/libavfilter/af_lv2.c +++ b/libavfilter/af_lv2.c @@ -464,7 +464,7 @@ static av_cold int init(AVFilterContext *ctx) return AVERROR(ENOMEM); pad.filter_frame = filter_frame; - if (ff_insert_inpad(ctx, ctx->nb_inputs, &pad) < 0) { + if (ff_append_inpad(ctx, &pad) < 0) { av_freep(&pad.name); return AVERROR(ENOMEM); } |