diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-01-03 22:47:40 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-01-03 22:52:47 +0100 |
commit | 88cbd25b193dddb852bc1921b733c5dde5fee2fe (patch) | |
tree | 4e92b70448f964296c7e91590dc2d74116330c3f /libavfilter/af_aphaser.c | |
parent | 677701c6b319d2d3b95a27179fde6ec2a863bf72 (diff) | |
download | ffmpeg-88cbd25b193dddb852bc1921b733c5dde5fee2fe.tar.gz |
avfilter: pass outlink to ff_get_audio_buffer()
This is more correct.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/af_aphaser.c')
-rw-r--r-- | libavfilter/af_aphaser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_aphaser.c b/libavfilter/af_aphaser.c index dcffc216dd..bf46cc8fab 100644 --- a/libavfilter/af_aphaser.c +++ b/libavfilter/af_aphaser.c @@ -247,7 +247,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inbuf) if (av_frame_is_writable(inbuf)) { outbuf = inbuf; } else { - outbuf = ff_get_audio_buffer(inlink, inbuf->nb_samples); + outbuf = ff_get_audio_buffer(outlink, inbuf->nb_samples); if (!outbuf) { av_frame_free(&inbuf); return AVERROR(ENOMEM); |