diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-21 00:29:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-21 00:29:22 +0000 |
commit | 3f5d7bb331b2bfcdccf8855f6892ae6ae4ace70b (patch) | |
tree | 7a89f8310948482394ac134e4b5bda8a3f695f01 | |
parent | a4b375c61475f46d9c17a33330fa251892267914 (diff) | |
download | ffmpeg-3f5d7bb331b2bfcdccf8855f6892ae6ae4ace70b.tar.gz |
Remove two unused variables.
Originally committed as revision 11584 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ac3enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |