diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2023-10-17 11:11:13 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 11:11:13 +1000 |
commit | 871b40cdd90adec56b94974ce9014dc854336cc0 (patch) | |
tree | 03dfa08c16f80ca27a8e5c2b66f41ff34239970a /tools | |
parent | 355521021a5a4c7a4efdc6217207b2e02ec00872 (diff) | |
parent | 8905d673db80bac1312c925d545358e557384e21 (diff) |
Merge pull request #23886 from lrusak/freebsd-audio-app-params
CPlatformFreebsd: use app params to set audio backend
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Linux/kodi.sh.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/Linux/kodi.sh.in b/tools/Linux/kodi.sh.in index d68e23516d..52d4646db5 100644 --- a/tools/Linux/kodi.sh.in +++ b/tools/Linux/kodi.sh.in @@ -182,6 +182,8 @@ if [ -n "${KODI_AE_SINK}" ]; then ENV_ARGS="--audio-backend=pulseaudio" elif [ "${KODI_AE_SINK}" = "ALSA" ]; then ENV_ARGS="--audio-backend=alsa" + elif [ "${KODI_AE_SINK}" = "OSS" ]; then + ENV_ARGS="--audio-backend=oss" elif [ "${KODI_AE_SINK}" = "SNDIO" ]; then ENV_ARGS="--audio-backend=sndio" elif [ "${KODI_AE_SINK}" = "ALSA+PULSE" ]; then |