NOOP, remove trailing tabs/whitespace.

This commit is contained in:
Robin Gareus 2015-10-05 16:17:49 +02:00
parent e11ba7b79d
commit 22b07e0233
822 changed files with 6861 additions and 6861 deletions

View file

@ -49,7 +49,7 @@ void PhaseVocoder::FFTShift(unsigned int size, double *src)
void PhaseVocoder::process(double *src, double *mag, double *theta)
{
FFTShift( m_n, src);
m_fft->process(0, src, m_realOut, m_imagOut);
getMagnitude( m_n/2, mag, m_realOut, m_imagOut);
@ -57,7 +57,7 @@ void PhaseVocoder::process(double *src, double *mag, double *theta)
}
void PhaseVocoder::getMagnitude(unsigned int size, double *mag, double *real, double *imag)
{
{
unsigned int j;
for( j = 0; j < size; j++)
@ -75,5 +75,5 @@ void PhaseVocoder::getPhase(unsigned int size, double *theta, double *real, doub
for( k = 0; k < size; k++)
{
theta[ k ] = atan2( -imag[ k ], real[ k ]);
}
}
}