From 829ec887090d401632a0aef261029f72b6efe4c5 Mon Sep 17 00:00:00 2001 From: jvbsl Date: Mon, 17 Jul 2023 10:52:04 +0200 Subject: [PATCH] FIX(client): Fix speex bug, introduced through double fix As our speex fork contained a fix which was more of a workaround than actually fixing the underlying problem we move back to the upstream xiph/speexdsp repository, as we do not need our modified fork anymore. The actual problem was fixed through https://github.com/mumble-voip/mumble/pull/6154/files but the combination of both fixes manifested a problem, where the cache was cleared at a point were it should not be cleared yet. --- .gitmodules | 2 +- 3rdparty/speexdsp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 8f6eab4071d..c19da4099cd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -6,7 +6,7 @@ url = https://github.com/mumble-voip/mach_override.git [submodule "3rdparty/speexdsp"] path = 3rdparty/speexdsp - url = https://github.com/mumble-voip/speexdsp.git + url = https://github.com/xiph/speexdsp.git [submodule "3rdparty/rnnoise-src"] path = 3rdparty/rnnoise-src url = https://github.com/mumble-voip/rnnoise.git diff --git a/3rdparty/speexdsp b/3rdparty/speexdsp index 6e4634f44ae..738e17905e1 160000 --- a/3rdparty/speexdsp +++ b/3rdparty/speexdsp @@ -1 +1 @@ -Subproject commit 6e4634f44ae93df56105ff54c1e120f64e7a0dd4 +Subproject commit 738e17905e1ca2a1fa932ddd9c2a85d089f4e845