From 04a8e03ef09340ad95598957e2aaa42f1dbac20f Mon Sep 17 00:00:00 2001 From: Rostislav Pehlivanov Date: Tue, 18 Jul 2017 04:12:59 +0100 Subject: [PATCH] opusenc: remove unused variable Signed-off-by: Rostislav Pehlivanov --- libavcodec/opusenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/opusenc.c b/libavcodec/opusenc.c index 547c62cf6b1..c54df8c0605 100644 --- a/libavcodec/opusenc.c +++ b/libavcodec/opusenc.c @@ -207,7 +207,7 @@ static void celt_apply_preemph_filter(OpusEncContext *s, CeltFrame *f) /* Create the window and do the mdct */ static void celt_frame_mdct(OpusEncContext *s, CeltFrame *f) { - int i, t, ch; + int t, ch; float *win = s->scratch, *temp = s->scratch + 1920; if (f->transient) { -- 2.39.5