fails to build when using gcc 14 or above, made a patch to silence the errors. you can apply it by following these instructions
--- a/plugins/obs-filters/rnnoise/src/denoise.c
+++ b/plugins/obs-filters/rnnoise/src/denoise.c
@@ -265,9 +265,9 @@ int rnnoise_init(DenoiseState *st, RNNModel *model) {
st->rnn.model = model;
else
st->rnn.model = &rnnoise_model_orig;
- st->rnn.vad_gru_state = calloc(sizeof(float), st->rnn.model->vad_gru_size);
- st->rnn.noise_gru_state = calloc(sizeof(float), st->rnn.model->noise_gru_size);
- st->rnn.denoise_gru_state = calloc(sizeof(float), st->rnn.model->denoise_gru_size);
+ st->rnn.vad_gru_state = calloc(st->rnn.model->vad_gru_size, sizeof(float));
+ st->rnn.noise_gru_state = calloc(st->rnn.model->noise_gru_size, sizeof(float));
+ st->rnn.denoise_gru_state = calloc(st->rnn.model->denoise_gru_size, sizeof(float));
return 0;
}
Pinned Comments
thotypous commented on 2021-02-05 14:12 (UTC)
If you don't want to build this package yourself, hourly builds are available at https://aur.chaotic.cx
benklett commented on 2016-02-06 23:11 (UTC) (edited on 2016-08-10 14:01 (UTC) by benklett)