mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05: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
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue