aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-02-07 06:25:11 -0800
committerChris Robinson <[email protected]>2017-02-07 07:06:41 -0800
commit9f10ae466c089388db1bd9ff236eec50ed98b157 (patch)
treebc349eb2cf89a713475e17ca2bbe4cd94a362249 /Alc/ALc.c
parentaf362c2d05097fce816b5c5d911d6650eb6bef37 (diff)
Convert the OpenSL backend to the new backend API
This also removes the buffer queue callback's call to aluMixData, which could potentially block on a mutex.
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 39e29f9f..94e19267 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -99,7 +99,7 @@ static struct BackendInfo BackendList[] = {
{ "port", ALCportBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs },
#endif
#ifdef HAVE_OPENSL
- { "opensl", NULL, alc_opensl_init, alc_opensl_deinit, alc_opensl_probe, EmptyFuncs },
+ { "opensl", ALCopenslBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs },
#endif
{ "null", ALCnullBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs },