1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

Remove two unused variables.

Originally committed as revision 11584 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-01-21 00:29:22 +00:00
parent a4b375c614
commit 3f5d7bb331

View File

@ -90,7 +90,7 @@ typedef struct IComplex {
static void fft_init(int ln) static void fft_init(int ln)
{ {
int i, j, m, n; int i, n;
float alpha; float alpha;
n = 1 << ln; n = 1 << ln;