summary refs log tree commit diff
path: root/pkgs/applications/networking/mumble/fix-rnnoise-argument.patch
blob: 78e8ed24d58f116850374b451a941da2a9823b48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
nixpkgs has a more recent rnnoise than the one used by mumble, and rnnoise
changed the argument rnnoise_create[1],

[1] https://github.com/xiph/rnnoise/commit/231b9c02d14a74cb449a98004cb7a2cf1bdeca2f

--- old/src/mumble/AudioInput.cpp	2020-02-18 22:55:32.000000000 -0500
+++ new/src/mumble/AudioInput.cpp	2020-02-18 22:58:08.000000000 -0500
@@ -106,7 +106,7 @@
 #endif
 
 #ifdef USE_RNNOISE
-	denoiseState = rnnoise_create();
+	denoiseState = rnnoise_create(NULL);
 #endif
 
 	qWarning("AudioInput: %d bits/s, %d hz, %d sample", iAudioQuality, iSampleRate, iFrameSize);