| 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 | ; Terratec EWS66 MT |
|---|
| 18 | ; |
|---|
| 19 | ; This card has 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 | ; We knowingly only define a subset of the theoretically possible |
|---|
| 29 | ; mapping combinations as profiles here. |
|---|
| 30 | ; |
|---|
| 31 | ; See default.conf for an explanation on the directives used here. |
|---|
| 32 | |
|---|
| 33 | [General] |
|---|
| 34 | auto-profiles = no |
|---|
| 35 | #auto-profiles = yes |
|---|
| 36 | |
|---|
| 37 | [Mapping analog-stereo] |
|---|
| 38 | description = Analog Stereo Main Output |
|---|
| 39 | device-strings = front:%f |
|---|
| 40 | channel-map = left,right |
|---|
| 41 | direction = any |
|---|
| 42 | |
|---|
| 43 | [Mapping analog-8ch] |
|---|
| 44 | description = Analog 8-Channel Main Output |
|---|
| 45 | device-strings = hw:%f,0 |
|---|
| 46 | channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right |
|---|
| 47 | direction = any |
|---|
| 48 | |
|---|
| 49 | [Mapping digital-stereo] |
|---|
| 50 | description = Digital Stereo Input/Output |
|---|
| 51 | device-strings = hw:%f,1 |
|---|
| 52 | channel-map = left,right |
|---|
| 53 | direction = any |
|---|
| 54 | |
|---|
| 55 | [Mapping analog-system-out] |
|---|
| 56 | description = Analog Stereo System-Out |
|---|
| 57 | device-strings = hw:%f,2 |
|---|
| 58 | channel-map = left,right |
|---|
| 59 | direction = output |
|---|
| 60 | |
|---|
| 61 | |
|---|
| 62 | [Profile output:all] |
|---|
| 63 | description = Stereo Output On All Channels |
|---|
| 64 | output-mappings = analog-8ch digital-stereo analog-system-out |
|---|
| 65 | input-mappings = |
|---|
| 66 | priority = 90 |
|---|
| 67 | skip-probe = yes |
|---|
| 68 | |
|---|
| 69 | [Profile output:all+input:all] |
|---|
| 70 | description = Stereo Output On All Channels, Stereo Input |
|---|
| 71 | output-mappings = analog-8ch digital-stereo analog-system-out |
|---|
| 72 | input-mappings = analog-8ch digital-stereo |
|---|
| 73 | priority = 100 |
|---|
| 74 | skip-probe = yes |
|---|
| 75 | |
|---|
| 76 | [Profile output:stereo] |
|---|
| 77 | description = Stereo Output On All Channels |
|---|
| 78 | output-mappings = analog-stereo digital-stereo analog-system-out |
|---|
| 79 | input-mappings = |
|---|
| 80 | priority = 60 |
|---|
| 81 | skip-probe = yes |
|---|
| 82 | |
|---|
| 83 | [Profile output:stereo+input:stereo] |
|---|
| 84 | description = Stereo Output On All Channels, Stereo Input |
|---|
| 85 | output-mappings = analog-stereo digital-stereo analog-system-out |
|---|
| 86 | input-mappings = analog-stereo digital-stereo |
|---|
| 87 | priority = 60 |
|---|
| 88 | skip-probe = yes |
|---|
| 89 | |
|---|