diff options
author | Juan Linietsky <juan@godotengine.org> | 2017-12-24 09:31:17 -0300 |
---|---|---|
committer | Juan Linietsky <juan@godotengine.org> | 2017-12-24 09:32:12 -0300 |
commit | 021f3c924be29cafe9d8d50bf00ecc6f13675e87 (patch) | |
tree | 4623e6fa3be55751386d56792f7cc26dab210e27 /modules/opus | |
parent | 83182ea4a1e6d5c34dd137fdbd7ef9b2c5f33231 (diff) |
-Removed OpenMP support, replaced by a custom class.
-Disabled Opus, implementation is wrong.
Diffstat (limited to 'modules/opus')
-rw-r--r-- | modules/opus/config.py | 7 |
1 files changed, 6 insertions, 1 deletions
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 |