Removed alsa backend for now

This commit is contained in:
emeric
2026-02-18 19:32:43 +01:00
parent 7a30bb98f6
commit bdcbd11e87
4 changed files with 4 additions and 9 deletions
-2
View File
@@ -37,8 +37,6 @@ namespace lms::audio
case AudioOutputBackend::Auto:
#if LMS_HAVE_PULSEAUDIO
context = std::make_unique<pulseaudio::AudioOutputContext>(ioContext, name);
#elif LMS_HAVE_ALSA
context = std::make_unique<alsa::AudioOutputContext>(ioContext, name);
#endif
break;
-2
View File
@@ -100,8 +100,6 @@ namespace lms
{
std::string_view backend{ core::Service<core::IConfig>::get()->getString("jukebox-audio-backend", "auto") };
if (backend == "alsa")
return audio::AudioOutputBackend::ALSA;
if (backend == "pulseaudio")
return audio::AudioOutputBackend::PulseAudio;
if (backend == "auto")