contribu

Results 4 comments of contribu

denoise_gru is also different. is relu right according to paper and rnn_data.c? https://arxiv.org/pdf/1709.08243.pdf

wav to raw pcm ```bash ffmpeg -i input.wav -ac 1 -ar 48000 -f s16le -acodec pcm_s16le output.raw ``` raw pcm to wav ```bash ffmpeg -ac 1 -ar 48000 -f s16le...

try cmake. cmake works in windows (visual studio), mac (xcode), linux (make, ninja) CMakeLists.txt example ```cmake cmake_minimum_required(VERSION 3.9) project(rnnoise C CXX) include_directories( include src ) file(GLOB RNNOISE_SOURCES src/*.c) message("RNNOISE_SOURCES: ${RNNOISE_SOURCES}")...

windows file io has the binary mode and text mode. binary mode is not specified in rnnoise_demo.c. (i have not tested if specifying binary mode fix the bug)