diff options
author | Chris Robinson <[email protected]> | 2010-05-28 16:41:52 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-05-28 16:41:52 -0700 |
commit | 880902feccccad61ceb8541b6571ae42a3e56d9a (patch) | |
tree | 7a7594e75f64938656d3d4bcbab5c62781a74183 /Alc/ALc.c | |
parent | 96cf5b728269915e24fdfde09eb4b9e3091a0980 (diff) |
Add a Null Output device
This device will mix and fully process contexts as normal
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -70,6 +70,7 @@ static BackendInfo BackendList[] = { { "port", alc_pa_init, alc_pa_deinit, alc_pa_probe, EmptyFuncs }, #endif + { "null", alc_null_init, alc_null_deinit, alc_null_probe, EmptyFuncs }, { "wave", alc_wave_init, alc_wave_deinit, alc_wave_probe, EmptyFuncs }, { NULL, NULL, NULL, NULL, EmptyFuncs } |