mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Add mixer paths and profile-sets as well
So we don't have to rely on pulseaudio installed ones
This commit is contained in:
parent
a2de3b0873
commit
154f981f97
74 changed files with 6387 additions and 7 deletions
|
|
@ -52,7 +52,8 @@ else
|
|||
endif
|
||||
|
||||
spa_plugindir = join_paths(pipewire_libdir, spa_name)
|
||||
alsadatadir = join_paths('/usr', 'share', 'pulseaudio', 'alsa-mixer')
|
||||
|
||||
alsadatadir = join_paths(pipewire_datadir, 'alsa-card-profile', 'mixer')
|
||||
|
||||
pipewire_headers_dir = join_paths(pipewire_name, 'pipewire')
|
||||
|
||||
|
|
|
|||
|
|
@ -37,6 +37,8 @@ export PIPEWIRE_MODULE_DIR="${BUILDDIR}/src/modules"
|
|||
export PATH="${BUILDDIR}/src/daemon:${BUILDDIR}/src/tools:${BUILDDIR}/src/examples:${PATH}"
|
||||
export LD_LIBRARY_PATH="${BUILDDIR}/pipewire-pulseaudio/src/:${BUILDDIR}/src/pipewire/:${BUILDDIR}/pipewire-jack/src/${LD_LIBRARY_PATH+":$LD_LIBRARY_PATH"}"
|
||||
export GST_PLUGIN_PATH="${BUILDDIR}/src/gst/${GST_PLUGIN_PATH+":${GST_PLUGIN_PATH}"}"
|
||||
export ACP_PATHS_DIR=${PWD}"/spa/plugins/alsa/mixer/paths"
|
||||
export ACP_PROFILES_DIR=${PWD}"/spa/plugins/alsa/mixer/profile-sets"
|
||||
|
||||
# FIXME: find a nice, shell-neutral way to specify a prompt
|
||||
${SHELL}
|
||||
|
|
|
|||
|
|
@ -2441,12 +2441,17 @@ static int path_verify(pa_alsa_path *p) {
|
|||
}
|
||||
|
||||
static const char *get_default_paths_dir(void) {
|
||||
const char *str;
|
||||
#ifdef HAVE_RUNNING_FROM_BUILD_TREE
|
||||
if (pa_run_from_build_tree())
|
||||
return PA_SRCDIR "/modules/alsa/mixer/paths/";
|
||||
return PA_SRCDIR "mixer/paths";
|
||||
else
|
||||
#endif
|
||||
return PA_ALSA_PATHS_DIR;
|
||||
if (getenv("ACP_BUILDDIR") != NULL)
|
||||
return "mixer/paths";
|
||||
if ((str = getenv("ACP_PATHS_DIR")) != NULL)
|
||||
return str;
|
||||
return PA_ALSA_PATHS_DIR;
|
||||
}
|
||||
|
||||
pa_alsa_path* pa_alsa_path_new(const char *paths_dir, const char *fname, pa_alsa_direction_t direction) {
|
||||
|
|
@ -4417,6 +4422,20 @@ void pa_alsa_decibel_fix_dump(pa_alsa_decibel_fix *db_fix) {
|
|||
pa_xfree(db_values);
|
||||
}
|
||||
|
||||
static const char *get_default_profile_dir(void) {
|
||||
const char *str;
|
||||
#ifdef HAVE_RUNNING_FROM_BUILD_TREE
|
||||
if (pa_run_from_build_tree())
|
||||
return PA_SRCDIR "mixer/profile-sets";
|
||||
else
|
||||
#endif
|
||||
if (getenv("ACP_BUILDDIR") != NULL)
|
||||
return "mixer/profile-sets";
|
||||
if ((str = getenv("ACP_PROFILES_DIR")) != NULL)
|
||||
return str;
|
||||
return PA_ALSA_PROFILE_SETS_DIR;
|
||||
}
|
||||
|
||||
pa_alsa_profile_set* pa_alsa_profile_set_new(const char *fname, const pa_channel_map *bonus) {
|
||||
pa_alsa_profile_set *ps;
|
||||
pa_alsa_profile *p;
|
||||
|
|
@ -4470,10 +4489,7 @@ pa_alsa_profile_set* pa_alsa_profile_set_new(const char *fname, const pa_channel
|
|||
fname = "default.conf";
|
||||
|
||||
fn = pa_maybe_prefix_path(fname,
|
||||
#ifdef HAVE_RUNNING_FROM_BUILD_TREE
|
||||
pa_run_from_build_tree() ? PA_SRCDIR "/modules/alsa/mixer/profile-sets/" :
|
||||
#endif
|
||||
PA_ALSA_PROFILE_SETS_DIR);
|
||||
get_default_profile_dir());
|
||||
|
||||
r = pa_config_parse(fn, NULL, items, NULL, false, ps);
|
||||
pa_xfree(fn);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
subdir('acp')
|
||||
subdir('mixer')
|
||||
|
||||
spa_alsa_sources = ['alsa.c',
|
||||
'alsa-udev.c',
|
||||
|
|
|
|||
7
spa/plugins/alsa/mixer/meson.build
Normal file
7
spa/plugins/alsa/mixer/meson.build
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
install_subdir('paths',
|
||||
install_dir : alsadatadir
|
||||
)
|
||||
|
||||
install_subdir('profile-sets',
|
||||
install_dir : alsadatadir
|
||||
)
|
||||
65
spa/plugins/alsa/mixer/paths/analog-input-aux.conf
Normal file
65
spa/plugins/alsa/mixer/paths/analog-input-aux.conf
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where an 'Aux' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 80
|
||||
description-key = analog-input
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Aux]
|
||||
required = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Video]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic/Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element TV Tuner]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element FM]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input.conf.common
|
||||
104
spa/plugins/alsa/mixer/paths/analog-input-dock-mic.conf
Normal file
104
spa/plugins/alsa/mixer/paths/analog-input-dock-mic.conf
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Dock Mic' or 'Dock Mic Boost' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 78
|
||||
description-key = analog-input-microphone-dock
|
||||
|
||||
[Jack Dock Mic]
|
||||
required-any = any
|
||||
|
||||
[Jack Dock Mic Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
required-any = any
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Option Dock Mic Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Dock Mic Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Dock Mic]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Dock Mic]
|
||||
name = analog-input-microphone-dock
|
||||
required-any = any
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Dock Mic]
|
||||
name = analog-input-microphone-dock
|
||||
required-any = any
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input-mic.conf.common
|
||||
65
spa/plugins/alsa/mixer/paths/analog-input-fm.conf
Normal file
65
spa/plugins/alsa/mixer/paths/analog-input-fm.conf
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where an 'FM' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 70
|
||||
description-key = analog-input-radio
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Aux]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Video]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic/Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element TV Tuner]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element FM]
|
||||
required = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
.include analog-input.conf.common
|
||||
104
spa/plugins/alsa/mixer/paths/analog-input-front-mic.conf
Normal file
104
spa/plugins/alsa/mixer/paths/analog-input-front-mic.conf
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Front Mic' or 'Front Mic Boost' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 85
|
||||
description-key = analog-input-microphone-front
|
||||
|
||||
[Jack Front Mic]
|
||||
required-any = any
|
||||
|
||||
[Jack Front Mic Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Front Mic Boost]
|
||||
required-any = any
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Option Front Mic Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Front Mic Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Front Mic]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Front Mic]
|
||||
name = analog-input-microphone-front
|
||||
required-any = any
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Front Mic]
|
||||
name = analog-input-microphone-front
|
||||
required-any = any
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input-mic.conf.common
|
||||
102
spa/plugins/alsa/mixer/paths/analog-input-headphone-mic.conf
Normal file
102
spa/plugins/alsa/mixer/paths/analog-input-headphone-mic.conf
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For some ASUS netbooks that have one jack that can be either a Headphone
|
||||
; *or* a mic. This path will be active only when it is used as a mic.
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 87
|
||||
description-key = analog-input-microphone
|
||||
|
||||
[Jack Headphone Mic]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Headphone Mic Boost]
|
||||
required-any = any
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Headphone Mic]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Headphone Mic]
|
||||
name = analog-input-microphone
|
||||
required-any = any
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Headphone Mic]
|
||||
name = analog-input-microphone
|
||||
required-any = any
|
||||
|
||||
; Make sure the internal speakers are not auto-muted when you plug a mic in
|
||||
[Element Auto-Mute Mode]
|
||||
enumeration = select
|
||||
|
||||
[Option Auto-Mute Mode:Disabled]
|
||||
name = analog-input-microphone
|
||||
|
||||
[Element Front Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input-mic.conf.common
|
||||
114
spa/plugins/alsa/mixer/paths/analog-input-headset-mic.conf
Normal file
114
spa/plugins/alsa/mixer/paths/analog-input-headset-mic.conf
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Headset Mic' or 'Headset Mic Boost' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 88
|
||||
description-key = analog-input-microphone-headset
|
||||
|
||||
[Jack Headset Mic]
|
||||
required-any = any
|
||||
|
||||
[Jack Headset Mic Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Headphone]
|
||||
state.plugged = unknown
|
||||
|
||||
[Jack Front Headphone]
|
||||
state.plugged = unknown
|
||||
|
||||
[Jack Headphone Mic]
|
||||
state.plugged = unknown
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Headset Mic Boost]
|
||||
required-any = any
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Headset Mic]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Headset]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Headset Mic]
|
||||
name = Headset Microphone
|
||||
required-any = any
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Headset Mic]
|
||||
name = Headset Microphone
|
||||
required-any = any
|
||||
|
||||
[Element Front Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input-mic.conf.common
|
||||
|
|
@ -0,0 +1,133 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Internal Mic' or 'Internal Mic Boost' element exists
|
||||
; 'Int Mic' and 'Int Mic Boost' are for compatibility with kernels < 2.6.38
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 89
|
||||
description-key = analog-input-microphone-internal
|
||||
|
||||
[Jack Mic]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Dock Mic]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Front Mic]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Rear Mic]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Option Internal Mic Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Internal Mic Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Int Mic Boost]
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Option Int Mic Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Int Mic Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Int Mic]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Internal Mic]
|
||||
name = analog-input-microphone-internal
|
||||
|
||||
[Option Input Source:Int Mic]
|
||||
name = analog-input-microphone-internal
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Internal Mic]
|
||||
name = analog-input-microphone-internal
|
||||
|
||||
[Option Capture Source:Int Mic]
|
||||
name = analog-input-microphone-internal
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input-mic.conf.common
|
||||
154
spa/plugins/alsa/mixer/paths/analog-input-internal-mic.conf
Normal file
154
spa/plugins/alsa/mixer/paths/analog-input-internal-mic.conf
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Internal Mic' or 'Internal Mic Boost' element exists
|
||||
; 'Int Mic' and 'Int Mic Boost' are for compatibility with kernels < 2.6.38
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 89
|
||||
description-key = analog-input-microphone-internal
|
||||
|
||||
[Jack Mic]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Dock Mic]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Front Mic]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Rear Mic]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Internal Mic Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
required-any = any
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Option Internal Mic Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Internal Mic Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Int Mic Boost]
|
||||
required-any = any
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Option Int Mic Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Int Mic Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Internal Mic]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Int Mic]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Internal Mic]
|
||||
name = analog-input-microphone-internal
|
||||
required-any = any
|
||||
|
||||
[Option Input Source:Int Mic]
|
||||
name = analog-input-microphone-internal
|
||||
required-any = any
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Internal Mic]
|
||||
name = analog-input-microphone-internal
|
||||
required-any = any
|
||||
|
||||
[Option Capture Source:Int Mic]
|
||||
name = analog-input-microphone-internal
|
||||
required-any = any
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Headphone Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Headphone Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input-mic.conf.common
|
||||
141
spa/plugins/alsa/mixer/paths/analog-input-linein.conf
Normal file
141
spa/plugins/alsa/mixer/paths/analog-input-linein.conf
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Line' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 81
|
||||
|
||||
[Jack Line]
|
||||
required-any = any
|
||||
|
||||
[Jack Line Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Line Boost]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Line]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Line]
|
||||
name = analog-input-linein
|
||||
required-any = any
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Line]
|
||||
name = analog-input-linein
|
||||
required-any = any
|
||||
|
||||
[Element PCM Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option PCM Capture Source:Line]
|
||||
name = analog-input-linein
|
||||
required-any = any
|
||||
|
||||
[Option PCM Capture Source:Line In]
|
||||
name = analog-input-linein
|
||||
required-any = any
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Aux]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Video]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic/Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element TV Tuner]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element FM]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic Jack Mode]
|
||||
enumeration = select
|
||||
|
||||
[Option Mic Jack Mode:Line In]
|
||||
priority = 19
|
||||
name = input-linein
|
||||
66
spa/plugins/alsa/mixer/paths/analog-input-mic-line.conf
Normal file
66
spa/plugins/alsa/mixer/paths/analog-input-mic-line.conf
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Mic/Line' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 85
|
||||
description-key = analog-input
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Aux]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Video]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic/Line]
|
||||
required = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element TV Tuner]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element FM]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input.conf.common
|
||||
.include analog-input-mic.conf.common
|
||||
138
spa/plugins/alsa/mixer/paths/analog-input-mic.conf
Normal file
138
spa/plugins/alsa/mixer/paths/analog-input-mic.conf
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Mic' or 'Mic Boost' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 87
|
||||
description-key = analog-input-microphone
|
||||
|
||||
[Jack Mic]
|
||||
required-any = any
|
||||
|
||||
[Jack Mic Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Mic Boost]
|
||||
required-any = any
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Option Mic Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Mic Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Mic]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Mic]
|
||||
name = analog-input-microphone
|
||||
required-any = any
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Mic]
|
||||
name = analog-input-microphone
|
||||
required-any = any
|
||||
|
||||
[Element PCM Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option PCM Capture Source:Mic]
|
||||
name = analog-input-microphone
|
||||
required-any = any
|
||||
|
||||
[Option PCM Capture Source:Mic-In/Mic Array]
|
||||
name = analog-input-microphone
|
||||
required-any = any
|
||||
|
||||
;;; Some AC'97s have "Mic Select" and "Mic Boost (+20dB)"
|
||||
|
||||
[Element Mic Select]
|
||||
enumeration = select
|
||||
|
||||
[Option Mic Select:Mic1]
|
||||
name = input-microphone
|
||||
priority = 20
|
||||
|
||||
[Option Mic Select:Mic2]
|
||||
name = input-microphone
|
||||
priority = 19
|
||||
|
||||
[Element Mic Boost (+20dB)]
|
||||
switch = select
|
||||
volume = merge
|
||||
|
||||
[Option Mic Boost (+20dB):on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Mic Boost (+20dB):off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Front Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input-mic.conf.common
|
||||
60
spa/plugins/alsa/mixer/paths/analog-input-mic.conf.common
Normal file
60
spa/plugins/alsa/mixer/paths/analog-input-mic.conf.common
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Common element for all microphone inputs
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[Properties]
|
||||
device.icon_name = audio-input-microphone
|
||||
|
||||
[Element Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Line Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Aux]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Video]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic/Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element TV Tuner]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element FM]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Inverted Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic Jack Mode]
|
||||
enumeration = select
|
||||
|
||||
[Option Mic Jack Mode:Mic In]
|
||||
priority = 19
|
||||
name = input-microphone
|
||||
104
spa/plugins/alsa/mixer/paths/analog-input-rear-mic.conf
Normal file
104
spa/plugins/alsa/mixer/paths/analog-input-rear-mic.conf
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Rear Mic' or 'Rear Mic Boost' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 82
|
||||
description-key = analog-input-microphone-rear
|
||||
|
||||
[Jack Rear Mic]
|
||||
required-any = any
|
||||
|
||||
[Jack Rear Mic Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
required-any = any
|
||||
switch = select
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Option Rear Mic Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Rear Mic Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Rear Mic]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Rear Mic]
|
||||
name = analog-input-microphone-rear
|
||||
required-any = any
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:Rear Mic]
|
||||
name = analog-input-microphone-rear
|
||||
required-any = any
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front Mic Boost]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input-mic.conf.common
|
||||
65
spa/plugins/alsa/mixer/paths/analog-input-tvtuner.conf
Normal file
65
spa/plugins/alsa/mixer/paths/analog-input-tvtuner.conf
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'TV Tuner' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 70
|
||||
description-key = analog-input-video
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Aux]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Video]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Mic/Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element TV Tuner]
|
||||
required = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element FM]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input.conf.common
|
||||
64
spa/plugins/alsa/mixer/paths/analog-input-video.conf
Normal file
64
spa/plugins/alsa/mixer/paths/analog-input-video.conf
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; For devices where a 'Video' element exists
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 70
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Internal Mic]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Aux]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Video]
|
||||
required = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Mic/Line]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element TV Tuner]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element FM]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-input.conf.common
|
||||
102
spa/plugins/alsa/mixer/paths/analog-input.conf
Normal file
102
spa/plugins/alsa/mixer/paths/analog-input.conf
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; A fallback for devices that lack separate Mic/Line/Aux/Video/TV
|
||||
; Tuner/FM elements
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 100
|
||||
|
||||
[Element Capture]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Mic]
|
||||
required-absent = any
|
||||
|
||||
[Element Mic Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Dock Mic]
|
||||
required-absent = any
|
||||
|
||||
[Element Dock Mic Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Front Mic]
|
||||
required-absent = any
|
||||
|
||||
[Element Front Mic Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Int Mic]
|
||||
required-absent = any
|
||||
|
||||
[Element Int Mic Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Internal Mic]
|
||||
required-absent = any
|
||||
|
||||
[Element Internal Mic Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Rear Mic]
|
||||
required-absent = any
|
||||
|
||||
[Element Rear Mic Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Headset]
|
||||
required-absent = any
|
||||
|
||||
[Element Headset Mic]
|
||||
required-absent = any
|
||||
|
||||
[Element Headset Mic Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Headphone Mic]
|
||||
required-absent = any
|
||||
|
||||
[Element Headphone Mic Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Line]
|
||||
required-absent = any
|
||||
|
||||
[Element Line Boost]
|
||||
required-absent = any
|
||||
|
||||
[Element Aux]
|
||||
required-absent = any
|
||||
|
||||
[Element Video]
|
||||
required-absent = any
|
||||
|
||||
[Element Mic/Line]
|
||||
required-absent = any
|
||||
|
||||
[Element TV Tuner]
|
||||
required-absent = any
|
||||
|
||||
[Element FM]
|
||||
required-absent = any
|
||||
|
||||
.include analog-input.conf.common
|
||||
289
spa/plugins/alsa/mixer/paths/analog-input.conf.common
Normal file
289
spa/plugins/alsa/mixer/paths/analog-input.conf.common
Normal file
|
|
@ -0,0 +1,289 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Mixer path for PulseAudio's ALSA backend, common elements for all
|
||||
; input paths. If multiple options by the same id are discovered they
|
||||
; will be suffixed with a number to distinguish them, in the same
|
||||
; order they appear here.
|
||||
;
|
||||
; Source selection should use the following names:
|
||||
;
|
||||
; input -- If we don't know the exact kind of input
|
||||
; input-microphone
|
||||
; input-microphone-internal
|
||||
; input-microphone-external
|
||||
; input-linein
|
||||
; input-video
|
||||
; input-radio
|
||||
; input-docking-microphone
|
||||
; input-docking-linein
|
||||
; input-docking
|
||||
;
|
||||
; We explicitly don't want to wrap the following sources:
|
||||
;
|
||||
; CD
|
||||
; Synth/MIDI
|
||||
; Phone
|
||||
; Mix
|
||||
; Digital/SPDIF
|
||||
; Master
|
||||
; PC Speaker
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
;;; 'Input Source Select'
|
||||
|
||||
[Element Input Source Select]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source Select:Input1]
|
||||
name = input
|
||||
priority = 10
|
||||
|
||||
[Option Input Source Select:Input2]
|
||||
name = input
|
||||
priority = 5
|
||||
|
||||
;;; 'Input Source'
|
||||
|
||||
[Element Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Input Source:Digital Mic]
|
||||
name = input-microphone
|
||||
priority = 20
|
||||
|
||||
[Option Input Source:Microphone]
|
||||
name = input-microphone
|
||||
priority = 20
|
||||
|
||||
[Option Input Source:Front Microphone]
|
||||
name = input-microphone
|
||||
priority = 19
|
||||
|
||||
[Option Input Source:Internal Mic 1]
|
||||
name = input-microphone
|
||||
priority = 19
|
||||
|
||||
[Option Input Source:Line-In]
|
||||
name = input-linein
|
||||
priority = 18
|
||||
|
||||
[Option Input Source:Line In]
|
||||
name = input-linein
|
||||
priority = 18
|
||||
|
||||
[Option Input Source:Docking-Station]
|
||||
name = input-docking
|
||||
priority = 17
|
||||
|
||||
[Option Input Source:AUX IN]
|
||||
name = input
|
||||
priority = 10
|
||||
|
||||
;;; 'Capture Source'
|
||||
|
||||
[Element Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Capture Source:TV Tuner]
|
||||
name = input-video
|
||||
|
||||
[Option Capture Source:FM]
|
||||
name = input-radio
|
||||
|
||||
[Option Capture Source:Mic/Line]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Line/Mic]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Microphone]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:Int DMic]
|
||||
name = input-microphone-internal
|
||||
|
||||
[Option Capture Source:iMic]
|
||||
name = input-microphone-internal
|
||||
|
||||
[Option Capture Source:i-Mic]
|
||||
name = input-microphone-internal
|
||||
|
||||
[Option Capture Source:Internal Microphone]
|
||||
name = input-microphone-internal
|
||||
|
||||
[Option Capture Source:Front Microphone]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:Mic1]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:Mic2]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:D-Mic]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:IntMic]
|
||||
name = input-microphone-internal
|
||||
|
||||
[Option Capture Source:ExtMic]
|
||||
name = input-microphone-external
|
||||
|
||||
[Option Capture Source:Ext Mic]
|
||||
name = input-microphone-external
|
||||
|
||||
[Option Capture Source:E-Mic]
|
||||
name = input-microphone-external
|
||||
|
||||
[Option Capture Source:e-Mic]
|
||||
name = input-microphone-external
|
||||
|
||||
[Option Capture Source:LineIn]
|
||||
name = input-linein
|
||||
|
||||
[Option Capture Source:Analog]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Line-In]
|
||||
name = input-linein
|
||||
|
||||
[Option Capture Source:Line In]
|
||||
name = input-linein
|
||||
|
||||
[Option Capture Source:Video]
|
||||
name = input-video
|
||||
|
||||
[Option Capture Source:Aux]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Aux0]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Aux1]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Aux2]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Aux3]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:AUX IN]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Aux In]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:AOUT]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:AUX]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Cam Mic]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:Digital Mic]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:Digital Mic 1]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:Digital Mic 2]
|
||||
name = input-microphone
|
||||
|
||||
[Option Capture Source:Analog Inputs]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Unknown1]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Unknown2]
|
||||
name = input
|
||||
|
||||
[Option Capture Source:Docking-Station]
|
||||
name = input-docking
|
||||
|
||||
;;; 'Mic Jack Mode'
|
||||
|
||||
[Element Mic Jack Mode]
|
||||
enumeration = select
|
||||
|
||||
[Option Mic Jack Mode:Mic In]
|
||||
name = input-microphone
|
||||
|
||||
[Option Mic Jack Mode:Line In]
|
||||
name = input-linein
|
||||
|
||||
;;; 'Digital Input Source'
|
||||
|
||||
[Element Digital Input Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Digital Input Source:Digital Mic 1]
|
||||
name = input-microphone
|
||||
|
||||
[Option Digital Input Source:Analog Inputs]
|
||||
name = input
|
||||
|
||||
[Option Digital Input Source:Digital Mic 2]
|
||||
name = input-microphone
|
||||
|
||||
;;; 'Analog Source'
|
||||
|
||||
[Element Analog Source]
|
||||
enumeration = select
|
||||
|
||||
[Option Analog Source:Mic]
|
||||
name = input-microphone
|
||||
|
||||
[Option Analog Source:Line in]
|
||||
name = input-linein
|
||||
|
||||
[Option Analog Source:Aux]
|
||||
name = input
|
||||
|
||||
;;; 'Shared Mic/Line in'
|
||||
|
||||
[Element Shared Mic/Line in]
|
||||
enumeration = select
|
||||
|
||||
[Option Shared Mic/Line in:Mic in]
|
||||
name = input-microphone
|
||||
|
||||
[Option Shared Mic/Line in:Line in]
|
||||
name = input-linein
|
||||
|
||||
;;; Various Boosts
|
||||
|
||||
[Element Capture Boost]
|
||||
switch = select
|
||||
|
||||
[Option Capture Boost:on]
|
||||
name = input-boost-on
|
||||
|
||||
[Option Capture Boost:off]
|
||||
name = input-boost-off
|
||||
|
||||
[Element Auto Gain Control]
|
||||
switch = select
|
||||
|
||||
[Option Auto Gain Control:on]
|
||||
name = input-agc-on
|
||||
|
||||
[Option Auto Gain Control:off]
|
||||
name = input-agc-off
|
||||
102
spa/plugins/alsa/mixer/paths/analog-output-headphones-2.conf
Normal file
102
spa/plugins/alsa/mixer/paths/analog-output-headphones-2.conf
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Path for mixers that have a 'Headphone2' control
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 98
|
||||
description-key = analog-output-headphones
|
||||
|
||||
[Properties]
|
||||
device.icon_name = audio-headphones
|
||||
|
||||
[Element Hardware Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master Mono]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
; This profile path is intended to control the second headphones, not
|
||||
; the first headphones. But it should not hurt if we leave the
|
||||
; headphone jack enabled nonetheless.
|
||||
[Element Headphone]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Headphone+LO]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Speaker+LO]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Headphone2]
|
||||
required = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Desktop Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
; On some machines Front is actually a part of the Headphone path
|
||||
[Element Front]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Rear]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Surround]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Side]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Center]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element LFE]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Bass Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-output.conf.common
|
||||
160
spa/plugins/alsa/mixer/paths/analog-output-headphones.conf
Normal file
160
spa/plugins/alsa/mixer/paths/analog-output-headphones.conf
Normal file
|
|
@ -0,0 +1,160 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Path for mixers that have a 'Headphone' control
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 99
|
||||
description-key = analog-output-headphones
|
||||
|
||||
[Properties]
|
||||
device.icon_name = audio-headphones
|
||||
|
||||
[Jack Dock Headphone]
|
||||
required-any = any
|
||||
|
||||
[Jack Dock Headphone Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Front Headphone]
|
||||
required-any = any
|
||||
|
||||
[Jack Front Headphone Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Headphone]
|
||||
required-any = any
|
||||
|
||||
[Jack Headphone Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
# This jack can be either a headphone *or* a mic. Used on some ASUS netbooks.
|
||||
[Jack Headphone Mic]
|
||||
required-any = any
|
||||
|
||||
[Element Hardware Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master Mono]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker+LO]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Headphone+LO]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Headphone]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Headset]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Line HP Swap]
|
||||
switch = on
|
||||
required-any = any
|
||||
|
||||
; This profile path is intended to control the first headphones, not
|
||||
; the second headphones. But it should not hurt if we leave the second
|
||||
; headphone jack enabled nonetheless.
|
||||
[Element Headphone2]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Desktop Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
; On some machines Front is actually a part of the Headphone path
|
||||
[Element Front]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Rear]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Surround]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Side]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Center]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element LFE]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Bass Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker Front]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker Surround]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker Side]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker CLFE]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-output.conf.common
|
||||
204
spa/plugins/alsa/mixer/paths/analog-output-lineout.conf
Normal file
204
spa/plugins/alsa/mixer/paths/analog-output-lineout.conf
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
[General]
|
||||
priority = 90
|
||||
description-key = analog-output-lineout
|
||||
|
||||
[Jack Line Out]
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Front Line Out]
|
||||
required-any = any
|
||||
|
||||
[Jack Front Line Out Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Rear Line Out]
|
||||
required-any = any
|
||||
|
||||
[Jack Rear Line Out Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out Front]
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out Front Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out CLFE]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out CLFE Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out Surround]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out Surround Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out Side]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Line Out Side Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Jack Dock Line Out]
|
||||
required-any = any
|
||||
|
||||
[Jack Dock Line Out Phantom]
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
required-any = any
|
||||
|
||||
[Element Hardware Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Speaker+LO]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
required-any = any
|
||||
|
||||
[Element Headphone+LO]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
required-any = any
|
||||
|
||||
[Element Master Mono]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Line HP Swap]
|
||||
switch = off
|
||||
required-any = any
|
||||
|
||||
; This profile path is intended to control line out, let's mute headphones
|
||||
; else there will be a spike when plugging in headphones
|
||||
[Element Headphone]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Headphone2]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Desktop Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-front
|
||||
override-map.2 = front-left,front-right
|
||||
|
||||
[Element Rear]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Surround]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Side]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-side
|
||||
override-map.2 = side-left,side-right
|
||||
|
||||
[Element Center]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,all-center
|
||||
|
||||
[Element LFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = lfe
|
||||
override-map.2 = lfe,lfe
|
||||
|
||||
[Element CLFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,lfe
|
||||
|
||||
[Element Bass Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker Front]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker Surround]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker Side]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker CLFE]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-output.conf.common
|
||||
95
spa/plugins/alsa/mixer/paths/analog-output-mono.conf
Normal file
95
spa/plugins/alsa/mixer/paths/analog-output-mono.conf
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Intended for usage on boards that have a separate Mono output plug.
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 50
|
||||
|
||||
[Element Hardware Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Master Mono]
|
||||
required = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
; This profile path is intended to control the speaker, not the
|
||||
; headphones. But it should not hurt if we leave the headphone jack
|
||||
; enabled nonetheless.
|
||||
[Element Headphone]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Headphone+LO]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Headphone2]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Speaker+LO]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Desktop Speaker]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Rear]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Surround]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Side]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Center]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element LFE]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
.include analog-output.conf.common
|
||||
177
spa/plugins/alsa/mixer/paths/analog-output-speaker-always.conf
Normal file
177
spa/plugins/alsa/mixer/paths/analog-output-speaker-always.conf
Normal file
|
|
@ -0,0 +1,177 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Path for mixers that don't have a 'Speaker' control, but where we
|
||||
; force enable the speaker paths nonetheless.
|
||||
; Needed for some older Dell laptops.
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 100
|
||||
description-key = analog-output-speaker
|
||||
|
||||
[Properties]
|
||||
device.icon_name = audio-speakers
|
||||
|
||||
[Jack Headphone]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Front Headphone]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Line Out]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Line Out Front]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Front Line Out]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Rear Line Out]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Dock Line Out]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Element Hardware Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master Mono]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
; This profile path is intended to control the speaker, not the
|
||||
; headphones. But it should not hurt if we leave the headphone jack
|
||||
; enabled nonetheless.
|
||||
[Element Headphone]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Headphone2]
|
||||
switch = mute
|
||||
volume = zero
|
||||
|
||||
[Element Headphone+LO]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker+LO]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Desktop Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Front]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-front
|
||||
override-map.2 = front-left,front-right
|
||||
|
||||
[Element Front Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-front
|
||||
override-map.2 = front-left,front-right
|
||||
|
||||
[Element Rear]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Surround]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Surround Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Side]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-side
|
||||
override-map.2 = side-left,side-right
|
||||
|
||||
[Element Center]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,all-center
|
||||
|
||||
[Element Center Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,all-center
|
||||
|
||||
[Element LFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = lfe
|
||||
override-map.2 = lfe,lfe
|
||||
|
||||
[Element LFE Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = lfe
|
||||
override-map.2 = lfe,lfe
|
||||
|
||||
[Element Bass Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = lfe
|
||||
override-map.2 = lfe,lfe
|
||||
|
||||
[Element CLFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,lfe
|
||||
|
||||
.include analog-output.conf.common
|
||||
226
spa/plugins/alsa/mixer/paths/analog-output-speaker.conf
Normal file
226
spa/plugins/alsa/mixer/paths/analog-output-speaker.conf
Normal file
|
|
@ -0,0 +1,226 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Path for mixers that have a 'Speaker' control
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 100
|
||||
description-key = analog-output-speaker
|
||||
|
||||
[Properties]
|
||||
device.icon_name = audio-speakers
|
||||
|
||||
[Jack Headphone]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Dock Headphone]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Front Headphone]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Line Out]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Line Out Front]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Front Line Out]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Rear Line Out]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Dock Line Out]
|
||||
state.plugged = no
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Speaker]
|
||||
required-any = any
|
||||
|
||||
[Jack Speaker Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
[Jack Speaker Front Phantom]
|
||||
required-any = any
|
||||
state.plugged = unknown
|
||||
state.unplugged = unknown
|
||||
|
||||
[Element Hardware Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master Mono]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
; This profile path is intended to control the speaker, let's mute headphones
|
||||
; else there will be a spike when plugging in headphones
|
||||
[Element Headphone]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Headphone2]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Headphone+LO]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Speaker+LO]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Speaker]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Desktop Speaker]
|
||||
required-any = any
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Front]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-front
|
||||
override-map.2 = front-left,front-right
|
||||
|
||||
[Element Front Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-front
|
||||
override-map.2 = front-left,front-right
|
||||
required-any = any
|
||||
|
||||
[Element Speaker Front]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-front
|
||||
override-map.2 = front-left,front-right
|
||||
required-any = any
|
||||
|
||||
[Element Rear]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Surround]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Surround Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
required-any = any
|
||||
|
||||
[Element Speaker Surround]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
required-any = any
|
||||
|
||||
[Element Side]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-side
|
||||
override-map.2 = side-left,side-right
|
||||
|
||||
[Element Speaker Side]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-side
|
||||
override-map.2 = side-left,side-right
|
||||
|
||||
[Element Center]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,all-center
|
||||
|
||||
[Element Center Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,all-center
|
||||
required-any = any
|
||||
|
||||
[Element LFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = lfe
|
||||
override-map.2 = lfe,lfe
|
||||
|
||||
[Element LFE Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = lfe
|
||||
override-map.2 = lfe,lfe
|
||||
required-any = any
|
||||
|
||||
[Element Bass Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = lfe
|
||||
override-map.2 = lfe,lfe
|
||||
required-any = any
|
||||
|
||||
[Element CLFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,lfe
|
||||
|
||||
[Element Speaker CLFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,lfe
|
||||
|
||||
.include analog-output.conf.common
|
||||
82
spa/plugins/alsa/mixer/paths/analog-output.conf
Normal file
82
spa/plugins/alsa/mixer/paths/analog-output.conf
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Intended for the 'default' output. Note that a-o-speaker.conf has a
|
||||
; higher priority than this
|
||||
;
|
||||
; See analog-output.conf.common for an explanation on the directives
|
||||
|
||||
[General]
|
||||
priority = 99
|
||||
|
||||
[Element Hardware Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element Master Mono]
|
||||
switch = off
|
||||
volume = off
|
||||
|
||||
[Element Front]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-front
|
||||
override-map.2 = front-left,front-right
|
||||
|
||||
[Element Rear]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Surround]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-rear
|
||||
override-map.2 = rear-left,rear-right
|
||||
|
||||
[Element Side]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-side
|
||||
override-map.2 = side-left,side-right
|
||||
|
||||
[Element Center]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,all-center
|
||||
|
||||
[Element LFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = lfe
|
||||
override-map.2 = lfe,lfe
|
||||
|
||||
[Element CLFE]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all-center
|
||||
override-map.2 = all-center,lfe
|
||||
|
||||
.include analog-output.conf.common
|
||||
184
spa/plugins/alsa/mixer/paths/analog-output.conf.common
Normal file
184
spa/plugins/alsa/mixer/paths/analog-output.conf.common
Normal file
|
|
@ -0,0 +1,184 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Common part of all paths
|
||||
|
||||
; So here's generally how mixer paths are used by PA: PA goes through
|
||||
; a mixer path file from top to bottom and checks if a mixer element
|
||||
; described therein exists. If so it is added to the list of mixer
|
||||
; elements PA will control, keeping the order it read them in. If a
|
||||
; mixer element described here has set the required= or
|
||||
; required-absent= directives a path might not be accepted as valid
|
||||
; and is ignored in its entirety (see below). However usually if a
|
||||
; element listed here is missing this one element is ignored but not
|
||||
; the entire path.
|
||||
;
|
||||
; When a device shall be muted/unmuted *all* elements listed in a path
|
||||
; file with "switch = mute" will be toggled.
|
||||
;
|
||||
; When a device shall change its volume, PA will got through the list
|
||||
; of all elements with "volume = merge" and set the volume on the
|
||||
; first element. If that element does not support dB volumes, this is
|
||||
; where the story ends. If it does support dB volumes, PA divides the
|
||||
; requested volume by the volume that was set on this element, and
|
||||
; then go on to the next element with "volume = merge" and then set
|
||||
; that there, and so on. That way the first volume element in the
|
||||
; path will be the one that does the 'biggest' part of the overall
|
||||
; volume adjustment, with the remaining elements usually being set to
|
||||
; some value next to 0dB. This logic makes sure we get the full range
|
||||
; over all volume sliders and a very high granularity of volumes
|
||||
; already in hardware.
|
||||
;
|
||||
; All switches and enumerations set to "select" are exposed via the
|
||||
; "port" functionality of sinks/sources. Basically every possible
|
||||
; switch setting and every possible enumeration setting will be
|
||||
; combined and made into a "port". So make sure you don't list too
|
||||
; many switches/enums for exposing, because the number of ports might
|
||||
; rise exponentially.
|
||||
;
|
||||
; Only one path can be selected at a time. All paths that are valid
|
||||
; for an audio device will be exposed as "port" for the sink/source.
|
||||
|
||||
|
||||
; [General]
|
||||
; priority = ... # Priority for this path
|
||||
; description-key = ... # The path description is looked up from a table in path_verify() in
|
||||
; # src/modules/alsa/alsa-mixer.c. By default the path name (i.e. the file name
|
||||
; # minus the ".conf" suffix) is used as the lookup key, but if this option is
|
||||
; # set, then the given string is used as the key instead. In any case the
|
||||
; # "description" option can be used to override the path description.
|
||||
; description = ... # Description for this path. Overrides the normal description lookup logic, as
|
||||
; # described in the "description-key" documentation above.
|
||||
; mute-during-activation = yes | no # If this path supports hardware mute, should the hw mute be used while activating this
|
||||
; # path? In some cases this can reduce extra noises during port switching, while in other
|
||||
; # cases this can increase such noises. Default: no.
|
||||
; eld-device = ... # If this is an HDMI port, set to "auto" so that PulseAudio will try to read
|
||||
; # the monitor ELD information from the ALSA mixer. By default the ELD information
|
||||
; # is not read, because it's only applicable with HDMI. Earlier the "auto" option
|
||||
; # didn't exist, and the hw device index had to be manually configured. For
|
||||
; # backwards compatibility, it's still possible to manually configure the device
|
||||
; # index using this option.
|
||||
;
|
||||
; [Properties] # Property list for this path. The list is merged into the port property list.
|
||||
; <key> = <value> # Each property is defined on its own line.
|
||||
; ...
|
||||
;
|
||||
; [Option ...:...] # For each option of an enumeration or switch element
|
||||
; # that shall be exposed as a sink/source port. Needs to
|
||||
; # be named after the Element, followed by a colon, followed
|
||||
; # by the option name, resp. on/off if the element is a switch.
|
||||
; name = ... # Logical name to use in the path identifier
|
||||
; priority = ... # Priority if this is made into a device port
|
||||
; required = ignore | enumeration | any # In this element, this option must exist or the path will be invalid. ("any" is an alias for "enumeration".)
|
||||
; required-any = ignore | enumeration | any # In this element, either this or another option must exist (or an element)
|
||||
; required-absent = ignore | enumeration | any # In this element, this option must not exist or the path will be invalid
|
||||
;
|
||||
; [Element ...] # For each element that we shall control. The "..." here is the element name,
|
||||
; # or name and index separated by a comma.
|
||||
; required = ignore | switch | volume | enumeration | any # If set, require this element to be of this kind and available,
|
||||
; # otherwise don't consider this path valid for the card
|
||||
; required-any = ignore | switch | volume | enumeration | any # If set, at least one of the elements or jacks with required-any in this
|
||||
; # path must be present, otherwise this path is invalid for the card
|
||||
; required-absent = ignore | switch | volume # If set, require this element to not be of this kind and not
|
||||
; # available, otherwise don't consider this path valid for the card
|
||||
;
|
||||
; switch = ignore | mute | off | on | select # What to do with this switch: ignore it, make it follow mute status,
|
||||
; # always set it to off, always to on, or make it selectable as port.
|
||||
; # If set to 'select' you need to define an Option section for on
|
||||
; # and off
|
||||
; volume = ignore | merge | off | zero | <volume step> # What to do with this volume: ignore it, merge it into the device
|
||||
; # volume slider, always set it to the lowest value possible, or always
|
||||
; # set it to 0 dB (for whatever that means), or always set it to
|
||||
; # <volume step> (this only makes sense in path configurations where
|
||||
; # the exact hardware and driver are known beforehand).
|
||||
; volume-limit = <volume step> # Limit the maximum volume by disabling the volume steps above <volume step>.
|
||||
; enumeration = ignore | select # What to do with this enumeration, ignore it or make it selectable
|
||||
; # via device ports. If set to 'select' you need to define an Option section
|
||||
; # for each of the items you want to expose
|
||||
; direction = playback | capture # Is this relevant only for playback or capture? If not set this will implicitly be
|
||||
; # set the direction of the PCM device is opened as. Generally this doesn't need to be set
|
||||
; # unless you have a broken driver that has playback controls marked for capture or vice
|
||||
; # versa
|
||||
; direction-try-other = no | yes # If the element does not supported what is requested, try the other direction, too?
|
||||
;
|
||||
; override-map.1 = ... # Override the channel mask of the mixer control if the control only exposes a single channel
|
||||
; override-map.2 = ... # Override the channel masks of the mixer control if the control only exposes two channels
|
||||
; # Override maps should list for each element channel which high-level channels it controls via a
|
||||
; # channel mask. A channel mask may either be the name of a single channel, or the words "all-left",
|
||||
; # "all-right", "all-center", "all-front", "all-rear", and "all" to encode a specific subset of
|
||||
; # channels in a mask
|
||||
; [Jack ...] # For each jack that we will use for jack detection
|
||||
; # The name 'Jack Foo' must match ALSA's 'Foo Jack' control.
|
||||
; required = ignore | any # If not set to ignore, make the path invalid if this jack control is not present.
|
||||
; required-absent = ignore | any # If not set to ignore, make the path invalid if this jack control is present.
|
||||
; required-any = ignore | any # If not set to ignore, make the path invalid if no jack controls and no elements with
|
||||
; # the required-any are present.
|
||||
; state.plugged = yes | no | unknown # Normally a plugged jack would mean the port becomes available, and an unplugged means it's
|
||||
; state.unplugged = yes | no | unknown # unavailable, but the port status can be overridden by specifying state.plugged and/or state.unplugged.
|
||||
; append-pcm-to-name = no | yes # Add ",pcm=N" to the jack name? N is the hw PCM device index. HDMI jacks have
|
||||
; # the PCM device index in their name, but different drivers use different
|
||||
; # numbering schemes, so we can't hardcode the full jack name in our configuration
|
||||
; # files.
|
||||
|
||||
[Element PCM]
|
||||
switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
||||
[Element External Amplifier]
|
||||
switch = select
|
||||
|
||||
[Option External Amplifier:on]
|
||||
name = output-amplifier-on
|
||||
priority = 10
|
||||
|
||||
[Option External Amplifier:off]
|
||||
name = output-amplifier-off
|
||||
priority = 0
|
||||
|
||||
[Element Bass Boost]
|
||||
switch = select
|
||||
|
||||
[Option Bass Boost:on]
|
||||
name = output-bass-boost-on
|
||||
priority = 0
|
||||
|
||||
[Option Bass Boost:off]
|
||||
name = output-bass-boost-off
|
||||
priority = 10
|
||||
|
||||
[Element IEC958]
|
||||
switch = off
|
||||
|
||||
[Element IEC958 Optical Raw]
|
||||
switch = off
|
||||
|
||||
;;; 'Analog Output'
|
||||
|
||||
[Element Analog Output]
|
||||
enumeration = select
|
||||
|
||||
[Option Analog Output:Speakers]
|
||||
name = output-speaker
|
||||
priority = 10
|
||||
|
||||
[Option Analog Output:Headphones]
|
||||
name = output-headphones
|
||||
priority = 9
|
||||
|
||||
[Option Analog Output:FP Headphones]
|
||||
name = output-headphones
|
||||
priority = 8
|
||||
11
spa/plugins/alsa/mixer/paths/hdmi-output-0.conf
Normal file
11
spa/plugins/alsa/mixer/paths/hdmi-output-0.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[General]
|
||||
description = HDMI / DisplayPort
|
||||
priority = 59
|
||||
eld-device = auto
|
||||
|
||||
[Properties]
|
||||
device.icon_name = video-display
|
||||
|
||||
[Jack HDMI/DP]
|
||||
append-pcm-to-name = yes
|
||||
required = ignore
|
||||
11
spa/plugins/alsa/mixer/paths/hdmi-output-1.conf
Normal file
11
spa/plugins/alsa/mixer/paths/hdmi-output-1.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[General]
|
||||
description = HDMI / DisplayPort 2
|
||||
priority = 58
|
||||
eld-device = auto
|
||||
|
||||
[Properties]
|
||||
device.icon_name = video-display
|
||||
|
||||
[Jack HDMI/DP]
|
||||
append-pcm-to-name = yes
|
||||
required = ignore
|
||||
11
spa/plugins/alsa/mixer/paths/hdmi-output-2.conf
Normal file
11
spa/plugins/alsa/mixer/paths/hdmi-output-2.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[General]
|
||||
description = HDMI / DisplayPort 3
|
||||
priority = 57
|
||||
eld-device = auto
|
||||
|
||||
[Properties]
|
||||
device.icon_name = video-display
|
||||
|
||||
[Jack HDMI/DP]
|
||||
append-pcm-to-name = yes
|
||||
required = ignore
|
||||
11
spa/plugins/alsa/mixer/paths/hdmi-output-3.conf
Normal file
11
spa/plugins/alsa/mixer/paths/hdmi-output-3.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[General]
|
||||
description = HDMI / DisplayPort 4
|
||||
priority = 56
|
||||
eld-device = auto
|
||||
|
||||
[Properties]
|
||||
device.icon_name = video-display
|
||||
|
||||
[Jack HDMI/DP]
|
||||
append-pcm-to-name = yes
|
||||
required = ignore
|
||||
11
spa/plugins/alsa/mixer/paths/hdmi-output-4.conf
Normal file
11
spa/plugins/alsa/mixer/paths/hdmi-output-4.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[General]
|
||||
description = HDMI / DisplayPort 5
|
||||
priority = 55
|
||||
eld-device = auto
|
||||
|
||||
[Properties]
|
||||
device.icon_name = video-display
|
||||
|
||||
[Jack HDMI/DP]
|
||||
append-pcm-to-name = yes
|
||||
required = ignore
|
||||
11
spa/plugins/alsa/mixer/paths/hdmi-output-5.conf
Normal file
11
spa/plugins/alsa/mixer/paths/hdmi-output-5.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[General]
|
||||
description = HDMI / DisplayPort 6
|
||||
priority = 54
|
||||
eld-device = auto
|
||||
|
||||
[Properties]
|
||||
device.icon_name = video-display
|
||||
|
||||
[Jack HDMI/DP]
|
||||
append-pcm-to-name = yes
|
||||
required = ignore
|
||||
11
spa/plugins/alsa/mixer/paths/hdmi-output-6.conf
Normal file
11
spa/plugins/alsa/mixer/paths/hdmi-output-6.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[General]
|
||||
description = HDMI / DisplayPort 7
|
||||
priority = 53
|
||||
eld-device = auto
|
||||
|
||||
[Properties]
|
||||
device.icon_name = video-display
|
||||
|
||||
[Jack HDMI/DP]
|
||||
append-pcm-to-name = yes
|
||||
required = ignore
|
||||
11
spa/plugins/alsa/mixer/paths/hdmi-output-7.conf
Normal file
11
spa/plugins/alsa/mixer/paths/hdmi-output-7.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[General]
|
||||
description = HDMI / DisplayPort 8
|
||||
priority = 52
|
||||
eld-device = auto
|
||||
|
||||
[Properties]
|
||||
device.icon_name = video-display
|
||||
|
||||
[Jack HDMI/DP]
|
||||
append-pcm-to-name = yes
|
||||
required = ignore
|
||||
20
spa/plugins/alsa/mixer/paths/iec958-stereo-input.conf
Normal file
20
spa/plugins/alsa/mixer/paths/iec958-stereo-input.conf
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
[Element PCM Capture Source]
|
||||
enumeration = select
|
||||
|
||||
[Option PCM Capture Source:IEC958 In]
|
||||
name = iec958-input
|
||||
18
spa/plugins/alsa/mixer/paths/iec958-stereo-output.conf
Normal file
18
spa/plugins/alsa/mixer/paths/iec958-stereo-output.conf
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
[Element IEC958]
|
||||
switch = mute
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Steelseries Arctis 5 USB headset stereo chat path. The headset has two
|
||||
; output devices. The first one is meant for voice audio, and the second
|
||||
; one meant for everything else. The purpose of this unusual design is to
|
||||
; provide separate volume controls for voice and other audio, which can be
|
||||
; useful in gaming.
|
||||
|
||||
[General]
|
||||
priority = 50
|
||||
|
||||
[Element Com Speaker]
|
||||
switch = mute
|
||||
volume = merge
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Steelseries Arctis 5 USB headset stereo game path. The headset has two
|
||||
; output devices. The first one is meant for voice audio, and the second
|
||||
; one meant for everything else. The purpose of this unusual design is to
|
||||
; provide separate volume controls for voice and other audio, which can be
|
||||
; useful in gaming.
|
||||
|
||||
[General]
|
||||
priority = 99
|
||||
|
||||
[Element PCM]
|
||||
switch = mute
|
||||
volume = merge
|
||||
34
spa/plugins/alsa/mixer/paths/usb-gaming-headset-input.conf
Normal file
34
spa/plugins/alsa/mixer/paths/usb-gaming-headset-input.conf
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; USB gaming headset microphone input path. These headsets usually have two
|
||||
; output devices. The first one is mono, meant for voice audio, and the second
|
||||
; one is stereo, meant for everything else. The purpose of this unusual design
|
||||
; is to provide separate volume controls for voice and other audio, which can
|
||||
; be useful in gaming.
|
||||
;
|
||||
; Works with:
|
||||
; Steelseries Arctis 7
|
||||
; Steelseries Arctis Pro Wireless.
|
||||
; Lucidsound LS31
|
||||
|
||||
[General]
|
||||
description-key = analog-input-microphone-headset
|
||||
|
||||
[Element Headset]
|
||||
volume = merge
|
||||
switch = mute
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; USB gaming headset mono output path. These headsets usually have two
|
||||
; output devices. The first one is mono, meant for voice audio, and the second
|
||||
; one is stereo, meant for everything else. The purpose of this unusual design
|
||||
; is to provide separate volume controls for voice and other audio, which can
|
||||
; be useful in gaming.
|
||||
;
|
||||
; Works with:
|
||||
; Steelseries Arctis 7
|
||||
; Steelseries Arctis Pro Wireless.
|
||||
; Lucidsound LS31
|
||||
|
||||
[General]
|
||||
description-key = analog-output-headphones-mono
|
||||
|
||||
[Element PCM]
|
||||
volume = merge
|
||||
switch = mute
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; USB gaming headset mono output path. These headsets usually have two
|
||||
; output devices. The first one is mono, meant for voice audio, and the second
|
||||
; one is stereo, meant for everything else. The purpose of this unusual design
|
||||
; is to provide separate volume controls for voice and other audio, which can
|
||||
; be useful in gaming.
|
||||
;
|
||||
; Works with:
|
||||
; Steelseries Arctis 7
|
||||
; Steelseries Arctis Pro Wireless.
|
||||
; Lucidsound LS31
|
||||
;
|
||||
; This path doesn't provide hardware volume control, because the stereo
|
||||
; output is controlled by the PCM element with index 1, and currently
|
||||
; PulseAudio only supports elements with index 0.
|
||||
|
||||
[General]
|
||||
description-key = analog-output-headphones
|
||||
|
|
@ -0,0 +1,66 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Config for CMEDIA USB2.0 High-Speed True HD Audio 147a:e055
|
||||
# Added by Jean-Philippe Guillemin <h1p8r10n@gmail.com>
|
||||
|
||||
|
||||
[General]
|
||||
auto-profiles = yes
|
||||
|
||||
[Mapping analog-stereo]
|
||||
device-strings = front:%f
|
||||
channel-map = left,right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker analog-output-headphones analog-output-headphones-2
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line analog-input-headphone-mic analog-input-headset-mic
|
||||
priority = 10
|
||||
|
||||
# If everything else fails, try to use hw:0 as a stereo device.
|
||||
[Mapping stereo-fallback]
|
||||
device-strings = hw:%f
|
||||
fallback = yes
|
||||
channel-map = front-left,front-right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker analog-output-headphones analog-output-headphones-2
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line analog-input-headphone-mic analog-input-headset-mic
|
||||
priority = 1
|
||||
|
||||
[Mapping analog-surround-21]
|
||||
device-strings = surround21:%f
|
||||
channel-map = front-left,front-right,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-51]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-71]
|
||||
device-strings = surround71:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
description = Analog Surround 7.1
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-stereo]
|
||||
device-strings = hw:%f,2 hw:%f,0
|
||||
channel-map = left,right
|
||||
paths-output = iec958-stereo-output
|
||||
paths-input = iec958-stereo-input
|
||||
priority = 5
|
||||
480
spa/plugins/alsa/mixer/profile-sets/default.conf
Normal file
480
spa/plugins/alsa/mixer/profile-sets/default.conf
Normal file
|
|
@ -0,0 +1,480 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Default profile definitions for the ALSA backend of PulseAudio. This
|
||||
; is used as fallback for all cards that have no special mapping
|
||||
; assigned (and should be good enough for the vast majority of
|
||||
; cards). If you want to assign a different profile set than this one
|
||||
; to a device, either set the udev property PULSE_PROFILE_SET for the
|
||||
; card, or use the "profile_set" module argument when loading
|
||||
; module-alsa-card.
|
||||
;
|
||||
; So what is this about? Simply, what we do here is map ALSA devices
|
||||
; to how they are exposed in PA. We say which ALSA device string to
|
||||
; use to open a device, which channel mapping to use then, and which
|
||||
; mixer path to use. This is encoded in a 'mapping'. Multiple of these
|
||||
; mappings can be bound together in a 'profile' which is then directly
|
||||
; exposed in the UI as a card profile. Each mapping assigned to a
|
||||
; profile will result in one sink/source to be created if the profile
|
||||
; is selected for the card.
|
||||
;
|
||||
; Additionally, the path set configuration files can describe the
|
||||
; decibel values assigned to the steps of the volume elements. This
|
||||
; can be used to work around situations when the alsa driver doesn't
|
||||
; provide any decibel information, or when the information is
|
||||
; incorrect.
|
||||
|
||||
|
||||
; [General]
|
||||
; auto-profiles = no | yes # Instead of defining all profiles manually, autogenerate
|
||||
; # them by combining every input mapping with every output mapping.
|
||||
;
|
||||
; [Mapping id]
|
||||
; device-strings = ... # ALSA device string. %f will be replaced by the card identifier.
|
||||
; channel-map = ... # Channel mapping to use for this device
|
||||
; description = ...
|
||||
; paths-input = ... # A list of mixer paths to use. Every path in this list will be probed.
|
||||
; # If multiple are found to be working they will be available as device ports
|
||||
; paths-output = ...
|
||||
; element-input = ... # Instead of configuring a full mixer path simply configure a single
|
||||
; # mixer element for volume/mute handling. The value can be an element
|
||||
; # name, or name and index separated by a comma.
|
||||
; element-output = ...
|
||||
; priority = ...
|
||||
; direction = any | input | output # Only useful for?
|
||||
;
|
||||
; exact-channels = yes | no # If no, and the exact number of channels is not supported,
|
||||
; # allow device to be opened with another channel count
|
||||
; fallback = no | yes # This mapping will only be considered if all non-fallback mappings fail
|
||||
; [Profile id]
|
||||
; input-mappings = ... # Lists mappings for sources on this profile, those mapping must be
|
||||
; # defined in this file too
|
||||
; output-mappings = ... # Lists mappings for sinks on this profile, those mappings must be
|
||||
; # defined in this file too
|
||||
; description = ...
|
||||
; priority = ... # Numeric value to deduce priority for this profile
|
||||
; skip-probe = no | yes # Skip probing for availability? If this is yes then this profile
|
||||
; # will be assumed as working without probing. Makes initialization
|
||||
; # a bit faster but only works if the card is really known well.
|
||||
;
|
||||
; fallback = no | yes # This profile will only be considered if all non-fallback profiles fail
|
||||
; [DecibelFix element] # Decibel fixes can be used to work around missing or incorrect dB
|
||||
; # information from alsa. A decibel fix is a table that maps volume steps
|
||||
; # to decibel values for one volume element. The "element" part in the
|
||||
; # section title is the name of the volume element (or name and index
|
||||
; # separated by a comma).
|
||||
; #
|
||||
; # NOTE: This feature is meant just as a help for figuring out the correct
|
||||
; # decibel values. PulseAudio is not the correct place to maintain the
|
||||
; # decibel mappings!
|
||||
; #
|
||||
; # If you need this feature, then you should make sure that when you have
|
||||
; # the correct values figured out, the alsa driver developers get informed
|
||||
; # too, so that they can fix the driver.
|
||||
;
|
||||
; db-values = ... # The option value consists of pairs of step numbers and decibel values.
|
||||
; # The pairs are separated with whitespace, and steps are separated from
|
||||
; # the corresponding decibel values with a colon. The values must be in an
|
||||
; # increasing order. Here's an example of a valid string:
|
||||
; #
|
||||
; # "0:-40.50 1:-38.70 3:-33.00 11:0"
|
||||
; #
|
||||
; # The lowest step imposes a lower limit for hardware volume and the
|
||||
; # highest step correspondingly imposes a higher limit. That means that
|
||||
; # that the mixer will never be set outside those values - the rest of the
|
||||
; # volume scale is done using software volume.
|
||||
; #
|
||||
; # As can be seen in the example, you don't need to specify a dB value for
|
||||
; # each step. The dB values for skipped steps will be linearly interpolated
|
||||
; # using the nearest steps that are given.
|
||||
|
||||
[General]
|
||||
auto-profiles = yes
|
||||
|
||||
[Mapping analog-stereo]
|
||||
device-strings = front:%f
|
||||
channel-map = left,right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker analog-output-headphones analog-output-headphones-2
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line analog-input-headphone-mic analog-input-headset-mic
|
||||
priority = 15
|
||||
|
||||
# If everything else fails, try to use hw:0 as a stereo device...
|
||||
[Mapping stereo-fallback]
|
||||
device-strings = hw:%f
|
||||
fallback = yes
|
||||
channel-map = front-left,front-right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker analog-output-headphones analog-output-headphones-2
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line analog-input-headphone-mic analog-input-headset-mic
|
||||
priority = 1
|
||||
|
||||
# ...and if even that fails, try to use hw:0 as a mono device.
|
||||
[Mapping mono-fallback]
|
||||
device-strings = hw:%f
|
||||
fallback = yes
|
||||
channel-map = mono
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker analog-output-headphones analog-output-headphones-2 analog-output-mono
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line analog-input-headset-mic
|
||||
priority = 1
|
||||
|
||||
[Mapping analog-surround-21]
|
||||
device-strings = surround21:%f
|
||||
channel-map = front-left,front-right,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 13
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-40]
|
||||
device-strings = surround40:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 12
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-41]
|
||||
device-strings = surround41:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 13
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-50]
|
||||
device-strings = surround50:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 12
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-51]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 13
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-71]
|
||||
device-strings = surround71:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
description = Analog Surround 7.1
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker
|
||||
priority = 12
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-stereo]
|
||||
device-strings = iec958:%f
|
||||
channel-map = left,right
|
||||
paths-input = iec958-stereo-input
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 5
|
||||
|
||||
[Mapping iec958-ac3-surround-40]
|
||||
device-strings = a52:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 2
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-ac3-surround-51]
|
||||
device-strings = a52:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-dts-surround-51]
|
||||
device-strings = dca:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo]
|
||||
description = Digital Stereo (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = left,right
|
||||
priority = 9
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround]
|
||||
description = Digital Surround 5.1 (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71]
|
||||
description = Digital Surround 7.1 (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround]
|
||||
description = Digital Surround 5.1 (HDMI/DTS)
|
||||
device-strings = dcahdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo-extra1]
|
||||
description = Digital Stereo (HDMI 2)
|
||||
device-strings = hdmi:%f,1
|
||||
paths-output = hdmi-output-1
|
||||
channel-map = left,right
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround-extra1]
|
||||
description = Digital Surround 5.1 (HDMI 2)
|
||||
device-strings = hdmi:%f,1
|
||||
paths-output = hdmi-output-1
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71-extra1]
|
||||
description = Digital Surround 7.1 (HDMI 2)
|
||||
device-strings = hdmi:%f,1
|
||||
paths-output = hdmi-output-1
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround-extra1]
|
||||
description = Digital Surround 5.1 (HDMI 2/DTS)
|
||||
device-strings = dcahdmi:%f,1
|
||||
paths-output = hdmi-output-1
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo-extra2]
|
||||
description = Digital Stereo (HDMI 3)
|
||||
device-strings = hdmi:%f,2
|
||||
paths-output = hdmi-output-2
|
||||
channel-map = left,right
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround-extra2]
|
||||
description = Digital Surround 5.1 (HDMI 3)
|
||||
device-strings = hdmi:%f,2
|
||||
paths-output = hdmi-output-2
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71-extra2]
|
||||
description = Digital Surround 7.1 (HDMI 3)
|
||||
device-strings = hdmi:%f,2
|
||||
paths-output = hdmi-output-2
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround-extra2]
|
||||
description = Digital Surround 5.1 (HDMI 3/DTS)
|
||||
device-strings = dcahdmi:%f,2
|
||||
paths-output = hdmi-output-2
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo-extra3]
|
||||
description = Digital Stereo (HDMI 4)
|
||||
device-strings = hdmi:%f,3
|
||||
paths-output = hdmi-output-3
|
||||
channel-map = left,right
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround-extra3]
|
||||
description = Digital Surround 5.1 (HDMI 4)
|
||||
device-strings = hdmi:%f,3
|
||||
paths-output = hdmi-output-3
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71-extra3]
|
||||
description = Digital Surround 7.1 (HDMI 4)
|
||||
device-strings = hdmi:%f,3
|
||||
paths-output = hdmi-output-3
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround-extra3]
|
||||
description = Digital Surround 5.1 (HDMI 4/DTS)
|
||||
device-strings = dcahdmi:%f,3
|
||||
paths-output = hdmi-output-3
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo-extra4]
|
||||
description = Digital Stereo (HDMI 5)
|
||||
device-strings = hdmi:%f,4
|
||||
paths-output = hdmi-output-4
|
||||
channel-map = left,right
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround-extra4]
|
||||
description = Digital Surround 5.1 (HDMI 5)
|
||||
device-strings = hdmi:%f,4
|
||||
paths-output = hdmi-output-4
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71-extra4]
|
||||
description = Digital Surround 7.1 (HDMI 5)
|
||||
device-strings = hdmi:%f,4
|
||||
paths-output = hdmi-output-4
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround-extra4]
|
||||
description = Digital Surround 5.1 (HDMI 5/DTS)
|
||||
device-strings = dcahdmi:%f,4
|
||||
paths-output = hdmi-output-4
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo-extra5]
|
||||
description = Digital Stereo (HDMI 6)
|
||||
device-strings = hdmi:%f,5
|
||||
paths-output = hdmi-output-5
|
||||
channel-map = left,right
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround-extra5]
|
||||
description = Digital Surround 5.1 (HDMI 6)
|
||||
device-strings = hdmi:%f,5
|
||||
paths-output = hdmi-output-5
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71-extra5]
|
||||
description = Digital Surround 7.1 (HDMI 6)
|
||||
device-strings = hdmi:%f,5
|
||||
paths-output = hdmi-output-5
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround-extra5]
|
||||
description = Digital Surround 5.1 (HDMI 6/DTS)
|
||||
device-strings = dcahdmi:%f,5
|
||||
paths-output = hdmi-output-5
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo-extra6]
|
||||
description = Digital Stereo (HDMI 7)
|
||||
device-strings = hdmi:%f,6
|
||||
paths-output = hdmi-output-6
|
||||
channel-map = left,right
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround-extra6]
|
||||
description = Digital Surround 5.1 (HDMI 7)
|
||||
device-strings = hdmi:%f,6
|
||||
paths-output = hdmi-output-6
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71-extra6]
|
||||
description = Digital Surround 7.1 (HDMI 7)
|
||||
device-strings = hdmi:%f,6
|
||||
paths-output = hdmi-output-6
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround-extra6]
|
||||
description = Digital Surround 5.1 (HDMI 7/DTS)
|
||||
device-strings = dcahdmi:%f,6
|
||||
paths-output = hdmi-output-6
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo-extra7]
|
||||
description = Digital Stereo (HDMI 8)
|
||||
device-strings = hdmi:%f,7
|
||||
paths-output = hdmi-output-7
|
||||
channel-map = left,right
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround-extra7]
|
||||
description = Digital Surround 5.1 (HDMI 8)
|
||||
device-strings = hdmi:%f,7
|
||||
paths-output = hdmi-output-7
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71-extra7]
|
||||
description = Digital Surround 7.1 (HDMI 8)
|
||||
device-strings = hdmi:%f,7
|
||||
paths-output = hdmi-output-7
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround-extra7]
|
||||
description = Digital Surround 5.1 (HDMI 8/DTS)
|
||||
device-strings = dcahdmi:%f,7
|
||||
paths-output = hdmi-output-7
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 6
|
||||
direction = output
|
||||
|
||||
[Mapping multichannel-output]
|
||||
device-strings = hw:%f
|
||||
channel-map = left,right,rear-left,rear-right
|
||||
exact-channels = false
|
||||
fallback = yes
|
||||
priority = 1
|
||||
direction = output
|
||||
paths-output = multichannel-output
|
||||
|
||||
[Mapping multichannel-input]
|
||||
device-strings = hw:%f
|
||||
channel-map = left,right,rear-left,rear-right
|
||||
exact-channels = false
|
||||
fallback = yes
|
||||
priority = 1
|
||||
direction = input
|
||||
paths-input = multichannel-input
|
||||
|
||||
; An example for defining multiple-sink profiles
|
||||
#[Profile output:analog-stereo+output:iec958-stereo+input:analog-stereo]
|
||||
#description = Foobar
|
||||
#output-mappings = analog-stereo iec958-stereo
|
||||
#input-mappings = analog-stereo
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Dell Dock TB16 USB audio
|
||||
;
|
||||
; This card has two stereo pairs of output, One Mono input.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-headphone]
|
||||
description = Headphone
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-speaker]
|
||||
description = Speaker
|
||||
device-strings = hw:%f,1,0
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-mic]
|
||||
description = Headset-Mic
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
|
||||
[Profile output:analog-stereo-speaker]
|
||||
description = Speaker
|
||||
output-mappings = analog-stereo-speaker
|
||||
priority = 60
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-headphone+input:analog-stereo-mic]
|
||||
description = Headset
|
||||
output-mappings = analog-stereo-headphone
|
||||
input-mappings = analog-stereo-mic
|
||||
priority = 80
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,153 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; This profile forces speaker and internal mic ports even if we have no way
|
||||
; of identifying those.
|
||||
; See default.conf for explanations.
|
||||
|
||||
[General]
|
||||
auto-profiles = yes
|
||||
|
||||
[Mapping analog-mono]
|
||||
device-strings = hw:%f
|
||||
channel-map = mono
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always analog-output-headphones analog-output-headphones-2 analog-output-mono
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic-always analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line
|
||||
priority = 1
|
||||
|
||||
[Mapping analog-stereo]
|
||||
device-strings = front:%f hw:%f
|
||||
channel-map = left,right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always analog-output-headphones analog-output-headphones-2 analog-output-mono
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic-always analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line
|
||||
priority = 10
|
||||
|
||||
[Mapping analog-surround-21]
|
||||
device-strings = surround21:%f
|
||||
channel-map = front-left,front-right,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-40]
|
||||
device-strings = surround40:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-41]
|
||||
device-strings = surround41:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-50]
|
||||
device-strings = surround50:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-51]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-71]
|
||||
device-strings = surround71:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
description = Analog Surround 7.1
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping analog-4-channel-input]
|
||||
# Alsa doesn't currently provide any better device name than "hw" for 4-channel
|
||||
# input. If this causes trouble at some point, then we will need to get a new
|
||||
# device name standardized in alsa.
|
||||
device-strings = hw:%f
|
||||
channel-map = aux0,aux1,aux2,aux3
|
||||
priority = 1
|
||||
direction = input
|
||||
|
||||
[Mapping iec958-stereo]
|
||||
device-strings = iec958:%f
|
||||
channel-map = left,right
|
||||
paths-input = iec958-stereo-input
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 5
|
||||
|
||||
[Mapping iec958-ac3-surround-40]
|
||||
device-strings = a52:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 2
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-ac3-surround-51]
|
||||
device-strings = a52:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-dts-surround-51]
|
||||
device-strings = dca:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo]
|
||||
description = Digital Stereo (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = left,right
|
||||
priority = 4
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround]
|
||||
description = Digital Surround 5.1 (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71]
|
||||
description = Digital Surround 7.1 (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround]
|
||||
description = Digital Surround 5.1 (HDMI/DTS)
|
||||
device-strings = dcahdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 1
|
||||
direction = output
|
||||
|
||||
; An example for defining multiple-sink profiles
|
||||
#[Profile output:analog-stereo+output:iec958-stereo+input:analog-stereo]
|
||||
#description = Foobar
|
||||
#output-mappings = analog-stereo iec958-stereo
|
||||
#input-mappings = analog-stereo
|
||||
152
spa/plugins/alsa/mixer/profile-sets/force-speaker.conf
Normal file
152
spa/plugins/alsa/mixer/profile-sets/force-speaker.conf
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; This profile forces a speaker port even if we have no way of identifying it.
|
||||
; See default.conf for explanations.
|
||||
|
||||
[General]
|
||||
auto-profiles = yes
|
||||
|
||||
[Mapping analog-mono]
|
||||
device-strings = hw:%f
|
||||
channel-map = mono
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always analog-output-headphones analog-output-headphones-2 analog-output-mono
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line
|
||||
priority = 1
|
||||
|
||||
[Mapping analog-stereo]
|
||||
device-strings = front:%f hw:%f
|
||||
channel-map = left,right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always analog-output-headphones analog-output-headphones-2 analog-output-mono
|
||||
paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line
|
||||
priority = 10
|
||||
|
||||
[Mapping analog-surround-21]
|
||||
device-strings = surround21:%f
|
||||
channel-map = front-left,front-right,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-40]
|
||||
device-strings = surround40:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-41]
|
||||
device-strings = surround41:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-50]
|
||||
device-strings = surround50:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-51]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 8
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-71]
|
||||
device-strings = surround71:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
description = Analog Surround 7.1
|
||||
paths-output = analog-output analog-output-lineout analog-output-speaker-always
|
||||
priority = 7
|
||||
direction = output
|
||||
|
||||
[Mapping analog-4-channel-input]
|
||||
# Alsa doesn't currently provide any better device name than "hw" for 4-channel
|
||||
# input. If this causes trouble at some point, then we will need to get a new
|
||||
# device name standardized in alsa.
|
||||
device-strings = hw:%f
|
||||
channel-map = aux0,aux1,aux2,aux3
|
||||
priority = 1
|
||||
direction = input
|
||||
|
||||
[Mapping iec958-stereo]
|
||||
device-strings = iec958:%f
|
||||
channel-map = left,right
|
||||
paths-input = iec958-stereo-input
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 5
|
||||
|
||||
[Mapping iec958-ac3-surround-40]
|
||||
device-strings = a52:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 2
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-ac3-surround-51]
|
||||
device-strings = a52:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-dts-surround-51]
|
||||
device-strings = dca:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = iec958-stereo-output
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-stereo]
|
||||
description = Digital Stereo (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = left,right
|
||||
priority = 4
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround]
|
||||
description = Digital Surround 5.1 (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-surround71]
|
||||
description = Digital Surround 7.1 (HDMI)
|
||||
device-strings = hdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right
|
||||
priority = 3
|
||||
direction = output
|
||||
|
||||
[Mapping hdmi-dts-surround]
|
||||
description = Digital Surround 5.1 (HDMI/DTS)
|
||||
device-strings = dcahdmi:%f
|
||||
paths-output = hdmi-output-0
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
priority = 1
|
||||
direction = output
|
||||
|
||||
; An example for defining multiple-sink profiles
|
||||
#[Profile output:analog-stereo+output:iec958-stereo+input:analog-stereo]
|
||||
#description = Foobar
|
||||
#output-mappings = analog-stereo iec958-stereo
|
||||
#input-mappings = analog-stereo
|
||||
38
spa/plugins/alsa/mixer/profile-sets/kinect-audio.conf
Normal file
38
spa/plugins/alsa/mixer/profile-sets/kinect-audio.conf
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Audio profile for the Microsoft Kinect Sensor device in UAC mode.
|
||||
;
|
||||
; Copyright (C) 2011 Antonio Ospite <ospite@studenti.unina.it>
|
||||
;
|
||||
; This device has an array of four microphones, and no playback capability.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping input-4-channels]
|
||||
device-strings = hw:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right
|
||||
description = 4 Channels Input
|
||||
direction = input
|
||||
priority = 5
|
||||
|
||||
[Profile input:mic-array]
|
||||
description = Microphone Array
|
||||
input-mappings = input-4-channels
|
||||
priority = 2
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; M-Audio FastTrack Pro
|
||||
;
|
||||
; This card has one duplex stereo channel called A and an additional
|
||||
; stereo output channel called B.
|
||||
;
|
||||
; We knowingly only define a subset of the theoretically possible
|
||||
; mapping combinations as profiles here.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-a-output]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
; Try both device 0 and device 1 for input, see
|
||||
; http://mailman.alsa-project.org/pipermail/alsa-devel/2012-March/050701.html
|
||||
[Mapping analog-stereo-a-input]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,0 hw:%f,1,0
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Mapping analog-stereo-b-output]
|
||||
description = Analog Stereo Channel B
|
||||
device-strings = hw:%f,1,0
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Profile output:analog-stereo-all+input:analog-stereo-all]
|
||||
description = Analog Stereo Duplex Channel A, Analog Stereo output Channel B
|
||||
output-mappings = analog-stereo-a-output analog-stereo-b-output
|
||||
input-mappings = analog-stereo-a-input
|
||||
priority = 100
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a-output+input:analog-stereo-a-input]
|
||||
description = Analog Stereo Duplex Channel A
|
||||
output-mappings = analog-stereo-a-output
|
||||
input-mappings = analog-stereo-a-input
|
||||
priority = 40
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b+input:analog-stereo-b]
|
||||
description = Analog Stereo Output Channel B
|
||||
output-mappings = analog-stereo-b-output
|
||||
input-mappings =
|
||||
priority = 50
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a]
|
||||
description = Analog Stereo Output Channel A
|
||||
output-mappings = analog-stereo-a-output
|
||||
priority = 5
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b]
|
||||
description = Analog Stereo Output Channel B
|
||||
output-mappings = analog-stereo-b-output
|
||||
priority = 6
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-a]
|
||||
description = Analog Stereo Input Channel A
|
||||
input-mappings = analog-stereo-a-input
|
||||
priority = 2
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Native Instruments Audio 4 DJ
|
||||
;
|
||||
; This card has two stereo pairs of input and two stereo pairs of
|
||||
; output, named channels A and B. Channel B has an additional
|
||||
; Headphone connector.
|
||||
;
|
||||
; We knowingly only define a subset of the theoretically possible
|
||||
; mapping combinations as profiles here.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-a]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
|
||||
[Mapping analog-stereo-b-output]
|
||||
description = Analog Stereo Channel B (Headphones)
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-b-input]
|
||||
description = Analog Stereo Channel B
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Profile output:analog-stereo-all+input:analog-stereo-all]
|
||||
description = Analog Stereo Duplex Channels A, B (Headphones)
|
||||
output-mappings = analog-stereo-a analog-stereo-b-output
|
||||
input-mappings = analog-stereo-a analog-stereo-b-input
|
||||
priority = 100
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a+input:analog-stereo-a]
|
||||
description = Analog Stereo Duplex Channel A
|
||||
output-mappings = analog-stereo-a
|
||||
input-mappings = analog-stereo-a
|
||||
priority = 40
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b+input:analog-stereo-b]
|
||||
description = Analog Stereo Duplex Channel B (Headphones)
|
||||
output-mappings = analog-stereo-b-output
|
||||
input-mappings = analog-stereo-b-input
|
||||
priority = 50
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a]
|
||||
description = Analog Stereo Output Channel A
|
||||
output-mappings = analog-stereo-a
|
||||
priority = 5
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b]
|
||||
description = Analog Stereo Output Channel B (Headphones)
|
||||
output-mappings = analog-stereo-b-output
|
||||
priority = 6
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-a]
|
||||
description = Analog Stereo Input Channel A
|
||||
input-mappings = analog-stereo-a
|
||||
priority = 2
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-b]
|
||||
description = Analog Stereo Input Channel B
|
||||
input-mappings = analog-stereo-b-input
|
||||
priority = 1
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,161 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Native Instruments Audio 8 DJ
|
||||
;
|
||||
; This card has four stereo pairs of input and four stereo pairs of
|
||||
; output, named channels A to D. Channel C has an additional Mic/Line
|
||||
; connector, channel D an additional Headphone connector.
|
||||
;
|
||||
; We knowingly only define a subset of the theoretically possible
|
||||
; mapping combinations as profiles here.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-a]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
|
||||
[Mapping analog-stereo-b]
|
||||
description = Analog Stereo Channel B
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
|
||||
# Since we want to set a different description for channel C's/D's input
|
||||
# and output we define two separate mappings for them
|
||||
[Mapping analog-stereo-c-output]
|
||||
description = Analog Stereo Channel C
|
||||
device-strings = hw:%f,0,2
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-c-input]
|
||||
description = Analog Stereo Channel C (Line/Mic)
|
||||
device-strings = hw:%f,0,2
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Mapping analog-stereo-d-output]
|
||||
description = Analog Stereo Channel D (Headphones)
|
||||
device-strings = hw:%f,0,3
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-d-input]
|
||||
description = Analog Stereo Channel D
|
||||
device-strings = hw:%f,0,3
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Profile output:analog-stereo-all+input:analog-stereo-all]
|
||||
description = Analog Stereo Duplex Channels A, B, C (Line/Mic), D (Headphones)
|
||||
output-mappings = analog-stereo-a analog-stereo-b analog-stereo-c-output analog-stereo-d-output
|
||||
input-mappings = analog-stereo-a analog-stereo-b analog-stereo-c-input analog-stereo-d-input
|
||||
priority = 100
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-d+input:analog-stereo-c]
|
||||
description = Analog Stereo Channel D (Headphones) Output, Channel C (Line/Mic) Input
|
||||
output-mappings = analog-stereo-d-output
|
||||
input-mappings = analog-stereo-c-input
|
||||
priority = 90
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-c-d+input:analog-stereo-c-d]
|
||||
description = Analog Stereo Duplex Channels C (Line/Mic), D (Line/Mic)
|
||||
output-mappings = analog-stereo-c-output analog-stereo-d-output
|
||||
input-mappings = analog-stereo-c-input analog-stereo-d-input
|
||||
priority = 80
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a+input:analog-stereo-a]
|
||||
description = Analog Stereo Duplex Channel A
|
||||
output-mappings = analog-stereo-a
|
||||
input-mappings = analog-stereo-a
|
||||
priority = 50
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b+input:analog-stereo-b]
|
||||
description = Analog Stereo Duplex Channel B
|
||||
output-mappings = analog-stereo-b
|
||||
input-mappings = analog-stereo-b
|
||||
priority = 40
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-c+input:analog-stereo-c]
|
||||
description = Analog Stereo Duplex Channel C (Line/Mic)
|
||||
output-mappings = analog-stereo-c-output
|
||||
input-mappings = analog-stereo-c-input
|
||||
priority = 60
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-d+input:analog-stereo-d]
|
||||
description = Analog Stereo Duplex Channel D (Headphones)
|
||||
output-mappings = analog-stereo-d-output
|
||||
input-mappings = analog-stereo-d-input
|
||||
priority = 70
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a]
|
||||
description = Analog Stereo Output Channel A
|
||||
output-mappings = analog-stereo-a
|
||||
priority = 6
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b]
|
||||
description = Analog Stereo Output Channel B
|
||||
output-mappings = analog-stereo-b
|
||||
priority = 5
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-c]
|
||||
description = Analog Stereo Output Channel C
|
||||
output-mappings = analog-stereo-c-output
|
||||
priority = 7
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-d]
|
||||
description = Analog Stereo Output Channel D (Headphones)
|
||||
output-mappings = analog-stereo-d-output
|
||||
priority = 8
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-a]
|
||||
description = Analog Stereo Input Channel A
|
||||
input-mappings = analog-stereo-a
|
||||
priority = 2
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-b]
|
||||
description = Analog Stereo Input Channel B
|
||||
input-mappings = analog-stereo-b
|
||||
priority = 1
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-c]
|
||||
description = Analog Stereo Input Channel C (Line/Mic)
|
||||
input-mappings = analog-stereo-c-input
|
||||
priority = 4
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-d]
|
||||
description = Analog Stereo Input Channel D
|
||||
input-mappings = analog-stereo-d-input
|
||||
priority = 3
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Native Instruments Kore Controller
|
||||
;
|
||||
; This card has one stereo pairs of input and two stereo pairs of
|
||||
; output, named "Master" and "Headphone". The master channel has
|
||||
; an additional Coax S/PDIF connector which is always on.
|
||||
;
|
||||
; We knowingly only define a subset of the theoretically possible
|
||||
; mapping combinations as profiles here.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-master-out]
|
||||
description = Analog Stereo Master Channel
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
|
||||
[Mapping analog-stereo-headphone-out]
|
||||
description = Analog Stereo Headphone Channel
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-input]
|
||||
description = Analog Stereo
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Profile output:analog-stereo-all+input:analog-stereo-all]
|
||||
description = Analog Stereo Duplex Master Output, Headphones Output
|
||||
output-mappings = analog-stereo-master-out analog-stereo-headphone-out
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 100
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-master+input:analog-stereo-input]
|
||||
description = Analog Stereo Duplex Master Output
|
||||
output-mappings = analog-stereo-master-out
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 40
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-headphone-out+input:analog-stereo-input]
|
||||
description = Analog Stereo Headphones Output
|
||||
output-mappings = analog-stereo-headphone-out
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 30
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-master]
|
||||
description = Analog Stereo Master Output
|
||||
output-mappings = analog-stereo-master-out
|
||||
priority = 3
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-headphone]
|
||||
description = Analog Stereo Headphones Output
|
||||
output-mappings = analog-stereo-headphone-out
|
||||
priority = 2
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-input]
|
||||
description = Analog Stereo Input
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 1
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,130 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Native Instruments Audio 10 DJ
|
||||
;
|
||||
; This card has five stereo pairs of input and five stereo pairs of
|
||||
; output
|
||||
;
|
||||
; We knowingly only define a subset of the theoretically possible
|
||||
; mapping combinations as profiles here.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-out-main]
|
||||
description = Analog Stereo Main
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
|
||||
[Mapping analog-stereo-out-a]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-out-b]
|
||||
description = Analog Stereo Channel B
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-out-c]
|
||||
description = Analog Stereo Channel C
|
||||
device-strings = hw:%f,0,2
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-out-d]
|
||||
description = Analog Stereo Channel D
|
||||
device-strings = hw:%f,0,3
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-in-main]
|
||||
description = Analog Stereo Main
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
|
||||
[Mapping analog-stereo-in-a]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Mapping analog-stereo-in-b]
|
||||
description = Analog Stereo Channel B
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Mapping analog-stereo-in-c]
|
||||
description = Analog Stereo Channel C
|
||||
device-strings = hw:%f,0,2
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Mapping analog-stereo-in-d]
|
||||
description = Analog Stereo Channel D
|
||||
device-strings = hw:%f,0,3
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
|
||||
|
||||
|
||||
[Profile output:analog-stereo-all+input:analog-stereo-all]
|
||||
description = Analog Stereo Duplex Channels Main, A, B, C, D
|
||||
output-mappings = analog-stereo-out-main analog-stereo-out-a analog-stereo-out-b analog-stereo-out-c analog-stereo-out-d
|
||||
input-mappings = analog-stereo-in-main analog-stereo-in-a analog-stereo-in-b analog-stereo-in-c analog-stereo-in-d
|
||||
priority = 100
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-main+input:analog-stereo-main]
|
||||
description = Analog Stereo Duplex Main
|
||||
output-mappings = analog-stereo-out-main
|
||||
input-mappings = analog-stereo-in-main
|
||||
priority = 50
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a+input:analog-stereo-a]
|
||||
description = Analog Stereo Duplex Channel A
|
||||
output-mappings = analog-stereo-out-a
|
||||
input-mappings = analog-stereo-in-a
|
||||
priority = 40
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b+input:analog-stereo-b]
|
||||
description = Analog Stereo Duplex Channel B
|
||||
output-mappings = analog-stereo-out-b
|
||||
input-mappings = analog-stereo-in-b
|
||||
priority = 30
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a+input:analog-stereo-c]
|
||||
description = Analog Stereo Duplex Channel C
|
||||
output-mappings = analog-stereo-out-c
|
||||
input-mappings = analog-stereo-in-c
|
||||
priority = 20
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a+input:analog-stereo-d]
|
||||
description = Analog Stereo Duplex Channel D
|
||||
output-mappings = analog-stereo-out-d
|
||||
input-mappings = analog-stereo-in-d
|
||||
priority = 10
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Native Instruments Traktor Audio 2
|
||||
;
|
||||
; This card has two stereo pairs of output.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-a]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-b]
|
||||
description = Analog Stereo Channel B
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Profile output:analog-stereo-a]
|
||||
description = Analog Stereo Output Channel A
|
||||
output-mappings = analog-stereo-a
|
||||
priority = 60
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b]
|
||||
description = Analog Stereo Output Channel B
|
||||
output-mappings = analog-stereo-b
|
||||
priority = 50
|
||||
skip-probe = yes
|
||||
|
||||
[Profile analog-stereo-all]
|
||||
description = Analog Stereo Output Channels A & B
|
||||
output-mappings = analog-stereo-a analog-stereo-b
|
||||
priority = 100
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,91 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Native Instruments Audio 6 DJ
|
||||
;
|
||||
; This card has three stereo pairs of input and three stereo pairs of
|
||||
; output
|
||||
;
|
||||
; We knowingly only define a subset of the theoretically possible
|
||||
; mapping combinations as profiles here.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-out-main]
|
||||
description = Analog Stereo Main
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
|
||||
[Mapping analog-stereo-out-a]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-out-b]
|
||||
description = Analog Stereo Channel B
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-in-main]
|
||||
description = Analog Stereo Main
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
|
||||
[Mapping analog-stereo-in-a]
|
||||
description = Analog Stereo Channel A
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Mapping analog-stereo-in-b]
|
||||
description = Analog Stereo Channel B
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
|
||||
|
||||
[Profile output:analog-stereo-all+input:analog-stereo-all]
|
||||
description = Analog Stereo Duplex Channels A, B (Headphones)
|
||||
output-mappings = analog-stereo-out-main analog-stereo-out-a analog-stereo-out-b
|
||||
input-mappings = analog-stereo-in-main analog-stereo-in-a analog-stereo-in-b
|
||||
priority = 100
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-main+input:analog-stereo-main]
|
||||
description = Analog Stereo Duplex Channel Main
|
||||
output-mappings = analog-stereo-out-main
|
||||
input-mappings = analog-stereo-in-main
|
||||
priority = 50
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-a+input:analog-stereo-a]
|
||||
description = Analog Stereo Duplex Channel A
|
||||
output-mappings = analog-stereo-out-a
|
||||
input-mappings = analog-stereo-in-a
|
||||
priority = 40
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-b+input:analog-stereo-b]
|
||||
description = Analog Stereo Duplex Channel B
|
||||
output-mappings = analog-stereo-out-b
|
||||
input-mappings = analog-stereo-in-b
|
||||
priority = 30
|
||||
skip-probe = yes
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Native Instruments Traktor Kontrol S4
|
||||
;
|
||||
; This controller has two stereo pairs of input (named "Channel C" and
|
||||
; "Channel D") and two stereo pairs of output, one "Main Out" and
|
||||
; "Headphone Out".
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-output-main]
|
||||
description = Analog Stereo Main Out
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
|
||||
[Mapping analog-stereo-output-headphone]
|
||||
description = Analog Stereo Headphones Out
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = output
|
||||
|
||||
[Mapping analog-stereo-c-input]
|
||||
description = Analog Stereo Channel C
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Mapping analog-stereo-d-input]
|
||||
description = Analog Stereo Channel D
|
||||
device-strings = hw:%f,0,1
|
||||
channel-map = left,right
|
||||
direction = input
|
||||
|
||||
[Profile output:analog-stereo-all+input:analog-stereo-all]
|
||||
description = Analog Stereo Duplex
|
||||
output-mappings = analog-stereo-output-main analog-stereo-output-headphone
|
||||
input-mappings = analog-stereo-c-input analog-stereo-d-input
|
||||
priority = 100
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-main]
|
||||
description = Analog Stereo Main Output
|
||||
output-mappings = analog-stereo-output-main
|
||||
priority = 4
|
||||
skip-probe = yes
|
||||
|
||||
[Profile output:analog-stereo-headphone]
|
||||
description = Analog Stereo Output Headphones Out
|
||||
output-mappings = analog-stereo-output-headphone
|
||||
priority = 3
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-c]
|
||||
description = Analog Stereo Input Channel C
|
||||
input-mappings = analog-stereo-c-input
|
||||
priority = 2
|
||||
skip-probe = yes
|
||||
|
||||
[Profile input:analog-stereo-d]
|
||||
description = Analog Stereo Input Channel D
|
||||
input-mappings = analog-stereo-d-input
|
||||
priority = 1
|
||||
skip-probe = yes
|
||||
112
spa/plugins/alsa/mixer/profile-sets/sb-omni-surround-5.1.conf
Normal file
112
spa/plugins/alsa/mixer/profile-sets/sb-omni-surround-5.1.conf
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; Creative Sound Blaster Omni Surround 5.1
|
||||
;
|
||||
; This config supports Linux 4.3-rc1+.
|
||||
; By default there are some non-existing (physically) inputs and outputs that
|
||||
; are not present in this config.
|
||||
; Also in addition to natively supported modes (such as stereo, 5.1 and stereo
|
||||
; S/PDIF) following useful output modes are added: 2.1, 4.0, 4.1 and 5.0.
|
||||
;
|
||||
; NOTE: in 2.1 and 4.1 physical LFE output will be different than in 5.1 mode.
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = no
|
||||
|
||||
[Mapping analog-stereo-input]
|
||||
device-strings = hw:%f
|
||||
channel-map = left,right
|
||||
paths-input = analog-input-mic analog-input-linein
|
||||
direction = input
|
||||
|
||||
[Mapping analog-stereo-output]
|
||||
device-strings = front:%f
|
||||
channel-map = left,right
|
||||
paths-output = analog-output
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-21]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,aux1,aux2,aux3,lfe
|
||||
paths-output = analog-output
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-40]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right
|
||||
paths-output = analog-output
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-41]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,aux1,lfe
|
||||
paths-output = analog-output
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-50]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center
|
||||
paths-output = analog-output
|
||||
direction = output
|
||||
|
||||
[Mapping analog-surround-51]
|
||||
device-strings = surround51:%f
|
||||
channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe
|
||||
paths-output = analog-output
|
||||
direction = output
|
||||
|
||||
[Mapping iec958-stereo]
|
||||
device-strings = iec958:%f
|
||||
channel-map = left,right
|
||||
paths-output = iec958-stereo-output
|
||||
direction = output
|
||||
|
||||
[Profile output:analog-stereo-output+input:analog-stereo-input]
|
||||
output-mappings = analog-stereo-output
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 7
|
||||
|
||||
[Profile output:analog-surround-21+input:analog-stereo-input]
|
||||
output-mappings = analog-surround-21
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 6
|
||||
|
||||
[Profile output:analog-surround-40+input:analog-stereo-input]
|
||||
output-mappings = analog-surround-40
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 5
|
||||
|
||||
[Profile output:analog-surround-41+input:analog-stereo-input]
|
||||
output-mappings = analog-surround-41
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 4
|
||||
|
||||
[Profile output:analog-surround-50+input:analog-stereo-input]
|
||||
output-mappings = analog-surround-50
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 3
|
||||
|
||||
[Profile output:analog-surround-51+input:analog-stereo-input]
|
||||
output-mappings = analog-surround-51
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 2
|
||||
|
||||
[Profile output:iec958-stereo+input:analog-stereo-input]
|
||||
output-mappings = iec958-stereo
|
||||
input-mappings = analog-stereo-input
|
||||
priority = 1
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
[General]
|
||||
auto-profiles = yes
|
||||
|
||||
[Mapping analog-chat]
|
||||
description-key = gaming-headset-chat
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
paths-input = analog-input-mic
|
||||
paths-output = steelseries-arctis-output-chat-common
|
||||
intended-roles = phone
|
||||
|
||||
[Mapping analog-game]
|
||||
description-key = gaming-headset-game
|
||||
device-strings = hw:%f,1,0
|
||||
channel-map = left,right
|
||||
paths-output = steelseries-arctis-output-game-common
|
||||
direction = output
|
||||
|
||||
[Profile output:analog-chat+output:analog-game+input:analog-chat]
|
||||
output-mappings = analog-chat analog-game
|
||||
input-mappings = analog-chat
|
||||
priority = 5100
|
||||
skip-probe = yes
|
||||
64
spa/plugins/alsa/mixer/profile-sets/usb-gaming-headset.conf
Normal file
64
spa/plugins/alsa/mixer/profile-sets/usb-gaming-headset.conf
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# This file is part of PulseAudio.
|
||||
#
|
||||
# PulseAudio is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as
|
||||
# published by the Free Software Foundation; either version 2.1 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# PulseAudio is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
; USB gaming headset.
|
||||
; These headsets usually have two output devices. The first one is meant
|
||||
; for voice audio, and the second one is meant for everything else.
|
||||
; The purpose of this unusual design is to provide separate volume
|
||||
; controls for voice and other audio, which can be useful in gaming.
|
||||
;
|
||||
; Works with:
|
||||
; Steelseries Arctis 7
|
||||
; Steelseries Arctis Pro Wireless.
|
||||
; Lucidsound LS31
|
||||
; Astro A50
|
||||
;
|
||||
; See default.conf for an explanation on the directives used here.
|
||||
|
||||
[General]
|
||||
auto-profiles = yes
|
||||
|
||||
[Mapping mono-chat]
|
||||
description-key = gaming-headset-chat
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = mono
|
||||
paths-output = usb-gaming-headset-output-mono
|
||||
paths-input = usb-gaming-headset-input
|
||||
intended-roles = phone
|
||||
|
||||
[Mapping stereo-chat]
|
||||
description-key = gaming-headset-chat
|
||||
device-strings = hw:%f,0,0
|
||||
channel-map = left,right
|
||||
paths-output = usb-gaming-headset-output-stereo
|
||||
paths-input = usb-gaming-headset-input
|
||||
intended-roles = phone
|
||||
|
||||
[Mapping stereo-game]
|
||||
description-key = gaming-headset-game
|
||||
device-strings = hw:%f,1,0
|
||||
channel-map = left,right
|
||||
paths-output = usb-gaming-headset-output-stereo
|
||||
direction = output
|
||||
|
||||
[Profile output:mono-chat+output:stereo-game+input:mono-chat]
|
||||
output-mappings = mono-chat stereo-game
|
||||
input-mappings = mono-chat
|
||||
priority = 5100
|
||||
|
||||
[Profile output:stereo-game+output:stereo-chat+input:mono-chat]
|
||||
output-mappings = stereo-game stereo-chat
|
||||
input-mappings = mono-chat
|
||||
priority = 5100
|
||||
150
spa/plugins/alsa/mixer/samples/ATI IXP--Realtek ALC655 rev 0
Normal file
150
spa/plugins/alsa/mixer/samples/ATI IXP--Realtek ALC655 rev 0
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
Simple mixer control 'Master',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 29 [94%] [-3.00dB] [on]
|
||||
Front Right: Playback 29 [94%] [-3.00dB] [on]
|
||||
Simple mixer control 'Master Mono',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'PCM',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 23 [74%] [0.00dB] [on]
|
||||
Front Right: Playback 23 [74%] [0.00dB] [on]
|
||||
Simple mixer control 'Surround',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-46.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'Surround Jack Mode',0
|
||||
Capabilities: enum
|
||||
Items: 'Shared' 'Independent'
|
||||
Item0: 'Shared'
|
||||
Simple mixer control 'Center',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'LFE',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'Line',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'CD',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Mic',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Left: Capture [on]
|
||||
Front Right: Capture [on]
|
||||
Simple mixer control 'Mic Boost (+20dB)',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'Mic Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mic1' 'Mic2'
|
||||
Item0: 'Mic1'
|
||||
Simple mixer control 'Video',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Phone',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 31 [100%] [12.00dB] [off]
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'IEC958',0
|
||||
Capabilities: pswitch pswitch-joined cswitch cswitch-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Mono: Playback [off] Capture [off]
|
||||
Simple mixer control 'IEC958 Playback AC97-SPSA',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 3
|
||||
Mono: 0 [0%]
|
||||
Simple mixer control 'IEC958 Playback Source',0
|
||||
Capabilities: enum
|
||||
Items: 'PCM' 'Analog In' 'IEC958 In'
|
||||
Item0: 'PCM'
|
||||
Simple mixer control 'PC Speaker',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 15
|
||||
Mono: Playback 0 [0%] [-45.00dB] [on]
|
||||
Simple mixer control 'Aux',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [on] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [on] Capture [off]
|
||||
Simple mixer control 'Mono Output Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mix' 'Mic'
|
||||
Item0: 'Mix'
|
||||
Simple mixer control 'Capture',0
|
||||
Capabilities: cvolume cswitch cswitch-joined
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Capture 0 - 15
|
||||
Front Left: Capture 12 [80%] [18.00dB] [on]
|
||||
Front Right: Capture 12 [80%] [18.00dB] [on]
|
||||
Simple mixer control 'Mix',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Mix Mono',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Channel Mode',0
|
||||
Capabilities: enum
|
||||
Items: '2ch' '4ch' '6ch'
|
||||
Item0: '2ch'
|
||||
Simple mixer control 'Duplicate Front',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'External Amplifier',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [on]
|
||||
24
spa/plugins/alsa/mixer/samples/Brooktree Bt878--Bt87x
Normal file
24
spa/plugins/alsa/mixer/samples/Brooktree Bt878--Bt87x
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
Simple mixer control 'FM',0
|
||||
Capabilities: cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Mono
|
||||
Mono: Capture [off]
|
||||
Simple mixer control 'Mic/Line',0
|
||||
Capabilities: cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Mono
|
||||
Mono: Capture [off]
|
||||
Simple mixer control 'Capture',0
|
||||
Capabilities: cvolume cvolume-joined
|
||||
Capture channels: Mono
|
||||
Limits: Capture 0 - 15
|
||||
Mono: Capture 13 [87%]
|
||||
Simple mixer control 'Capture Boost',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [on]
|
||||
Simple mixer control 'TV Tuner',0
|
||||
Capabilities: cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Mono
|
||||
Mono: Capture [on]
|
||||
|
|
@ -0,0 +1,135 @@
|
|||
Simple mixer control 'Master',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 63
|
||||
Mono:
|
||||
Front Left: Playback 63 [100%] [0.00dB] [on]
|
||||
Front Right: Playback 63 [100%] [0.00dB] [on]
|
||||
Simple mixer control 'Master Mono',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'Headphone',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-46.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control '3D Control - Center',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 15
|
||||
Mono: 0 [0%]
|
||||
Simple mixer control '3D Control - Depth',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 15
|
||||
Mono: 0 [0%]
|
||||
Simple mixer control '3D Control - Switch',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'PCM',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 23 [74%] [0.00dB] [on]
|
||||
Front Right: Playback 23 [74%] [0.00dB] [on]
|
||||
Simple mixer control 'Line',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [on]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [on]
|
||||
Simple mixer control 'CD',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Mic',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 23 [74%] [0.00dB] [on]
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Mic Boost (+20dB)',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'Mic Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mic1' 'Mic2'
|
||||
Item0: 'Mic1'
|
||||
Simple mixer control 'Video',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Phone',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'IEC958',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'PC Speaker',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 15
|
||||
Mono: Playback 0 [0%] [-45.00dB] [off]
|
||||
Simple mixer control 'Aux',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Mono Output Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mix' 'Mic'
|
||||
Item0: 'Mic'
|
||||
Simple mixer control 'Capture',0
|
||||
Capabilities: cvolume cswitch cswitch-joined
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Capture 0 - 15
|
||||
Front Left: Capture 15 [100%] [22.50dB] [on]
|
||||
Front Right: Capture 15 [100%] [22.50dB] [on]
|
||||
Simple mixer control 'Mix',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Mix Mono',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'External Amplifier',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
Simple mixer control 'IEC958',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [on]
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
Simple mixer control 'Master',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 63
|
||||
Mono:
|
||||
Front Left: Playback 63 [100%] [3.00dB] [on]
|
||||
Front Right: Playback 63 [100%] [3.00dB] [on]
|
||||
Simple mixer control 'PCM',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 23 [74%] [0.00dB] [on]
|
||||
Front Right: Playback 23 [74%] [0.00dB] [on]
|
||||
Simple mixer control 'CD',0
|
||||
Capabilities: pvolume pswitch cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Capture [off]
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off]
|
||||
Simple mixer control 'Mic',0
|
||||
Capabilities: pvolume pswitch cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Capture [on]
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off]
|
||||
Simple mixer control 'Mic Boost',0
|
||||
Capabilities: volume
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: 0 - 3
|
||||
Front Left: 0 [0%]
|
||||
Front Right: 0 [0%]
|
||||
Simple mixer control 'IEC958',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'IEC958 Default PCM',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'IEC958 Playback Source',0
|
||||
Capabilities: enum
|
||||
Items: 'PCM' 'ADC'
|
||||
Item0: 'PCM'
|
||||
Simple mixer control 'Capture',0
|
||||
Capabilities: cvolume cswitch
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Capture 0 - 15
|
||||
Front Left: Capture 0 [0%] [0.00dB] [on]
|
||||
Front Right: Capture 0 [0%] [0.00dB] [on]
|
||||
Simple mixer control 'Mix',0
|
||||
Capabilities: cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Mono
|
||||
Mono: Capture [off]
|
||||
113
spa/plugins/alsa/mixer/samples/HDA Intel--Realtek ALC889A
Normal file
113
spa/plugins/alsa/mixer/samples/HDA Intel--Realtek ALC889A
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
Simple mixer control 'Master',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 64
|
||||
Mono: Playback 64 [100%] [0.00dB] [on]
|
||||
Simple mixer control 'Headphone',0
|
||||
Capabilities: pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Mono:
|
||||
Front Left: Playback [on]
|
||||
Front Right: Playback [on]
|
||||
Simple mixer control 'PCM',0
|
||||
Capabilities: pvolume
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 255
|
||||
Mono:
|
||||
Front Left: Playback 255 [100%] [0.00dB]
|
||||
Front Right: Playback 255 [100%] [0.00dB]
|
||||
Simple mixer control 'Front',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 64
|
||||
Mono:
|
||||
Front Left: Playback 44 [69%] [-20.00dB] [on]
|
||||
Front Right: Playback 44 [69%] [-20.00dB] [on]
|
||||
Simple mixer control 'Front Mic',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off]
|
||||
Simple mixer control 'Front Mic Boost',0
|
||||
Capabilities: volume
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: 0 - 3
|
||||
Front Left: 0 [0%]
|
||||
Front Right: 0 [0%]
|
||||
Simple mixer control 'Surround',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 64
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-64.00dB] [on]
|
||||
Front Right: Playback 0 [0%] [-64.00dB] [on]
|
||||
Simple mixer control 'Center',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 64
|
||||
Mono: Playback 0 [0%] [-64.00dB] [on]
|
||||
Simple mixer control 'LFE',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 64
|
||||
Mono: Playback 0 [0%] [-64.00dB] [on]
|
||||
Simple mixer control 'Side',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 64
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-64.00dB] [on]
|
||||
Front Right: Playback 0 [0%] [-64.00dB] [on]
|
||||
Simple mixer control 'Line',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off]
|
||||
Simple mixer control 'Mic',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off]
|
||||
Simple mixer control 'Mic Boost',0
|
||||
Capabilities: volume
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: 0 - 3
|
||||
Front Left: 0 [0%]
|
||||
Front Right: 0 [0%]
|
||||
Simple mixer control 'IEC958',0
|
||||
Capabilities: pswitch pswitch-joined cswitch cswitch-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Mono: Playback [on] Capture [on]
|
||||
Simple mixer control 'IEC958 Default PCM',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [on]
|
||||
Simple mixer control 'Capture',0
|
||||
Capabilities: cvolume cswitch
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Capture 0 - 46
|
||||
Front Left: Capture 23 [50%] [7.00dB] [on]
|
||||
Front Right: Capture 23 [50%] [7.00dB] [on]
|
||||
Simple mixer control 'Capture',1
|
||||
Capabilities: cvolume cswitch
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Capture 0 - 46
|
||||
Front Left: Capture 0 [0%] [-16.00dB] [off]
|
||||
Front Right: Capture 0 [0%] [-16.00dB] [off]
|
||||
Simple mixer control 'Input Source',0
|
||||
Capabilities: cenum
|
||||
Items: 'Mic' 'Front Mic' 'Line'
|
||||
Item0: 'Mic'
|
||||
Simple mixer control 'Input Source',1
|
||||
Capabilities: cenum
|
||||
Items: 'Mic' 'Front Mic' 'Line'
|
||||
Item0: 'Mic'
|
||||
|
|
@ -0,0 +1,128 @@
|
|||
Simple mixer control 'Master',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 63
|
||||
Mono:
|
||||
Front Left: Playback 44 [70%] [-28.50dB] [on]
|
||||
Front Right: Playback 60 [95%] [-4.50dB] [on]
|
||||
Simple mixer control 'Master Mono',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 17 [55%] [-21.00dB] [on]
|
||||
Simple mixer control '3D Control - Center',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 15
|
||||
Mono: 0 [0%]
|
||||
Simple mixer control '3D Control - Depth',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 15
|
||||
Mono: 0 [0%]
|
||||
Simple mixer control '3D Control - Switch',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'PCM',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 9 [29%] [-21.00dB] [on]
|
||||
Front Right: Playback 9 [29%] [-21.00dB] [on]
|
||||
Simple mixer control 'PCM Out Path & Mute',0
|
||||
Capabilities: enum
|
||||
Items: 'pre 3D' 'post 3D'
|
||||
Item0: 'pre 3D'
|
||||
Simple mixer control 'Line',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'CD',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 9 [29%] [-21.00dB] [on] Capture [off]
|
||||
Front Right: Playback 9 [29%] [-21.00dB] [on] Capture [off]
|
||||
Simple mixer control 'Mic',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Left: Capture [on]
|
||||
Front Right: Capture [on]
|
||||
Simple mixer control 'Mic Boost (+20dB)',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'Mic Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mic1' 'Mic2'
|
||||
Item0: 'Mic1'
|
||||
Simple mixer control 'Video',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Phone',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'PC Speaker',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 15
|
||||
Mono: Playback 8 [53%] [-21.00dB] [on]
|
||||
Simple mixer control 'Aux',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Mono Output Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mix' 'Mic'
|
||||
Item0: 'Mix'
|
||||
Simple mixer control 'Capture',0
|
||||
Capabilities: cvolume cswitch cswitch-joined
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Capture 0 - 15
|
||||
Front Left: Capture 13 [87%] [19.50dB] [on]
|
||||
Front Right: Capture 13 [87%] [19.50dB] [on]
|
||||
Simple mixer control 'Mix',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Mix Mono',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'External Amplifier',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [on]
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
Simple mixer control 'Bass',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 48
|
||||
Mono: 22 [46%]
|
||||
Simple mixer control 'Bass Boost',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'Treble',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 48
|
||||
Mono: 25 [52%]
|
||||
Simple mixer control 'PCM',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 44
|
||||
Mono:
|
||||
Front Left: Playback 10 [23%] [-31.00dB] [on]
|
||||
Front Right: Playback 10 [23%] [-31.00dB] [on]
|
||||
Simple mixer control 'Auto Gain Control',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
37
spa/plugins/alsa/mixer/samples/USB Audio--USB Mixer
Normal file
37
spa/plugins/alsa/mixer/samples/USB Audio--USB Mixer
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
Simple mixer control 'Master',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 255
|
||||
Mono: Playback 105 [41%] [-28.97dB] [on]
|
||||
Simple mixer control 'Line',0
|
||||
Capabilities: pvolume cvolume pswitch pswitch-joined cswitch cswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 255 Capture 0 - 128
|
||||
Front Left: Playback 191 [75%] [34.38dB] [off] Capture 0 [0%] [0.18dB] [off]
|
||||
Front Right: Playback 191 [75%] [34.38dB] [off] Capture 0 [0%] [0.18dB] [off]
|
||||
Simple mixer control 'Mic',0
|
||||
Capabilities: pvolume pvolume-joined cvolume cvolume-joined pswitch pswitch-joined cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: Playback 0 - 255 Capture 0 - 128
|
||||
Mono: Playback 191 [75%] [34.38dB] [off] Capture 0 [0%] [0.18dB] [on]
|
||||
Simple mixer control 'Mic Capture',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'IEC958 In',0
|
||||
Capabilities: cswitch cswitch-joined
|
||||
Capture channels: Mono
|
||||
Mono: Capture [off]
|
||||
Simple mixer control 'Input 1',0
|
||||
Capabilities: cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Mono
|
||||
Mono: Capture [off]
|
||||
Simple mixer control 'Input 2',0
|
||||
Capabilities: cswitch cswitch-joined cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Mono
|
||||
Mono: Capture [off]
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
Simple mixer control 'Mic',0
|
||||
Capabilities: cvolume cvolume-joined cswitch cswitch-joined
|
||||
Capture channels: Mono
|
||||
Limits: Capture 0 - 3072
|
||||
Mono: Capture 1536 [50%] [23.00dB] [on]
|
||||
211
spa/plugins/alsa/mixer/samples/VIA 8237--Analog Devices AD1888
Normal file
211
spa/plugins/alsa/mixer/samples/VIA 8237--Analog Devices AD1888
Normal file
|
|
@ -0,0 +1,211 @@
|
|||
Simple mixer control 'Master',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 31 [100%] [0.00dB] [on]
|
||||
Front Right: Playback 31 [100%] [0.00dB] [on]
|
||||
Simple mixer control 'Master Mono',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'Master Surround',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-46.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'Headphone Jack Sense',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'PCM',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 23 [74%] [0.00dB] [on]
|
||||
Front Right: Playback 23 [74%] [0.00dB] [on]
|
||||
Simple mixer control 'Surround',0
|
||||
Capabilities: pvolume pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-46.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'Surround Jack Mode',0
|
||||
Capabilities: enum
|
||||
Items: 'Shared' 'Independent'
|
||||
Item0: 'Shared'
|
||||
Simple mixer control 'Center',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 31 [100%] [0.00dB] [off]
|
||||
Simple mixer control 'LFE',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'Line',0
|
||||
Capabilities: pvolume pswitch cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Line Jack Sense',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'CD',0
|
||||
Capabilities: pvolume pswitch cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Mic',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Left: Capture [on]
|
||||
Front Right: Capture [on]
|
||||
Simple mixer control 'Mic Boost (+20dB)',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'Mic Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mic1' 'Mic2'
|
||||
Item0: 'Mic1'
|
||||
Simple mixer control 'Video',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Phone',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Mono
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-34.50dB] [off]
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'IEC958',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'IEC958 Output',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'IEC958 Playback AC97-SPSA',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 3
|
||||
Mono: 3 [100%]
|
||||
Simple mixer control 'IEC958 Playback Source',0
|
||||
Capabilities: enum
|
||||
Items: 'AC-Link' 'A/D Converter'
|
||||
Item0: 'AC-Link'
|
||||
Simple mixer control 'Aux',0
|
||||
Capabilities: pvolume pswitch cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Capture',0
|
||||
Capabilities: cvolume cswitch
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Capture 0 - 15
|
||||
Front Left: Capture 0 [0%] [0.00dB] [on]
|
||||
Front Right: Capture 0 [0%] [0.00dB] [on]
|
||||
Simple mixer control 'Mix',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Mix Mono',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Channel Mode',0
|
||||
Capabilities: enum
|
||||
Items: '2ch' '4ch' '6ch'
|
||||
Item0: '2ch'
|
||||
Simple mixer control 'Downmix',0
|
||||
Capabilities: enum
|
||||
Items: 'Off' '6 -> 4' '6 -> 2'
|
||||
Item0: 'Off'
|
||||
Simple mixer control 'Exchange Front/Surround',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'External Amplifier',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [on]
|
||||
Simple mixer control 'High Pass Filter Enable',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'Input Source Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Input1' 'Input2'
|
||||
Item0: 'Input1'
|
||||
Simple mixer control 'Input Source Select',1
|
||||
Capabilities: enum
|
||||
Items: 'Input1' 'Input2'
|
||||
Item0: 'Input1'
|
||||
Simple mixer control 'Spread Front to Surround and Center/LFE',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'VIA DXS',0
|
||||
Capabilities: pvolume
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 31 [100%] [-48.00dB]
|
||||
Front Right: Playback 31 [100%] [-48.00dB]
|
||||
Simple mixer control 'VIA DXS',1
|
||||
Capabilities: pvolume
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 31 [100%] [-48.00dB]
|
||||
Front Right: Playback 31 [100%] [-48.00dB]
|
||||
Simple mixer control 'VIA DXS',2
|
||||
Capabilities: pvolume
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 31 [100%] [-48.00dB]
|
||||
Front Right: Playback 31 [100%] [-48.00dB]
|
||||
Simple mixer control 'VIA DXS',3
|
||||
Capabilities: pvolume
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 31 [100%] [-48.00dB]
|
||||
Front Right: Playback 31 [100%] [-48.00dB]
|
||||
Simple mixer control 'V_REFOUT Enable',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [on]
|
||||
|
|
@ -0,0 +1,160 @@
|
|||
Simple mixer control 'Master',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 0 [0%] [-46.50dB] [off]
|
||||
Front Right: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'PCM',0
|
||||
Capabilities: pvolume pswitch pswitch-joined
|
||||
Playback channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Mono:
|
||||
Front Left: Playback 31 [100%] [-48.00dB] [off]
|
||||
Front Right: Playback 31 [100%] [-48.00dB] [off]
|
||||
Simple mixer control 'Surround',0
|
||||
Capabilities: pswitch
|
||||
Playback channels: Front Left - Front Right
|
||||
Mono:
|
||||
Front Left: Playback [off]
|
||||
Front Right: Playback [off]
|
||||
Simple mixer control 'Surround Jack Mode',0
|
||||
Capabilities: enum
|
||||
Items: 'Shared' 'Independent'
|
||||
Item0: 'Shared'
|
||||
Simple mixer control 'Center',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 31 [100%] [0.00dB] [off]
|
||||
Simple mixer control 'LFE',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 31
|
||||
Mono: Playback 0 [0%] [-46.50dB] [off]
|
||||
Simple mixer control 'Line',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'CD',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Mic',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [on]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [on]
|
||||
Simple mixer control 'Mic Boost (+20dB)',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'Mic Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mic1' 'Mic2'
|
||||
Item0: 'Mic1'
|
||||
Simple mixer control 'Video',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Phone',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'IEC958',0
|
||||
Capabilities: pswitch pswitch-joined cswitch cswitch-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Mono: Playback [off] Capture [off]
|
||||
Simple mixer control 'IEC958 Capture Monitor',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'IEC958 Capture Valid',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'IEC958 Output',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [off]
|
||||
Simple mixer control 'IEC958 Playback AC97-SPSA',0
|
||||
Capabilities: volume volume-joined
|
||||
Playback channels: Mono
|
||||
Capture channels: Mono
|
||||
Limits: 0 - 3
|
||||
Mono: 3 [100%]
|
||||
Simple mixer control 'IEC958 Playback Source',0
|
||||
Capabilities: enum
|
||||
Items: 'AC-Link' 'ADC' 'SPDIF-In'
|
||||
Item0: 'AC-Link'
|
||||
Simple mixer control 'PC Speaker',0
|
||||
Capabilities: pvolume pvolume-joined pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Limits: Playback 0 - 15
|
||||
Mono: Playback 0 [0%] [-45.00dB] [off]
|
||||
Simple mixer control 'Aux',0
|
||||
Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Playback channels: Front Left - Front Right
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Playback 0 - 31
|
||||
Front Left: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Front Right: Playback 0 [0%] [-34.50dB] [off] Capture [off]
|
||||
Simple mixer control 'Mono Output Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Mix' 'Mic'
|
||||
Item0: 'Mix'
|
||||
Simple mixer control 'Capture',0
|
||||
Capabilities: cvolume cswitch cswitch-joined
|
||||
Capture channels: Front Left - Front Right
|
||||
Limits: Capture 0 - 15
|
||||
Front Left: Capture 0 [0%] [0.00dB] [on]
|
||||
Front Right: Capture 0 [0%] [0.00dB] [on]
|
||||
Simple mixer control 'Mix',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Mix Mono',0
|
||||
Capabilities: cswitch cswitch-exclusive
|
||||
Capture exclusive group: 0
|
||||
Capture channels: Front Left - Front Right
|
||||
Front Left: Capture [off]
|
||||
Front Right: Capture [off]
|
||||
Simple mixer control 'Channel Mode',0
|
||||
Capabilities: enum
|
||||
Items: '2ch' '4ch' '6ch'
|
||||
Item0: '2ch'
|
||||
Simple mixer control 'DAC Clock Source',0
|
||||
Capabilities: enum
|
||||
Items: 'AC-Link' 'SPDIF-In' 'Both'
|
||||
Item0: 'AC-Link'
|
||||
Simple mixer control 'External Amplifier',0
|
||||
Capabilities: pswitch pswitch-joined
|
||||
Playback channels: Mono
|
||||
Mono: Playback [on]
|
||||
Simple mixer control 'Input Source Select',0
|
||||
Capabilities: enum
|
||||
Items: 'Input1' 'Input2'
|
||||
Item0: 'Input1'
|
||||
Simple mixer control 'Input Source Select',1
|
||||
Capabilities: enum
|
||||
Items: 'Input1' 'Input2'
|
||||
Item0: 'Input1'
|
||||
Loading…
Add table
Add a link
Reference in a new issue