From 021f3c924be29cafe9d8d50bf00ecc6f13675e87 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sun, 24 Dec 2017 09:31:17 -0300 Subject: -Removed OpenMP support, replaced by a custom class. -Disabled Opus, implementation is wrong. --- modules/opus/config.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'modules/opus') diff --git a/modules/opus/config.py b/modules/opus/config.py index 60f8d838d6..0ee1b1b7b4 100644 --- a/modules/opus/config.py +++ b/modules/opus/config.py @@ -1,5 +1,10 @@ def can_build(platform): - return True + # Sorry guys, do not enable this unless you can figure out a way + # to get Opus to not do any memory allocation or system calls + # in the audio thread. + # Currently the implementation even reads files from the audio thread, + # and this is not how audio programming works. + return False def configure(env): pass -- cgit v1.2.3