From 746031e120cbc1afa4c191986a55f1789f5d194a Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 15 Aug 2011 19:36:46 +0200 Subject: [PATCH 1/1] imdct: Remove dead store. imdct.c:296:2: warning: Value stored to 'output' is never read output += n4; ^ ~~ --- imdct.c | 1 - 1 file changed, 1 deletion(-) diff --git a/imdct.c b/imdct.c index 32928487..aab498a3 100644 --- a/imdct.c +++ b/imdct.c @@ -293,7 +293,6 @@ static void imdct_half(struct mdct_context *s, fftsample_t *output, fft(&s->fft, z); /* post rotation + reordering */ - output += n4; for (k = 0; k < n8; k++) { fftsample_t r0, i0, r1, i1; CMUL(r0, i1, z[n8 - k - 1].im, z[n8 - k - 1].re, -- 2.39.2