Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2017-07-18 06:12:59 +0300
committerRostislav Pehlivanov <atomnuker@gmail.com>2017-07-18 06:12:59 +0300
commit04a8e03ef09340ad95598957e2aaa42f1dbac20f (patch)
tree88049b8f5543790e0daf9d4d298b878661ecefb7 /libavcodec/opusenc.c
parentd8f198263975f45fab1f9b44f870131abc1d6e36 (diff)
opusenc: remove unused variable
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/opusenc.c')
-rw-r--r--libavcodec/opusenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opusenc.c b/libavcodec/opusenc.c
index 547c62cf6b..c54df8c060 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) {