From d1b4ea2f61754ed3ba524520e53024a8ca34feae Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Fri, 31 May 2019 22:30:46 +0200 Subject: [PATCH] lavfi/showspatial: Remove two write-only variables. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes two warnings: libavfilter/avf_showspatial.c:157:26: warning: variable ‘w’ set but not used libavfilter/avf_showspatial.c:157:23: warning: variable ‘h’ set but not used --- libavfilter/avf_showspatial.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libavfilter/avf_showspatial.c b/libavfilter/avf_showspatial.c index 5a7657f845..80109a3055 100644 --- a/libavfilter/avf_showspatial.c +++ b/libavfilter/avf_showspatial.c @@ -154,16 +154,13 @@ static int config_output(AVFilterLink *outlink) AVFilterContext *ctx = outlink->src; AVFilterLink *inlink = ctx->inputs[0]; ShowSpatialContext *s = ctx->priv; - int i, fft_bits, h, w; + int i, fft_bits; float overlap; outlink->w = s->w; outlink->h = s->h; outlink->sample_aspect_ratio = (AVRational){1,1}; - h = s->h; - w = s->w; - s->buf_size = 1 << av_log2(s->win_size); s->win_size = s->buf_size; fft_bits = av_log2(s->win_size);