So, this loudness rate is quite high:
|
/// Loudness can be calculated at much slower rates. The default rate is 10Hz. |
|
//static const m_rate_type DEFAULT_LOUDNESS_RATE = 10; |
|
static const m_rate_type DEFAULT_LOUDNESS_RATE = 44100; |
|
|
Taking it to = 1000 results in an (expected) ~40x speedup with really no audible differences. This includes in projects with pretty crazy modulations and modifier effects. Maybe we can have 44100 be the default when running on Delta, but for laptops/CMP computers, this is a lot of cycles (and time) saved!
So, this loudness rate is quite high:
DISSCO/LASS/src/Types.h
Lines 128 to 131 in 26a3301
Taking it to
= 1000results in an (expected) ~40x speedup with really no audible differences. This includes in projects with pretty crazy modulations and modifier effects. Maybe we can have 44100 be the default when running on Delta, but for laptops/CMP computers, this is a lot of cycles (and time) saved!