mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 16:40:07 +02:00
fixed initialization order warning in src/effects/Paulstretch.cpp
This commit is contained in:
parent
b71c24f15f
commit
c6de7d6095
@ -419,8 +419,8 @@ PaulStretch::PaulStretch(float rap_, size_t in_bufsize_, float samplerate_ )
|
|||||||
, in_pool { poolsize, true }
|
, in_pool { poolsize, true }
|
||||||
, remained_samples { 0.0 }
|
, remained_samples { 0.0 }
|
||||||
, fft_smps { poolsize, true }
|
, fft_smps { poolsize, true }
|
||||||
, fft_s { poolsize, true }
|
|
||||||
, fft_c { poolsize, true }
|
, fft_c { poolsize, true }
|
||||||
|
, fft_s { poolsize, true }
|
||||||
, fft_freq { poolsize, true }
|
, fft_freq { poolsize, true }
|
||||||
, fft_tmp { poolsize }
|
, fft_tmp { poolsize }
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user