diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-05 06:30:54 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-05 17:53:43 +0200 |
commit | 304cb08693220b1e8a09273f28688537fd9ff39e (patch) | |
tree | cef8a2d7be24dde8a0d654843faaaf474684fbac /libavfilter/avf_aphasemeter.c | |
parent | b3a0548a981db52911dd34d9de254c4fee0a8f79 (diff) | |
download | ffmpeg-304cb08693220b1e8a09273f28688537fd9ff39e.tar.gz |
avfilter/avfilter: Remove unused partial_buf
It is unused since 02aa0701ae0dc2def8db640c9e3c06dc1b5de70c.
The corresponding size field is write-only since then.
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/avf_aphasemeter.c')
-rw-r--r-- | libavfilter/avf_aphasemeter.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/avf_aphasemeter.c b/libavfilter/avf_aphasemeter.c index ef7e50e657..a31805f204 100644 --- a/libavfilter/avf_aphasemeter.c +++ b/libavfilter/avf_aphasemeter.c @@ -131,7 +131,6 @@ static int config_input(AVFilterLink *inlink) if (s->do_video) { nb_samples = FFMAX(1, av_rescale(inlink->sample_rate, s->frame_rate.den, s->frame_rate.num)); - inlink->partial_buf_size = inlink->min_samples = inlink->max_samples = nb_samples; } |