Use FFSWAP instead of "manual" swap

Originally committed as revision 11518 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2008-01-12 17:37:36 +00:00
parent e5d8ccd727
commit f952b30cd1
1 changed files with 2 additions and 6 deletions

View File

@ -149,13 +149,9 @@ static void fft(IComplex *z, int ln)
/* reverse */
for(j=0;j<np;j++) {
int k;
IComplex tmp;
k = fft_rev[j];
if (k < j) {
tmp = z[k];
z[k] = z[j];
z[j] = tmp;
}
if (k < j)
FFSWAP(IComplex, z[k], z[j]);
}
/* pass 0 */