olivecha

Results 3 issues of olivecha

the `make -j4` did not work on MacOS because the c++ standard was not specified in the Makefile and an older standard was used by default Adding `CXXFLAG = -std=gnu++17`...

This issue caused errors when processing sounds with silent segments. Because the logarithm is used to weight the samples, it is my understanding that replacing log(0) values with 0 would...

The error occurs when there is a zero in the array : ```python spec[WR_upper_f_limit_idx:] ``` a working fix is replacing the line 217 with : ```python above_WR_spec = [value if...