extract_loudest_section
extract_loudest_section copied to clipboard
Fix volume calculation in first `desired_samples`
Commit 1f2eb73 replaces sqrtf(x*x) with fabsf(x) to calculate volume.
In one instance, sqrtf(x*x) was accidentally replaced with fabsf(x*x)
instead of fabsf(x). This change fixes that instance.