summary refs log tree commit diff
path: root/pkgs/applications/networking/mumble/fix-rnnoise-argument.patch
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-02-19 08:01:22 -0500
committerGitHub <noreply@github.com>2020-02-19 14:01:21 +0100
commit7b73eefda84c75f33ce5dc52461b87f9fa992fed (patch)
tree66feab9078f8d1f421417176d7e3cf3c518576c6 /pkgs/applications/networking/mumble/fix-rnnoise-argument.patch
parent5ea19307fe7e331f86bc3676a9c506b6d1c7d3e0 (diff)
downloadnixpkgs-7b73eefda84c75f33ce5dc52461b87f9fa992fed.tar
nixpkgs-7b73eefda84c75f33ce5dc52461b87f9fa992fed.tar.gz
nixpkgs-7b73eefda84c75f33ce5dc52461b87f9fa992fed.tar.bz2
nixpkgs-7b73eefda84c75f33ce5dc52461b87f9fa992fed.tar.lz
nixpkgs-7b73eefda84c75f33ce5dc52461b87f9fa992fed.tar.xz
nixpkgs-7b73eefda84c75f33ce5dc52461b87f9fa992fed.tar.zst
nixpkgs-7b73eefda84c75f33ce5dc52461b87f9fa992fed.zip
mumble: fix build (#80500)
Diffstat (limited to 'pkgs/applications/networking/mumble/fix-rnnoise-argument.patch')
-rw-r--r--pkgs/applications/networking/mumble/fix-rnnoise-argument.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mumble/fix-rnnoise-argument.patch b/pkgs/applications/networking/mumble/fix-rnnoise-argument.patch
new file mode 100644
index 00000000000..78e8ed24d58
--- /dev/null
+++ b/pkgs/applications/networking/mumble/fix-rnnoise-argument.patch
@@ -0,0 +1,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);