From 3f5d7bb331b2bfcdccf8855f6892ae6ae4ace70b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 21 Jan 2008 00:29:22 +0000 Subject: [PATCH] Remove two unused variables. Originally committed as revision 11584 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ac3enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c index af70c12ed8..1b95e8060f 100644 --- a/libavcodec/ac3enc.c +++ b/libavcodec/ac3enc.c @@ -90,7 +90,7 @@ typedef struct IComplex { static void fft_init(int ln) { - int i, j, m, n; + int i, n; float alpha; n = 1 << ln;