Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/macx
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@gmail.com>2019-10-15 04:21:15 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2019-10-15 04:50:24 +0300
commit9e1a5604d23a91ac15b1d8dba5138c536bb007f5 (patch)
tree8a4a767058f896228b2d8b8077c359d73b0f508f /macx
parent341abad3222908e3f952fac6843fb399abf28be8 (diff)
Remove CELT 0.11.0
CELT 0.11.0 provides better quality in comparison to CELT 0.7.0, but the two versions of the codecs are not compatible, which is why we provided both of them. Opus was introduced in Mumble 1.2.4 (7586a61226a5477ff1f6418f51acdab65fe093f4), thus we expect that most (if not all) users are using it. By removing CELT 0.11.0 we don't break backwards compatibility, because it's provided by CELT 0.7.0. The main reason for removing the codec is the fact that its discontinued (in favor of Opus). Also, CELT 0.11.0 was removed from the Debian package back in 2012: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=682010
Diffstat (limited to 'macx')
-rwxr-xr-xmacx/scripts/osxdist.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/macx/scripts/osxdist.py b/macx/scripts/osxdist.py
index ed4c1787d..14807ef68 100755
--- a/macx/scripts/osxdist.py
+++ b/macx/scripts/osxdist.py
@@ -134,7 +134,7 @@ class AppBundle(object):
print ' * Attempting to copy audio codec libraries into App Bundle'
dst = os.path.join(self.bundle, 'Contents', 'Codecs')
os.makedirs(dst)
- codecs = ('release/libcelt0.0.7.0.dylib', 'release/libcelt0.0.11.0.dylib', 'release/libopus.dylib')
+ codecs = ('release/libcelt0.0.7.0.dylib', 'release/libopus.dylib')
for codec in codecs:
if os.path.exists(codec):
shutil.copy(codec, dst)
@@ -298,7 +298,6 @@ def package_client():
'release/Mumble.app/Contents/Plugins/liblink.dylib',
'release/Mumble.app/Contents/Plugins/libmanual.dylib',
'release/Mumble.app/Contents/Codecs/libcelt0.0.7.0.dylib',
- 'release/Mumble.app/Contents/Codecs/libcelt0.0.11.0.dylib',
'release/Mumble.app/Contents/Codecs/libopus.dylib',
'release/Mumble.app/Contents/MacOS/mumble-g15-helper',
'release/Mumble.app/Contents/MacOS/sbcelt-helper',