| 1 | # This file is part of PulseAudio. |
|---|
| 2 | # |
|---|
| 3 | # PulseAudio is free software; you can redistribute it and/or modify |
|---|
| 4 | # it under the terms of the GNU Lesser General Public License as |
|---|
| 5 | # published by the Free Software Foundation; either version 2.1 of the |
|---|
| 6 | # License, or (at your option) any later version. |
|---|
| 7 | # |
|---|
| 8 | # PulseAudio is distributed in the hope that it will be useful, but |
|---|
| 9 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 11 | # General Public License for more details. |
|---|
| 12 | # |
|---|
| 13 | # You should have received a copy of the GNU Lesser General Public License |
|---|
| 14 | # along with PulseAudio; if not, write to the Free Software Foundation, |
|---|
| 15 | # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
|---|
| 16 | |
|---|
| 17 | ; Via ICE1712 multi-channel audio chipset |
|---|
| 18 | ; |
|---|
| 19 | ; This chipset has up to four stereo pairs of input and four stereo pairs of |
|---|
| 20 | ; output, named channels 1 to 8. Also available are separate S/PDIF stereo |
|---|
| 21 | ; channels (input and output), and a separate "system-out" stereo jack that |
|---|
| 22 | ; supports 6-channel hardware mixing. |
|---|
| 23 | ; |
|---|
| 24 | ; The S/PDIF stereo channels can be controlled via the mixer for hw:0, and |
|---|
| 25 | ; additionally, the 8 main outputs can be loop-routed to a separate stereo |
|---|
| 26 | ; input pair, available as channels 11 and 12. |
|---|
| 27 | ; |
|---|
| 28 | ; Many cards available from vendors do not expose all channels from this chip |
|---|
| 29 | ; to an external port, which effectively reduces the number of channels that |
|---|
| 30 | ; are useful to the user. However, the ALSA driver still exposes all channels |
|---|
| 31 | ; even if they are not connected. |
|---|
| 32 | ; |
|---|
| 33 | ; We knowingly only define a subset of the theoretically possible |
|---|
| 34 | ; mapping combinations as profiles here. |
|---|
| 35 | ; |
|---|
| 36 | ; See default.conf for an explanation on the directives used here. |
|---|
| 37 | |
|---|
| 38 | [General] |
|---|
| 39 | auto-profiles = no |
|---|
| 40 | |
|---|
| 41 | [Mapping analog-mch-in] |
|---|
| 42 | description = Analog Multi-Channel Main Input |
|---|
| 43 | device-strings = hw:%f,0 |
|---|
| 44 | channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right,aux0,aux1,aux2,aux3 |
|---|
| 45 | direction = input |
|---|
| 46 | |
|---|
| 47 | [Mapping analog-mch-out] |
|---|
| 48 | description = Analog Multi-Channel Main Output |
|---|
| 49 | device-strings = hw:%f,0 |
|---|
| 50 | channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right,aux0,aux1 |
|---|
| 51 | direction = output |
|---|
| 52 | |
|---|
| 53 | [Mapping digital-stereo] |
|---|
| 54 | description = Digital Stereo Input/Output |
|---|
| 55 | #device-strings = hw:%f,1 |
|---|
| 56 | device-strings = iec958:%f |
|---|
| 57 | channel-map = left,right |
|---|
| 58 | direction = any |
|---|
| 59 | |
|---|
| 60 | [Mapping analog-system-out] |
|---|
| 61 | description = Analog Stereo System-Out |
|---|
| 62 | device-strings = hw:%f,2 |
|---|
| 63 | channel-map = left,right |
|---|
| 64 | direction = output |
|---|
| 65 | |
|---|
| 66 | |
|---|
| 67 | [Profile output:mch] |
|---|
| 68 | description = Multi-Channel Output Active (Digital Disabled) |
|---|
| 69 | output-mappings = analog-mch-out analog-system-out |
|---|
| 70 | input-mappings = |
|---|
| 71 | priority = 90 |
|---|
| 72 | skip-probe = yes |
|---|
| 73 | |
|---|
| 74 | [Profile output:mch+input:mch] |
|---|
| 75 | description = Multi-Channel Input/Output (Digital Disabled) |
|---|
| 76 | output-mappings = analog-mch-out analog-system-out |
|---|
| 77 | input-mappings = analog-mch-in |
|---|
| 78 | priority = 100 |
|---|
| 79 | skip-probe = yes |
|---|
| 80 | |
|---|
| 81 | [Profile output:spdif] |
|---|
| 82 | description = Digital Output (Multi-Channel Disabled) |
|---|
| 83 | output-mappings = digital-stereo analog-system-out |
|---|
| 84 | input-mappings = |
|---|
| 85 | priority = 80 |
|---|
| 86 | skip-probe = yes |
|---|
| 87 | |
|---|
| 88 | [Profile output:spdif+input:spdif] |
|---|
| 89 | description = Digital Input/Output (Multi-Channel Disabled) |
|---|
| 90 | output-mappings = digital-stereo analog-system-out |
|---|
| 91 | input-mappings = digital-stereo |
|---|
| 92 | priority = 90 |
|---|
| 93 | skip-probe = yes |
|---|
| 94 | |
|---|
| 95 | [Profile output:system] |
|---|
| 96 | description = System Output Only |
|---|
| 97 | output-mappings = analog-system-out |
|---|
| 98 | input-mappings = |
|---|
| 99 | priority = 60 |
|---|
| 100 | skip-probe = yes |
|---|
| 101 | |
|---|