mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-24 16:20:05 +02:00
Remove warning about empty statement.
(thanks to pi1024e)
This commit is contained in:
parent
3ea2b82dbc
commit
a284f57e39
@ -462,11 +462,11 @@ float SpectrogramSettings::findBin( float frequency, float binUnit ) const
|
||||
|
||||
size_t SpectrogramSettings::GetFFTLength() const
|
||||
{
|
||||
return windowSize
|
||||
#ifdef EXPERIMENTAL_ZERO_PADDED_SPECTROGRAMS
|
||||
* ((algorithm != algPitchEAC) ? zeroPaddingFactor : 1);
|
||||
#ifndef EXPERIMENTAL_ZERO_PADDED_SPECTROGRAMS
|
||||
return windowSize;
|
||||
#else
|
||||
return windowSize * ((algorithm != algPitchEAC) ? zeroPaddingFactor : 1);
|
||||
#endif
|
||||
;
|
||||
}
|
||||
|
||||
size_t SpectrogramSettings::NBins() const
|
||||
|
Loading…
x
Reference in New Issue
Block a user