extract_loudest_section icon indicating copy to clipboard operation
extract_loudest_section copied to clipboard

Fix volume calculation in first `desired_samples`

Open sharvil opened this issue 7 years ago • 0 comments

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.

sharvil avatar Feb 21 '18 01:02 sharvil