pax_global_header 0000666 0000000 0000000 00000000064 15212330051 0014502 g ustar 00root root 0000000 0000000 52 comment=1bafe878fe43b5fd258d9f5336bb67e1553bd59e
alsa-scarlett-gui-1.0~beta9/ 0000775 0000000 0000000 00000000000 15212330051 0016006 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/.github/ 0000775 0000000 0000000 00000000000 15212330051 0017346 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/.github/FUNDING.yml 0000664 0000000 0000000 00000000065 15212330051 0021164 0 ustar 00root root 0000000 0000000 liberapay: gdb
custom: 'https://www.paypal.me/gdbau'
alsa-scarlett-gui-1.0~beta9/.github/ISSUE_TEMPLATE/ 0000775 0000000 0000000 00000000000 15212330051 0021531 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/.github/ISSUE_TEMPLATE/issue.md 0000664 0000000 0000000 00000003075 15212330051 0023210 0 ustar 00root root 0000000 0000000 ---
name: Issue
about: Open an issue for help, to report a bug, or request a feature
title: ''
labels: ''
assignees: ''
---
# `alsa-scarlett-gui` Issue Template
Thank you for taking the time to contribute to the `alsa-scarlett-gui` project. Before you submit your issue, please ensure you have checked the FAQ and provide the necessary information below.
## Confirmation
- [ ] I confirm that I have read the [FAQ](https://github.com/geoffreybennett/alsa-scarlett-gui/blob/master/FAQ.md).
## Issue Category
Please select the category that best describes your issue:
- [ ] Help Request
- [ ] Bug Report
- [ ] Feature Request
## Environment Details
Please provide the following details about your environment.
### Linux Distribution and Version
(paste output from `cat /etc/redhat-release` or `cat /etc/lsb_release` here)
- Distribution:
- Version:
### Kernel Version
(paste output from `uname -r` here)
- Kernel version:
### Kernel Messages
(paste output from `dmesg | grep -A 5 -B 5 -i focusrite` here)
### Focusrite Interface Series and Model
(maybe shown in kernel messages, or paste output from `lsusb -d1235:` if unsure)
- Series (e.g., Scarlett 2nd/3rd/4th Gen, Clarett USB, Clarett+):
- Model (e.g., Solo, 2i2, 4i4, etc.):
### Audio System
(use `ps aux | grep -E "pulseaudio|jackd|pipewire"` to check)
- [ ] PulseAudio
- [ ] JACK
- [ ] PipeWire
## Issue Description
Please provide a detailed description of the issue or feature request, including steps to reproduce (if applicable), expected behavior, and actual behavior:
---
Thank you for helping improve `alsa-scarlett-gui`!
alsa-scarlett-gui-1.0~beta9/.github/workflows/ 0000775 0000000 0000000 00000000000 15212330051 0021403 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/.github/workflows/build-debian-package.yml 0000664 0000000 0000000 00000001426 15212330051 0026041 0 ustar 00root root 0000000 0000000 name: Build Debian Package
on:
workflow_dispatch:
inputs:
version:
description: 'Version to build (e.g., 1.0~rc1)'
required: true
default: 'test'
env:
APP_NAME: alsa-scarlett-gui
APP_VERSION: ${{ github.event.inputs.version }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y make gcc libgtk-4-dev libasound2-dev libssl-dev
- name: Build deb
run: make deb VERSION=${{ env.APP_VERSION }}
- name: Upload deb as artifact
uses: actions/upload-artifact@v4
with:
name: deb-package
path: ./${{ env.APP_NAME }}_${{ env.APP_VERSION }}.deb
alsa-scarlett-gui-1.0~beta9/.github/workflows/build-flatpak-package.yml 0000664 0000000 0000000 00000001634 15212330051 0026242 0 ustar 00root root 0000000 0000000 name: Build flatpak package
on:
release:
branches: '*'
types: [published]
env:
APP_NAME: alsa-scarlett-gui
APP_VERSION: ${{ github.event.release.tag_name }}
jobs:
flatpak:
name: "Flatpak"
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-47
options: --privileged
steps:
- uses: actions/checkout@v5
- name: Build flatpak package
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: ${{ env.APP_NAME }}.flatpak
manifest-path: vu.b4.alsa-scarlett-gui.yml
cache-key: flatpak-builder-${{ github.sha }}
- name: Rename for release
run: mv ${{ env.APP_NAME }}.flatpak ${{ env.APP_NAME }}_${{ env.APP_VERSION }}.flatpak
- name: Upload Release Asset
uses: softprops/action-gh-release@v2
with:
files: ${{ env.APP_NAME }}_${{ env.APP_VERSION }}.flatpak
alsa-scarlett-gui-1.0~beta9/.github/workflows/release.yml 0000664 0000000 0000000 00000006647 15212330051 0023563 0 ustar 00root root 0000000 0000000 name: Build Release Packages
on:
release:
types: [published]
workflow_dispatch:
inputs:
version:
description: 'Version to build (e.g., 1.0-rc1)'
required: true
default: 'test'
env:
APP_NAME: alsa-scarlett-gui
APP_VERSION: ${{ github.event.release.tag_name || github.event.inputs.version }}
jobs:
build-rpm:
runs-on: ubuntu-latest
container: fedora:latest
steps:
- name: Install git for checkout
run: dnf install -y git
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Trust workspace
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Install build dependencies
run: >
dnf install -y rpm-build make gcc
gtk4-devel alsa-lib-devel openssl-devel
- name: Build RPM
run: |
VERSION=$(echo "${{ env.APP_VERSION }}" | sed 's/-rc/~rc/g')
make rpm VERSION="$VERSION"
- name: Find and rename RPM
id: find-rpm
run: |
src=$(find ~/rpmbuild/RPMS -name '*.rpm' -not -name '*debug*' | head -1)
dst=${{ env.APP_NAME }}-${{ env.APP_VERSION }}.x86_64.rpm
cp "$src" "$dst"
echo "rpm_path=$dst" >> $GITHUB_OUTPUT
- name: Upload RPM as artifact
uses: actions/upload-artifact@v4
with:
name: rpm-package
path: ${{ steps.find-rpm.outputs.rpm_path }}
- name: Upload RPM to release
if: github.event_name == 'release'
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.find-rpm.outputs.rpm_path }}
build-deb:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: Install build dependencies
run: |
sudo apt -y update
sudo apt -y install make gcc libgtk-4-dev libasound2-dev libssl-dev
- name: Build from sources
run: make -C src -j$(nproc) VERSION=${{ env.APP_VERSION }} PREFIX=/usr
- name: Prepare package workspace
run: |
mkdir -p deb-workspace/usr/bin \
deb-workspace/usr/share/applications \
deb-workspace/usr/share/icons/hicolor/256x256/apps \
deb-workspace/usr/share/doc/${{ env.APP_NAME }}
cp src/alsa-scarlett-gui deb-workspace/usr/bin/
cp src/vu.b4.alsa-scarlett-gui.desktop \
deb-workspace/usr/share/applications/
cp src/img/vu.b4.alsa-scarlett-gui.png \
deb-workspace/usr/share/icons/hicolor/256x256/apps/
cp -r *.md demo docs img deb-workspace/usr/share/doc/${{ env.APP_NAME }}/
- name: Build debian package
uses: jiro4989/build-deb-action@v2
with:
package: ${{ env.APP_NAME }}
package_root: deb-workspace
maintainer: geoffreybennett
depends: 'libgtk-4-1, libasound2, alsa-utils'
version: ${{ env.APP_VERSION }}
desc: >
Gtk4 GUI for the ALSA controls presented by the Linux kernel
Focusrite USB drivers.
- name: Upload deb as artifact
uses: actions/upload-artifact@v4
with:
name: deb-package
path: ./${{ env.APP_NAME }}_${{ env.APP_VERSION }}_amd64.deb
- name: Upload deb to release
if: github.event_name == 'release'
uses: softprops/action-gh-release@v2
with:
files: ./${{ env.APP_NAME }}_${{ env.APP_VERSION }}_amd64.deb
alsa-scarlett-gui-1.0~beta9/.gitignore 0000664 0000000 0000000 00000000267 15212330051 0020003 0 ustar 00root root 0000000 0000000 *.tar.gz
*.o
.deps
.gdb_history
/src/alsa-scarlett-gui
/src/alsa-scarlett-gui-resources.c
/src/tests/test-biquad
/src/vu.b4.alsa-scarlett-gui.desktop
/.flatpak-builder
/flatpak-build
alsa-scarlett-gui-1.0~beta9/FAQ.md 0000664 0000000 0000000 00000036720 15212330051 0016747 0 ustar 00root root 0000000 0000000 # FAQ for the ALSA Scarlett Control Panel (`alsa-scarlett-gui`)
## What is this?
The ALSA Scarlett Control Panel (`alsa-scarlett-gui`) is an
easy-to-use application for adjusting the ALSA controls provided by
three Linux kernel drivers for Focusrite USB interfaces:
1. The Scarlett 1st Gen Mixer Driver (for 1st Gen 6i6, 8i6, 18i6, 18i8, 18i20)
2. The Scarlett2 Protocol Driver (for 2nd/3rd Gen interfaces, small 4th Gen, Clarett, and Vocaster)
3. The FCP (Focusrite Control Protocol) Driver (for big 4th Gen interfaces: 16i16, 18i16, 18i20)
To check if your kernel is already up-to-date, and how to upgrade if
not, see the [Control Panel Installation Prerequisites — Linux
Kernel](docs/INSTALL.md).
## Do I need these drivers for my Focusrite interface?
For basic audio functionality? No. Focusrite USB interfaces are
“plug-and-play” — they are USB Audio Class Compliant, meaning they
work out-of-the-box with the standard ALSA USB audio driver (to get
full functionality on Scarlett 3rd/4th Gen/Vocaster interfaces, first
deactivate MSD mode by holding down the 48V button while powering it
on).
However, to access the mixer, routing, and hardware-specific features,
you’ll need the appropriate driver for your interface model.
## MSD Mode?
"MSD Mode" is the "Mass Storage Device Mode" that the Scarlett 3rd and
4th Gen interfaces ship in.
If MSD Mode is enabled, you need to disable it and restart your
interface to get access to its full functionality.
When you plug the interface in, there’ll be a tiny read-only virtual
disk that has a link to the Focusrite product registration page; until
you turn off MSD Mode not all features of the interface will be
available.
You can turn off MSD Mode by holding down the 48V button while
powering on the interface, or by clicking the button in
`alsa-scarlett-gui` and rebooting it.
If you do the recommended/required (depending on the model) firmware
update, MSD Mode will automatically be turned off.
## What is the purpose of these drivers if they’re not needed for basic audio?
These drivers are for users who want more control over their
interface. They allow for detailed manipulation of:
- Internal audio routing
- Hardware-specific settings
- Mixer functionality
- Level monitoring
- Input/output configuration
These controls go beyond the basic audio I/O functionality provided by
the generic ALSA USB audio driver.
## What interfaces are supported?
The ALSA Scarlett Control Panel supports:
- **Scarlett 1st Gen**: 6i6, 8i6, 18i6, 18i8, 18i20
- **Scarlett 2nd Gen**: 6i6, 18i8, 18i20
- **Scarlett 3rd Gen**: Solo, 2i2, 4i4, 8i6, 18i8, 18i20
- **Scarlett 4th Gen**: Solo, 2i2, 4i4, 16i16, 18i16, 18i20
- **Clarett USB and Clarett+**: 2Pre, 4Pre, 8Pre
- **Vocaster**: One, Two
Note: The Scarlett 1st and 2nd Gen small interfaces (Solo, 2i2, 2i4)
don’t have any software controls. All the controls are available from
the front panel, so they don’t require the specialised drivers or this
GUI.
## Where are the options to set the sample rate and buffer size?
The ALSA Scarlett Control Panel doesn’t handle audio input/output
settings like sample rate and buffer size. These settings are managed
by the application using the soundcard, typically a sound server such
as PulseAudio, JACK, or PipeWire.
The sample rate shown in the control panel is informative only and
displays the current rate being used by applications. If it shows
“N/A” then no application is using the interface.
Note that not all features are available at higher sample rates; refer
to the user manual of your interface for more information.
## Why do my settings keep resetting?
The settings in the ALSA Scarlett Control Panel are automatically
saved in the interface itself (all series except 1st Gen), so they
should persist across reboots, power cycles, USB disconnect/reconnect,
and even across different computers. This includes all routing,
mixing, and other control panel settings.
If you find that your settings are reverting whenever you plug your
interface in, power it back on, or even if you reset to factory
defaults, the most likely cause is the `alsa-state` and `alsa-restore`
systemd services. These services save the state of ALSA controls on
system shutdown to `/var/lib/alsa/asound.state` and then restore it
each time the device is plugged in, potentially overwriting your
interface’s stored settings.
It can be rather annoying, wondering why your device is unusable or
needs to be reconfigured every time you plug it in or turn it on.
Presuming that you have no other sound card that needs this ALSA
service, then disable and stop these two services and remove the
`asound.state` file:
```sh
sudo systemctl mask alsa-state
sudo systemctl mask alsa-restore
sudo systemctl stop alsa-state
sudo systemctl stop alsa-restore
sudo rm /var/lib/alsa/asound.state
```
You can verify if this is the cause of your issues by:
1. Change some setting that is indicated on the device (the “Inst”
setting is a good one to test with).
2. Disconnect USB and notice the state of the setting on the device
has not changed.
3. Power cycle the device and notice the state of the setting on the
device has not changed.
4. Reconnect USB and notice the state of the setting on the device has
changed.
If the setting on the device changes at step 4, then the `alsa-state`
and `alsa-restore` services are the likely cause of your issues and
you should disable them as above.
## Why is there no stereo output? I only see surround options.
By default, PulseAudio/PipeWire treats multi-channel interfaces as
surround sound devices. To get proper stereo output and individual
channel access, select the "Pro Audio" profile:
1. Open `pavucontrol` (PulseAudio Volume Control)
2. Go to the Configuration tab
3. Find your Scarlett/Clarett/Vocaster
4. Change the profile to "Pro Audio"
This gives you access to all channels individually instead of
mapping them to surround speaker positions.
Note: Some desktop sound settings panels (notably GNOME Settings
and Linux Mint's) don't handle multi-channel interfaces well. Use
`pavucontrol` instead for reliable configuration.
## My desktop audio is coming through my microphone input
This typically happens because the default PulseAudio/PipeWire
profile maps your interface's channels incorrectly. For example,
the Scarlett Solo gets treated as a 4.0 surround device where the
"Rear" channels are actually your loopback inputs (desktop audio
routed back to recording applications).
The fix is the same as above: select the "Pro Audio" profile in
`pavucontrol`. This prevents PulseAudio/PipeWire from conflating
hardware inputs with loopback channels.
If you need loopback (recording desktop audio), use the Routing
window in `alsa-scarlett-gui` to explicitly configure which PCM
inputs receive which sources.
## My mixer isn't working / no audio passes through
The hardware mixer in Scarlett interfaces is disabled at higher
sample rates. This is a hardware limitation:
- At **single-band** rates (44.1/48 kHz): mixer fully functional
- At **dual-band** rates (88.2/96 kHz): mixer available on most
models (some have reduced mix buses)
- At **quad-band** rates (176.4/192 kHz): mixer entirely
unavailable
If your sample rate is set high and no audio passes through the
mixer, this is expected behaviour. Lower the sample rate, or
route audio directly (bypassing the mixer) in the Routing window.
The mixer window will show a dimmed overlay message when the
mixer is unavailable at the current sample rate.
## My interface shows limited controls or wrong channel count
If your interface only shows a few inputs or missing controls,
the most likely cause is a firmware version mismatch. This
happens when:
- You updated firmware on Windows/Mac to a version newer than
what the Linux tools support, or
- You're running an older version of `alsa-scarlett-gui` or
`fcp-server` that doesn't match your firmware
**Solution:** Update `alsa-scarlett-gui` (and `fcp-server` if
using a Gen 4 large interface) to the latest version. If needed,
the GUI will prompt you to update your firmware to a compatible
version.
For Gen 4 large interfaces, ensure your `fcp-server` version
matches the firmware version — they must be from the same
release.
## What do I need for a Scarlett 4th Gen 16i16, 18i16, or 18i20?
The "big" 4th Gen interfaces use a different driver architecture
from all other supported models. You need:
1. **Linux kernel 6.14+** — contains the FCP kernel driver
2. **fcp-server** — the user-space daemon from the
[fcp-support](https://github.com/geoffreybennett/fcp-support)
repo
3. **Firmware** — from the
[scarlett4-firmware](https://github.com/geoffreybennett/scarlett4-firmware)
repo, installed to `/usr/lib/firmware/scarlett4`
4. **alsa-scarlett-gui** — version 1.0 or later
Verify your setup by checking `dmesg` after plugging in. You
should see:
```
Focusrite Control Protocol Driver v6.x.x ready
```
If that message is missing, your kernel doesn't have the FCP
driver. Check that you're actually booted into the correct kernel
with `uname -r`.
## ALSA UCM errors after a distro update
If you see errors mentioning "UCM" (Use Case Manager) after
updating your distribution or PipeWire, the issue is likely
outdated `alsa-ucm-conf` files shipped by your distro.
**Solution:** Install the latest alsa-ucm-conf from
https://github.com/geoffreybennett/alsa-ucm-conf — this fork
contains the correct UCM2 profiles for Focusrite interfaces.
This is not a bug in `alsa-scarlett-gui` or the kernel driver;
it's a packaging issue in some distributions. The fix usually
arrives in distro updates within a few days of being reported.
## USB connection problems / intermittent failures
If your interface intermittently fails to initialise, drops out,
or shows errors like `usb_set_interface failed (-71)` in `dmesg`:
1. **Try a different USB cable** — this is the most common cause.
On interfaces with a front-panel LED, the LED should turn
white during USB setup. If it stays red, the cable or port
isn't providing adequate connection.
2. **Use a cable under 2 metres**
3. **Connect directly** — avoid USB hubs where possible
4. **Try a different USB port** — ideally one on its own USB bus
5. **Check USB autosuspend** — some systems aggressively suspend
USB devices. Check if
`/sys/bus/usb/devices/*/power/control` is set to `auto` for
your interface and change it to `on` if so.
## My input gain keeps decreasing by itself
This is the Safe Mode feature working as intended. Safe Mode
automatically reduces gain when the input signal clips, to
prevent distortion in recordings.
If you're using the interface for voice calls, streaming, or
other non-recording purposes where occasional clipping isn't
critical, disable Safe Mode in the main window of
`alsa-scarlett-gui`.
## PipeWire/JACK conflicts
If you're running JACK alongside PipeWire (or starting JACK
manually), it will take exclusive control of your interface,
preventing other applications from using it.
Modern PipeWire includes full JACK compatibility. The simplest
solution is to not start JACK separately — PipeWire provides a
JACK-compatible interface that applications can use
transparently. Remove or disable any JACK autostart configuration
and use PipeWire's built-in JACK support instead.
## An application says it can't open my device
Applications that try to open the ALSA device directly (using
paths like `plughw:3,0` or `hw:2,0`) will fail if PipeWire
already has the device open.
**Solution:** Configure the application to use the default audio
device (usually shown as "Default" or "PipeWire" in its settings)
rather than a specific hardware path. In most applications, this
means selecting "default" or "PipeWire" as the audio device.
## Firefox/Wine/games crash or create excessive connections
Some applications can't handle interfaces with more than 8
channels, causing crashes or misbehaviour:
- **Firefox**: may create a new PipeWire connection every second,
flooding your audio graph
- **Wine/games**: may crash with channel mask errors when the
interface has more than 8 channels
**Solution:** Create a virtual stereo device that applications
can use instead of the raw multi-channel interface:
```sh
pactl load-module module-remap-sink \
sink_name=scarlett-stereo \
master=$(pactl list short sinks | grep -i scarlett | cut -f2) \
channels=2
```
Or select the "Pro Audio" profile in `pavucontrol` and use
PipeWire's built-in routing to present a stereo device to
applications.
## The application won't start or shows rendering errors
If `alsa-scarlett-gui` fails to start, shows a blank window, or
crashes with Vulkan/rendering errors, try setting the GTK4
renderer:
```sh
GSK_RENDERER=ngl alsa-scarlett-gui
```
If that works, make it permanent by adding
`GSK_RENDERER=ngl` to your environment (e.g. in
`~/.bashrc` or a systemd environment file).
This is a GTK4/GPU driver issue, not specific to
`alsa-scarlett-gui`.
## Flatpak limitations
The Flatpak version of `alsa-scarlett-gui` has some limitations
due to sandboxing:
- **Firmware updates** cannot be performed from the Flatpak
version because the sandbox prevents access to the firmware
directory. Use the native build for firmware updates.
- **Configuration save/load** using `alsactl` format may not work
within the Flatpak sandbox. The native `.conf` format works
normally.
If you only need basic device control (routing, mixer, levels),
the Flatpak works fine. For firmware management, build and install
natively.
## How do I create virtual audio channels?
If you want named stereo outputs (like a "Music" output and a
"Voice" output routed to different physical channels), you can
create virtual PulseAudio/PipeWire sinks:
```sh
# Create a virtual stereo sink mapped to outputs 3-4
pactl load-module module-remap-sink \
sink_name=music-out \
master=alsa_output.usb-Focusrite_Scarlett_18i20-00.pro-output-0 \
channels=2 \
master_channel_map=front-left,front-right \
channel_map=front-left,front-right \
remix=no
```
These virtual sinks then appear in your application audio
settings as separate output devices. Use `qpwgraph` or
`pw-link` to route them to specific physical outputs on your
interface.
This is independent of the hardware routing in
`alsa-scarlett-gui` — it's PipeWire/PulseAudio-level virtual
routing on top of whatever hardware routing you've configured.
## Why does phantom power turn on when I plug in my interface?
This is the same `alsa-state`/`alsa-restore` issue described in
"Why do my settings keep resetting?" above. The systemd services
restore a previously-saved state that had phantom power enabled.
This can be a safety concern if you have ribbon microphones or
other equipment that can be damaged by unexpected phantom power.
Disable the `alsa-state` and `alsa-restore` services as described
above.
## Help?!
Have you read the User Guide for your interface? It’s available
online: https://downloads.focusrite.com/focusrite and contains a lot
of helpful/useful/important information about your device.
You can skip the “Easy Start” and “Setting up your DAW” sections, but
the rest is well worth reading. Even the information about Focusrite
Control is useful, although not directly applicable, because it will
help you understand more about the possibilities of what you can do
with your device.
For help with the Scarlett2 and FCP kernel drivers:
https://github.com/geoffreybennett/linux-fcp/issues
For help with the FCP user-space side:
https://github.com/geoffreybennett/fcp-support/issues
For help with `alsa-scarlett-gui`:
https://github.com/geoffreybennett/alsa-scarlett-gui/issues
For general Linux audio help: https://linuxmusicians.com
alsa-scarlett-gui-1.0~beta9/LICENSES/ 0000775 0000000 0000000 00000000000 15212330051 0017213 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/LICENSES/GPL-2.0.txt 0000664 0000000 0000000 00000044250 15212330051 0020700 0 ustar 00root root 0000000 0000000 Valid-License-Identifier: GPL-2.0
Valid-License-Identifier: GPL-2.0-only
Valid-License-Identifier: GPL-2.0+
Valid-License-Identifier: GPL-2.0-or-later
SPDX-URL: https://spdx.org/licenses/GPL-2.0.html
Usage-Guide:
To use this license in source code, put one of the following SPDX
tag/value pairs into a comment according to the placement
guidelines in the licensing rules documentation.
For 'GNU General Public License (GPL) version 2 only' use:
SPDX-License-Identifier: GPL-2.0
or
SPDX-License-Identifier: GPL-2.0-only
For 'GNU General Public License (GPL) version 2 or any later version' use:
SPDX-License-Identifier: GPL-2.0+
or
SPDX-License-Identifier: GPL-2.0-or-later
License-Text:
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License along
with this program; if not, see .
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Library General
Public License instead of this License.
alsa-scarlett-gui-1.0~beta9/LICENSES/GPL-3.0-or-later.txt 0000664 0000000 0000000 00000103556 15212330051 0022431 0 ustar 00root root 0000000 0000000 GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright © 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for software and other kinds of works.
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and modification follow.
TERMS AND CONDITIONS
0. Definitions.
“This License” refers to version 3 of the GNU General Public License.
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
A “covered work” means either the unmodified Program or a work based on the Program.
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
1. Source Code.
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
The Corresponding Source for a work in source code form is that same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
7. Additional Terms.
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
11. Patents.
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
Copyright (C)
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program 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 General Public License along with this program. If not, see .
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
Copyright (C)
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see .
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .
alsa-scarlett-gui-1.0~beta9/LICENSES/LGPL-3.0-or-later.txt 0000664 0000000 0000000 00000016403 15212330051 0022537 0 ustar 00root root 0000000 0000000 GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License.
"The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version".
The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:
a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:
a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license document.
c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.
1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.
e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.
alsa-scarlett-gui-1.0~beta9/LICENSES/Linux-syscall-note.txt 0000664 0000000 0000000 00000002351 15212330051 0023467 0 ustar 00root root 0000000 0000000 SPDX-Exception-Identifier: Linux-syscall-note
SPDX-URL: https://spdx.org/licenses/Linux-syscall-note.html
SPDX-Licenses: GPL-2.0, GPL-2.0+, GPL-1.0+, LGPL-2.0, LGPL-2.0+, LGPL-2.1, LGPL-2.1+, GPL-2.0-only, GPL-2.0-or-later
Usage-Guide:
This exception is used together with one of the above SPDX-Licenses
to mark user space API (uapi) header files so they can be included
into non GPL compliant user space application code.
To use this exception add it with the keyword WITH to one of the
identifiers in the SPDX-Licenses tag:
SPDX-License-Identifier: WITH Linux-syscall-note
License-Text:
NOTE! This copyright does *not* cover user programs that use kernel
services by normal system calls - this is merely considered normal use
of the kernel, and does *not* fall under the heading of "derived work".
Also note that the GPL below is copyrighted by the Free Software
Foundation, but the instance of code that it refers to (the Linux
kernel) is copyrighted by me and others who actually wrote it.
Also note that the only valid version of the GPL as far as the kernel
is concerned is _this_ particular version of the license (ie v2, not
v2.2 or v3.x or whatever), unless explicitly otherwise stated.
Linus Torvalds
alsa-scarlett-gui-1.0~beta9/Makefile 0000664 0000000 0000000 00000003307 15212330051 0017451 0 ustar 00root root 0000000 0000000 NAME := alsa-scarlett-gui
VERSION := $(shell git describe --abbrev=4 --always --tags | sed 's/-rc/~rc/g; s/-/./g')
NAMEVER := $(NAME)-$(VERSION)
TAR_FILE := $(NAMEVER).tar
TARGZ_FILE := $(TAR_FILE).gz
SPEC_FILE := $(NAME).spec
default:
@echo "alsa-scarlett-gui"
@echo
@echo "If you want to build and install from source, please try:"
@echo " cd src"
@echo " make -j$(shell nproc)"
@echo " sudo make install"
@echo
@echo "This Makefile knows about packaging:"
@echo " make tar"
@echo " make rpm"
@echo " make deb"
@echo " make arch"
tar: $(TARGZ_FILE)
$(TARGZ_FILE):
git archive --format=tar --prefix=$(NAMEVER)/ HEAD > $(TAR_FILE)
sed 's_VERSION$$_$(VERSION)_' < $(SPEC_FILE).template > $(SPEC_FILE)
tar --append -f $(TAR_FILE) \
--transform s_^_$(NAMEVER)/_ \
--owner=root --group=root \
$(SPEC_FILE)
rm -f $(SPEC_FILE)
gzip < $(TAR_FILE) > $(TARGZ_FILE)
rm -f $(TAR_FILE)
rpm: $(TARGZ_FILE)
rpmbuild -tb $(TARGZ_FILE)
deb:
$(MAKE) -C src VERSION=$(VERSION) PREFIX=/usr
mkdir -p deb-build/DEBIAN \
deb-build/usr/bin \
deb-build/usr/share/applications \
deb-build/usr/share/icons/hicolor/256x256/apps \
deb-build/usr/share/doc/$(NAME)
cp src/alsa-scarlett-gui deb-build/usr/bin/
cp src/vu.b4.alsa-scarlett-gui.desktop deb-build/usr/share/applications/
cp src/img/vu.b4.alsa-scarlett-gui.png deb-build/usr/share/icons/hicolor/256x256/apps/
cp -r README.md FAQ.md RELEASE-NOTES.md demo docs img deb-build/usr/share/doc/$(NAME)/
sed "s/VERSION/$(VERSION)/g" debian/control > deb-build/DEBIAN/control
dpkg-deb --root-owner-group --build deb-build $(NAME)_$(VERSION).deb
rm -rf deb-build
arch:
sed 's/VERSION/$(VERSION)/g' PKGBUILD.template > PKGBUILD
alsa-scarlett-gui-1.0~beta9/PKGBUILD.template 0000664 0000000 0000000 00000001070 15212330051 0020742 0 ustar 00root root 0000000 0000000 # Maintainer: Geoffrey D. Bennett
pkgname=alsa-scarlett-gui
pkgver=VERSION
pkgrel=1
pkgdesc='GTK4 GUI for Focusrite Scarlett/Clarett/Vocaster audio interfaces'
arch=('x86_64')
url="https://github.com/geoffreybennett/$pkgname"
license=('GPL3' 'LGPL3')
depends=('gtk4' 'alsa-lib' 'openssl')
makedepends=('make' 'gcc')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('SKIP')
build() {
cd "$pkgname-$pkgver/src"
make PREFIX=/usr
}
package() {
cd "$pkgname-$pkgver/src"
make PREFIX=/usr DESTDIR="$pkgdir" install
}
alsa-scarlett-gui-1.0~beta9/README.md 0000664 0000000 0000000 00000007747 15212330051 0017304 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel (`alsa-scarlett-gui`) v1.0 beta
A Linux control panel for Focusrite Scarlett, Clarett, and Vocaster
USB audio interfaces — the equivalent of Focusrite Control /
Scarlett MixControl / Vocaster Hub on Linux.
Configure routing, mixing, input/output levels, DSP processing,
and firmware updates through a graphical interface.
This is a beta release — better than 0.5 but not quite 1.0. The
docs still need some updating.
## Supported Interfaces
- Scarlett 1st Gen 6i6, 8i6, 18i6, 18i8, 18i20
- Scarlett 2nd Gen 6i6, 18i8, 18i20
- Scarlett 3rd Gen Solo, 2i2, 4i4, 8i6, 18i8, 18i20
- Scarlett 4th Gen Solo, 2i2, 4i4, 16i16, 18i16, 18i20
- Clarett 2Pre, 4Pre, 8Pre USB
- Clarett+ 2Pre, 4Pre, 8Pre
- Vocaster One and Vocaster Two

## Features
- **Drag-and-drop routing** — visual audio routing matrix with
real-time signal level glow
- **Matrix mixer** — full mixer with per-crosspoint gain dials and
post-gain level metering
- **DSP controls** — interactive parametric EQ and compressor with
draggable response graph (Vocaster)
- **Configuration** — custom port names, stereo linking, port
visibility, and autogain targets
- **Monitor groups** — Main/Alt output groups with per-output source
and trim (Gen 4 large)
- **Presets** — quick save/load of named configurations, plus
file-based save/load
- **Level meters** — real-time level display for all routing points
- **Firmware updates** — integrated firmware upgrade support
## Documentation
Refer to [INSTALL.md](docs/INSTALL.md) for prerequisites, how to
build, install, and run.
Refer to [USAGE.md](docs/USAGE.md) for general usage information and
known issues.
Information specific to various models:
- [Scarlett 1st Gen 6i6+](docs/iface-1st-gen.md)
- [Scarlett 3rd Gen Solo and 2i2](docs/iface-small.md)
- [Scarlett 2nd/3rd Gen 4i4+, Clarett USB, and
Clarett+](docs/iface-large.md)
- [Scarlett 4th Gen Solo, 2i2, 4i4](docs/iface-4th-gen-small.md)
- [Scarlett 4th Gen 16i16, 18i16,
18i20](docs/iface-4th-gen-big.md)
- [Vocaster One and Two](docs/iface-vocaster.md)
Additional documentation:
- [Configuration Window](docs/configuration.md)
- [Presets and Configuration Files](docs/presets.md)
- [DSP Window](docs/dsp.md) (Vocaster)
- [Digital I/O Availability](docs/digital-io-availability.md)
- [FAQ](FAQ.md) — Troubleshooting and common questions
- [Release Notes](RELEASE-NOTES.md) — What's new in each version
## Donations
This software — the Linux kernel driver, this control panel, and the
documentation — represents over a thousand hours of independent
development: reverse-engineering Focusrite's USB protocols,
developing and upstreaming the kernel driver, and building a
complete replacement for Scarlett MixControl, Focusrite Control,
Focusrite Control 2, and Vocaster Hub — often providing more
functionality than Focusrite's own software.
If you've found it valuable, a donation is a nice way to say thanks:
- https://liberapay.com/gdb
- https://paypal.me/gdbau
- Zelle: g@b4.vu
## License
Copyright 2022-2026 Geoffrey D. Bennett
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.
This program 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 General Public License
along with this program. If not, see .
## Disclaimer Third Parties
Focusrite, Scarlett, Clarett, and Vocaster are trademarks or
registered trademarks of Focusrite Audio Engineering Limited in
England, USA, and/or other countries. Use of these trademarks does not
imply any affiliation or endorsement of this software.
alsa-scarlett-gui-1.0~beta9/RELEASE-NOTES.md 0000664 0000000 0000000 00000051552 15212330051 0020306 0 ustar 00root root 0000000 0000000 # Release Notes
## 1.0
This release of alsa-scarlett-gui introduces substantial new features
across over 110 commits.
**For all supported devices** (except 2nd/3rd Gen Solo/2i2): a
configuration window with custom I/O naming and visibility settings,
device presets, stereo linking throughout the routing, mixer, and
configuration windows, and numerous visual and usability improvements.
**For Vocaster**: a full DSP window with parametric EQ and compressor
controls, with stereo linking support.
**For big 4th Gen interfaces** (16i16, 18i16, 18i20): monitor groups
and firmware update support.
## DSP Window
A new DSP window (View → DSP, or Ctrl-D) provides control over the
digital signal processing available on Vocaster interfaces. Each DSP
channel has three processing sections applied in order: pre-compressor
filter, compressor, and parametric EQ.
The Vocaster One has a single DSP channel; the Vocaster Two has two
channels. Channel names default to "Host" and "Guest" but can be
customised in the Configuration window — the DSP window headers update
to reflect custom names.
### Parametric EQ with Interactive Graph
Each filter section (pre-compressor and parametric EQ) includes an
interactive frequency response graph:
- **Draggable handles** — click and drag the numbered handles directly
on the graph to adjust frequency and gain (or frequency and Q for
filter types without gain)
- **Mouse wheel Q adjustment** — scroll over a handle to adjust Q
logarithmically (scroll up for narrower, down for wider)
- **Hover highlighting** — hovering over a handle highlights the
corresponding filter controls, and vice versa
- **Shaded curves** — each filter stage is drawn as a coloured curve
with translucent shading between the curve and the 0 dB line
- **Text entry fields** — type exact values for frequency, Q, and gain
- **Combined response** — a white line shows the combined effect of
all stages in the section
- **Display range toggle** — click the dB label to switch between ±12
dB and ±24 dB vertical range; auto-selects ±12 when all gains fit,
giving finer resolution for typical adjustments
- **Grid and labels** — frequency labels from 20 Hz to 20 kHz, dB
labels every 6 dB, with fine grid lines at all decade subdivisions
### Filter Types
A filter type dropdown with response-shape icons is available for each
filter stage. Twelve filter types are available:
- Peaking, Low Shelf, High Shelf
- Lowpass (12 dB/oct), Highpass (12 dB/oct)
- Bandpass, Notch
- Gain (simple level adjustment, no frequency shaping)
- LP/HP/LS/HS 6 dB/oct (first-order, gentler slope)
### Compressor Visualisation
The compressor section displays a transfer curve showing input vs
output level. A real-time level dot on the curve shows the current
signal position, turning red when the signal clips. The curve updates
in real time as you adjust threshold, ratio, knee width, and makeup
gain. Attack and release controls set the compressor's timing
behaviour.
### DSP Section Presets
Each processing section has a Presets button offering quick
configurations:
- **Pre-Compressor Filter**: None, Rumble Reduction Low, Rumble
Reduction High
- **Compressor**: Off, Low, Med, High
- **Parametric EQ**: Radio, Clean, Warm, Bright
### DSP Enable and Visualisation
The channel name button (e.g. "Host") toggles all DSP processing for
that channel — when disabled, all curves are dimmed and dashed.
Individual filter stages can be enabled or disabled with their
checkboxes; bypassed stages are shown dimmed and dashed while the
combined response (white line) adjusts to reflect only the active
stages.
### DSP Channel Linking
On the Vocaster Two, a link button between the two DSP channels lets
you apply identical processing to both. When linked, channel 2
controls are hidden and all parameters sync bidirectionally — changes
to channel 1 are mirrored to channel 2. The header shows the pair name
when linked. Link state persists across sessions.
### Parameter Persistence
Filter parameters (type, frequency, Q, gain, and enable state) are
persisted across application restarts. When a filter stage is
disabled, the hardware discards its parameters — the application saves
and restores them so your settings are preserved.
### External Coefficient Updates
If biquad coefficients are changed externally (e.g. by another
application), the DSP window analyses the new coefficients to
determine the filter type and parameters, and updates the controls and
graph accordingly.
## Configuration Window
A new Configuration window (View → Configuration, or Ctrl-G) provides
device customisation organised into tabs. The available tabs depend on
your interface's capabilities. The window is resizable, and your
selected tab is remembered between sessions.
### Device Name
Set a custom name for your interface. The name appears in the window
title bar, making it easy to identify multiple interfaces of the same
model.
### Device Settings
On Clarett interfaces, the Device Settings tab provides an S/PDIF
Source control for selecting the digital input source (None, Optical,
or RCA). This setting takes effect immediately without requiring a
reboot.
### I/O Configuration
The I/O Configuration tab lets you customise port names, visibility,
and stereo linking across all port types. It is organised into
sub-tabs by port type (Analogue, S/PDIF, ADAT, PCM, DSP, Mixer), with
your selected sub-tab also remembered between sessions.
#### Custom Port Names
Every input and output port can be given a custom name. Generic labels
(e.g. "Analogue 1") are shown alongside the port, with device-specific
default names (e.g. "Mic", "Headphone") shown as placeholder text in
the entry field. Custom names propagate throughout the application —
routing labels, mixer headers, and DSP window titles all update to
reflect your names.
#### Show/Hide Ports
A checkbox next to each port controls its visibility. Hiding ports
that you don't use declutters the routing and mixer windows. Each port
type sub-tab has an "all" checkbox in its tab label that toggles
visibility for the entire category at once — it shows a mixed state
when some ports are visible and others hidden.
On the big 4th Gen interfaces (16i16, 18i16, 18i20) which have fixed
mixer inputs (permanently connected to specific sources), the Mixer
sub-tab splits inputs into columns by port type for easier navigation.
#### Stereo Linking
A link button (chain icon) between adjacent port pairs lets you pair
them as stereo. When linked:
- The two individual channels collapse into a single stereo row
- A pair name field replaces the individual name entries, with
device-specific default pair names (e.g. "Stereo Mic" for DSP 1–2)
shown as placeholder text
- Enable state is synchronised between the paired channels
- The routing window shows a single stereo connection
- Mixer controls display averaged gain for the pair
For fixed mixer inputs, the link state is read-only and follows the
source channel's link state.
Linking and unlinking updates all windows immediately. The left
channel's settings take priority (routing source, enable state,
monitor group assignments); mixer gains are averaged. Any routing that
doesn't follow a valid L→L/R→R pattern is cleared to Off. Link state
propagates: linking one end of a stereo connection automatically links
the other end, and unlinking propagates similarly.
On first use with a device, the application analyses existing routing
and mixer connections to determine which channels appear to be used as
stereo pairs, and initialises link state accordingly.
### Autogain
The Autogain tab provides gain faders for configuring the target
levels that the Autogain feature aims for. The 4th Gen 2i2/4i4 has Mean
and Peak targets; the Vocaster has a Hot target.
### Monitor Groups
On 4th Gen 16i16/18i16/18i20 interfaces, the Monitor Groups tab lets you
organise analogue outputs into Main and Alt groups. This replaces the
limited main/alt speaker switching of earlier big interfaces (which
could only swap between line outputs 1–2 and 3–4) with fully flexible
output grouping, and also replaces the old HW/SW volume control
switch.
Each output has:
- **Enable** checkbox — include this output in the group
- **Source** dropdown — select which input feeds this output when the
group is active; shows custom port names and is stereo-aware
(stereo-linked outputs only show stereo sources; mono outputs hide
stereo sources)
- **Trim** fader — per-output level calibration
Switch between Main and Alt groups using the Alt button on your
interface or the toggle in the main window. The main volume knob
controls the outputs in the active group. Outputs that belong only to
the inactive group are muted — outputs present in both groups are
never muted, they follow whichever group is currently active.
This enables use cases like:
- **A/B speaker comparison** — assign two sets of speakers to Main and
Alt, switch between them with the Alt button; use trim to match
their volumes
- **Surround monitoring** — put all surround speakers in the Main
group for unified volume control from the knob; use trim to
calibrate individual speaker levels
- **Surround/stereo switching** — surround speakers in Main, stereo
pair in Alt, for quick format comparison
- **Stereo/mono comparison** — stereo mix in Main, mono mixdown in
Alt, for checking mono compatibility
- **DAW/direct monitoring switch** — Main from PCM (hearing yourself
through the DAW with processing), Alt from a mixer output that
combines PCM playback with hardware inputs (zero-latency direct
monitoring while still hearing your backing tracks)
When outputs are stereo-linked, the Monitor Groups tab shows a single
row for the pair with a stereo trim widget. Enable and source settings
apply to both channels; selecting a stereo source routes L to L and R
to R.
## Routing Window
The routing window (View → Routing, or Ctrl-R) has received
substantial visual and functional improvements.
### Signal Level Glow
Routing lines now display a real-time glow effect that reflects the
audio signal level passing through the connection. The glow colour
transitions from green (low level) through yellow to red (near
clipping), with intensity proportional to the signal level. This makes
it easy to see at a glance which connections are carrying audio and at
what level.
On big 4th Gen interfaces, sources that have signal but are not routed
to any output display a circular glow around their socket. (Other
interfaces only report levels at sink nodes, so unconnected sources
have no level data.)
### Arrow Indicators for Hidden Ports
When a routing connection has one visible and one hidden port, an
arrow indicator appears at the visible end, showing that audio is
flowing to or from a port that is not currently displayed.
### Stereo Linking
Adjacent channels that are stereo-linked in the Configuration window
are displayed as a single stereo port in the routing window, using a
dedicated stereo socket icon that shows the L and R sub-ports.
Routing lines for stereo pairs are drawn as two parallel lines (L→L
and R→R), each with its own independent glow level. When dragging a
connection from a stereo port, two dashed lines follow the cursor.
### Monitor Group Indicators (Big 4th Gen)
On 4th Gen 16i16/18i16/18i20 interfaces with monitor groups configured,
the routing window shows the effective audio routing rather than just
the raw ALSA control values. When speaker switching is active:
- Outputs in the active group show their monitor group source as the
effective connection, with a green "Main" or red "Alt" label beside
the output name
- Outputs in the inactive group are shown with strikethrough text and
no routing line (they are muted)
- Outputs not assigned to either group show their normal individual
routing
This means the routing display always reflects what you actually hear,
regardless of whether the routing comes from individual settings or
the monitor group override.
## Mixer Window
The mixer window (View → Mixer, or Ctrl-M) has received several visual
and functional improvements.
### Signal Level Glow on Labels
Mixer input and output labels now display a real-time horizontal glow
bar reflecting the signal level at that port. The glow colour
transitions from green through yellow to red as the signal approaches
0 dBFS, matching the routing window's glow effect.
When channels are stereo-linked, each label shows split L/R glow bars
growing outward from the centre — giving independent visual feedback
of both channel levels.
### Orientation Legend
A corner label in the top-left of the mixer grid displays "Inputs →"
and "Outputs ↓", making it clear which axis is which.
### Level Metering on Gain Dials
Gain knobs throughout the application now include a signal level meter
inside the dial, with peak hold (except 1st Gen, where the kernel
driver doesn't support level metering). Main window input/output knobs
show the signal level at that point in the chain; mixer knobs show the
post-gain level (input signal plus applied gain). This gives immediate
visual feedback without needing to open the Levels window.
### Stereo-Aware Controls
When channels are stereo-linked (via the Configuration window), the
mixer adapts:
- Linked inputs or outputs appear as a single stereo fader rather than
two separate mono controls
- Stereo-to-stereo crosspoints show a single gain control for the
L→L and R→R path (averaged), with L→R and R→L crosstalk muted to
maintain stereo separation
- Level meters show the maximum level across both stereo channels
- Labels update to show the stereo pair name
### Custom Port Names
Mixer output labels (Mix A, Mix B, etc.) and input labels reflect any
custom names set in the Configuration window. Names are ellipsised if
they exceed the available space, with the full name shown as a
tooltip. Hover over a gain knob to highlight its input and output
labels at the edge.
### Dynamic Port Visibility
Ports hidden via the Configuration window's show/hide checkboxes are
removed from the mixer grid. The layout automatically adjusts so only
enabled ports appear, keeping the mixer as compact as possible and
relevant to your workflow.
### Mixer Unavailability at High Sample Rates
At quad-band sample rates (176.4 or 192 kHz), the hardware mixer is
not available. The mixer window indicates this by dimming all controls
and displaying an overlay message. Controls remain functional for
pre-configuration — adjustments take effect when you return to a
supported sample rate.
## Sample Rate and Digital I/O Availability
Some ports become unavailable due to hardware bandwidth limits.
Unavailable ports are shown with grey strikethrough text and a tooltip
explaining the limitation.
- **PCM channels** — the number of available channels decreases at
higher sample rates
- **Digital I/O** (S/PDIF, ADAT) — available port counts depend on the
sample rate and the Digital I/O mode or S/PDIF Source setting
- **Mixer** — at quad-band rates (176.4/192 kHz), the mixer is
entirely unavailable; mixer labels show in strikethrough, and the
mixer window dims with an overlay message
PCM and mixer availability updates in real time as the sample rate
changes. Digital I/O availability behaviour differs by interface:
- **Clarett** (4Pre, 8Pre) — the S/PDIF Source setting (None, Optical,
RCA) takes effect immediately; availability indicators update in
real time. Selecting "Optical" makes ADAT inputs unavailable since
the optical port is shared.
- **Scarlett** (3rd/4th Gen) — the Digital I/O Mode requires a device
reboot to take effect. The GUI shows availability based on the mode
that was active at startup.
## Presets
A Presets button in the main window provides quick save and load of
your device configuration. Presets are stored per device (identified
by serial number) in `~/.config/alsa-scarlett-gui/`.
### Saving Presets
Click the Presets button and select "Save as Preset..." to save the
current device state. Enter a name in the dialog and press Save (or
Enter). The preset captures all device settings: routing, mixer
levels, custom port names, visibility, stereo linking, monitor groups,
and DSP parameters.
### Loading Presets
Click the Presets button to see a list of saved presets for the
current device. Click a preset name to load it immediately — all
windows update to reflect the restored configuration.
### Deleting Presets
Each preset in the list has a delete button (×) on the right. Click it
to remove the preset file.
## Configuration Save and Load
The File menu provides Load Configuration (Ctrl-O) and Save
Configuration (Ctrl-S) for saving and loading device settings to
arbitrary files. Two formats are supported:
- **Native format (.conf)** — saves all device settings including
custom names, port visibility, stereo linking, and DSP parameters.
This is the default format and the same format used by presets.
- **alsactl state format (.state)** — saves ALSA control values in the
format used by `alsactl`. This format is also used for interface
simulation (File → Interface Simulation, Ctrl-I).
The file chooser dialog shows both formats with the native format
selected by default. When loading, the application detects the format
from the file extension.
## Firmware Update (Big 4th Gen)
Firmware update support has been expanded with the multi-step upgrade
capability required for big 4th Gen interfaces (16i16/18i16/18i20):
1. **Leapfrog** — a special firmware that can perform ESP updates is
uploaded, then the device is rebooted into it
2. **ESP** — after reboot, the ESP firmware is updated (no reboot
needed between this and the next step)
3. **Application** — the main application firmware is uploaded,
followed by a second reboot to load it
The upgrade prompt appears automatically when a newer firmware is
available. If the process is interrupted after the leapfrog stage
(e.g. by the device rebooting), the application detects the
mid-upgrade state and resumes automatically when the device reappears.
Progress is displayed in a modal dialog throughout each stage.
## Window State Persistence
Window visibility is remembered across sessions — windows that were
open when you quit are automatically restored on startup.
## Keyboard Shortcuts
All keyboard shortcuts now work from any window.
### File
| Shortcut | Action |
|----------|--------|
| Ctrl-O | Load Configuration |
| Ctrl-S | Save Configuration |
| Ctrl-I | Interface Simulation |
| Ctrl-Q | Exit |
### View
| Shortcut | Action |
|----------|--------|
| Ctrl-R | Routing Window |
| Ctrl-M | Mixer Window |
| Ctrl-L | Levels Window |
| Ctrl-D | DSP Window |
| Ctrl-G | Configuration Window |
| Ctrl-T | Startup Window |
### Help
| Shortcut | Action |
|----------|--------|
| Ctrl-H | Supported Hardware |
| Ctrl-/ | About |
Pressing Escape in any subwindow closes it.
## Device Support
### Scarlett Big 4th Gen (16i16, 18i16, 18i20)
Full support for big 4th Gen interfaces has been added, including
hardware identification, monitor groups, input mute, and output
volume/mute/dim controls. These devices require Linux 6.14+, the `fcp-server` daemon
from [fcp-support](https://github.com/geoffreybennett/fcp-support),
and the firmware from
[scarlett4-firmware](https://github.com/geoffreybennett/scarlett4-firmware).
See the Firmware Update section for details on the multi-step upgrade
process.
### Vocaster Speaker and Headphone Mute
Vocaster interfaces now have dedicated mute controls for speaker and
headphone outputs in the main window:
- **Speaker mute** — a speaker icon button that toggles muting of the
speaker output
- **Headphone mute** — a headphone icon button for each headphone
output (Vocaster Two has multiple headphone outputs)
### Device-Specific Default Port Names
The Configuration window's name entry fields show device-specific
default port names as placeholder text (e.g. "Mic", "Inst",
"Headphone", "Monitor"), replacing the generic "Analogue 1", "PCM 1"
labels.
## Local Configuration Storage
Custom port names, port visibility, stereo linking, and DSP filter
parameters are all stored locally per device (identified by serial
number) in `~/.config/alsa-scarlett-gui/`. These settings persist
across application restarts and are separate from the device's own
firmware state.
On first connection, the device's initial state is saved to
`.{serial}-init.conf` in the config directory, providing a baseline
for comparison or recovery.
Resetting the device configuration (via the startup screen's Reset
button) also removes this local configuration file, so custom names,
visibility, and stereo link settings are reset along with the device.
## Bug Fixes
Numerous bug fixes and stability improvements, including fixes to the
4th Gen master volume display, drop-down and popover styling, modal
window layering, gain dial redraw, and level meter display for devices
with implicit level maps.
## Known Issues
- The scarlett2 kernel driver reports incorrect level meter values at
dual-band and quad-band sample rates.
- Main window controls are not affected by the I/O Configuration
settings.
alsa-scarlett-gui-1.0~beta9/alsa-scarlett-gui.spec.template 0000664 0000000 0000000 00000001622 15212330051 0024016 0 ustar 00root root 0000000 0000000 Summary: ALSA Scarlett Control Panel
Name: alsa-scarlett-gui
Version: VERSION
Release: 1%{?dist}
License: GPLv3+ LGPLv3+
Url: https://github.com/geoffreybennett/alsa-scarlett-gui
Source0: https://github.com/geoffreybennett/alsa-scarlett-gui/archive/refs/tags/%{version}.tar.gz?/%{name}-%{version}.tar.gz
BuildRequires: pkgconfig(alsa)
BuildRequires: pkgconfig(gtk4)
BuildRequires: pkgconfig(openssl)
%description
alsa-scarlett-gui is a Gtk4 GUI for the ALSA controls presented by the
Linux kernel Focusrite USB drivers.
%prep
%setup -q -n %{name}-%{version}/src
%build
%make_build VERSION=%{version} PREFIX=%{_prefix}
%install
%make_install PREFIX=%{_prefix}
%files
%doc ../img ../demo ../docs ../*.md
%{_bindir}/alsa-scarlett-gui
%{_datadir}/applications/vu.b4.alsa-scarlett-gui.desktop
%{_iconsdir}/hicolor/256x256/apps/vu.b4.alsa-scarlett-gui.png
alsa-scarlett-gui-1.0~beta9/debian/ 0000775 0000000 0000000 00000000000 15212330051 0017230 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/debian/control 0000664 0000000 0000000 00000000404 15212330051 0020631 0 ustar 00root root 0000000 0000000 Package: alsa-scarlett-gui
Version: VERSION
Section: sound
Priority: optional
Architecture: amd64
Depends: libgtk-4-1, libasound2, libssl3
Maintainer: Geoffrey D. Bennett
Description: GTK4 GUI for Focusrite Scarlett/Clarett/Vocaster audio interfaces
alsa-scarlett-gui-1.0~beta9/demo/ 0000775 0000000 0000000 00000000000 15212330051 0016732 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/demo/Clarett Plus 2Pre.conf 0000664 0000000 0000000 00000023532 15212330051 0022701 0 ustar 00root root 0000000 0000000 [device]
serial=00008355
model=Clarett+ 2Pre
[controls]
Clock Source Clock Source=Internal
Line Out 01 Volume Control Playback Enum=HW
Line Out 02 Volume Control Playback Enum=HW
Line 03 (Headphones L) Playback Volume=127
Line 03 Mute Playback Switch=false
Line Out 03 Volume Control Playback Enum=SW
Line 04 (Headphones R) Playback Volume=127
Line 04 Mute Playback Switch=false
Line Out 04 Volume Control Playback Enum=SW
Mute Playback Switch=false
Dim Playback Switch=false
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Air Capture Switch=false
Line In 2 Air Capture Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
Mixer Input 09 Capture Enum=Off
Mixer Input 10 Capture Enum=Off
Mixer Input 11 Capture Enum=Off
Mixer Input 12 Capture Enum=Off
Mixer Input 13 Capture Enum=Off
Mixer Input 14 Capture Enum=Off
Mixer Input 15 Capture Enum=Off
Mixer Input 16 Capture Enum=Off
Mixer Input 17 Capture Enum=Off
Mixer Input 18 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=S/PDIF 1
PCM 04 Capture Enum=S/PDIF 2
PCM 05 Capture Enum=ADAT 1
PCM 06 Capture Enum=ADAT 2
PCM 07 Capture Enum=ADAT 3
PCM 08 Capture Enum=ADAT 4
PCM 09 Capture Enum=ADAT 5
PCM 10 Capture Enum=ADAT 6
PCM 11 Capture Enum=ADAT 7
PCM 12 Capture Enum=ADAT 8
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=0
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=0
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Standalone Switch=true
Name=
Analogue In 1 Name=
Analogue In 2 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Clarett Plus 2Pre.state 0000664 0000000 0000000 00000206234 15212330051 0023076 0 ustar 00root root 0000000 0000000 state.C2Pre {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
comment {
access 'read volatile'
type INTEGER
count 4
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
comment {
access 'read volatile'
type INTEGER
count 12
range '0 - 36'
}
}
control.3 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.7 {
iface CARD
name 'Firmware Version'
value 1993
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.8 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.9 {
iface MIXER
name 'Master HW Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.10 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.11 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line Out 01 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.13 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.14 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.15 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.16 {
iface MIXER
name 'Line 03 (Headphones L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.17 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line Out 03 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.19 {
iface MIXER
name 'Line 04 (Headphones R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.20 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Line Out 04 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.22 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.25 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.26 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.27 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.28 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.29 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.30 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.31 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.32 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.33 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.34 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.35 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.36 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.37 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.38 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.39 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.40 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.41 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.42 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.43 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.44 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.45 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.46 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.47 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.48 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.49 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.50 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.51 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.52 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.53 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.54 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.55 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.56 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.57 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.58 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.59 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.60 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.61 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'S/PDIF 1'
item.4 'S/PDIF 2'
item.5 'ADAT 1'
item.6 'ADAT 2'
item.7 'ADAT 3'
item.8 'ADAT 4'
item.9 'ADAT 5'
item.10 'ADAT 6'
item.11 'ADAT 7'
item.12 'ADAT 8'
item.13 'Mix A'
item.14 'Mix B'
item.15 'Mix C'
item.16 'Mix D'
item.17 'Mix E'
item.18 'Mix F'
item.19 'Mix G'
item.20 'Mix H'
item.21 'Mix I'
item.22 'Mix J'
item.23 'PCM 1'
item.24 'PCM 2'
item.25 'PCM 3'
item.26 'PCM 4'
}
}
control.62 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.64 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.66 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.89 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.240 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.242 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 1
value.23 1
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
comment {
access 'read volatile'
type INTEGER
count 34
range '0 - 4095 (step 1)'
}
}
control.243 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.244 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Clarett Plus 4Pre.conf 0000664 0000000 0000000 00000026523 15212330051 0022706 0 ustar 00root root 0000000 0000000 [device]
serial=00005517
model=Clarett+ 4Pre
[controls]
Clock Source Clock Source=Internal
Line Out 01 Volume Control Playback Enum=HW
Line Out 02 Volume Control Playback Enum=HW
Line 03 (Headphones 1 L) Playback Volume=127
Line 03 Mute Playback Switch=false
Line Out 03 Volume Control Playback Enum=SW
Line 04 (Headphones 1 R) Playback Volume=127
Line 04 Mute Playback Switch=false
Line Out 04 Volume Control Playback Enum=SW
Line 05 (Headphones 2 L) Playback Volume=127
Line 05 Mute Playback Switch=false
Line Out 05 Volume Control Playback Enum=SW
Line 06 (Headphones 2 R) Playback Volume=127
Line 06 Mute Playback Switch=false
Line Out 06 Volume Control Playback Enum=SW
Mute Playback Switch=false
Dim Playback Switch=false
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Air Capture Switch=false
Line In 2 Air Capture Switch=false
Line In 3 Air Capture Switch=false
Line In 4 Air Capture Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
Analogue Output 05 Playback Enum=PCM 5
Analogue Output 06 Playback Enum=PCM 6
S/PDIF Output 1 Playback Enum=PCM 7
S/PDIF Output 2 Playback Enum=PCM 8
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
Mixer Input 09 Capture Enum=Off
Mixer Input 10 Capture Enum=Off
Mixer Input 11 Capture Enum=Off
Mixer Input 12 Capture Enum=Off
Mixer Input 13 Capture Enum=Off
Mixer Input 14 Capture Enum=Off
Mixer Input 15 Capture Enum=Off
Mixer Input 16 Capture Enum=Off
Mixer Input 17 Capture Enum=Off
Mixer Input 18 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=Analogue 5
PCM 06 Capture Enum=Analogue 6
PCM 07 Capture Enum=Analogue 7
PCM 08 Capture Enum=Analogue 8
PCM 09 Capture Enum=S/PDIF 1
PCM 10 Capture Enum=S/PDIF 2
PCM 11 Capture Enum=ADAT 1
PCM 12 Capture Enum=ADAT 2
PCM 13 Capture Enum=ADAT 3
PCM 14 Capture Enum=ADAT 4
PCM 15 Capture Enum=ADAT 5
PCM 16 Capture Enum=ADAT 6
PCM 17 Capture Enum=ADAT 7
PCM 18 Capture Enum=ADAT 8
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=0
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=0
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Standalone Switch=true
S/PDIF Source Capture Enum=RCA
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
Analogue In 7 Name=
Analogue In 8 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
PCM Out 7 Name=
PCM Out 8 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
PCM In 15 Name=
PCM In 16 Name=
PCM In 17 Name=
PCM In 18 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
Analogue In 7 Switch=true
Analogue In 8 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
PCM Out 7 Switch=true
PCM Out 8 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
PCM In 15 Switch=true
PCM In 16 Switch=true
PCM In 17 Switch=true
PCM In 18 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Clarett Plus 4Pre.state 0000664 0000000 0000000 00000251313 15212330051 0023076 0 ustar 00root root 0000000 0000000 state.C4Pre {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
comment {
access 'read volatile'
type INTEGER
count 8
range '0 - 36'
}
}
control.2 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.6 {
iface CARD
name 'Firmware Version'
value 1955
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.7 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.8 {
iface MIXER
name 'Master HW Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.9 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.10 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.11 {
iface MIXER
name 'Line Out 01 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.12 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.13 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.15 {
iface MIXER
name 'Line 03 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.16 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line Out 03 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.18 {
iface MIXER
name 'Line 04 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.19 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Line Out 04 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.21 {
iface MIXER
name 'Line 05 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.22 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Line Out 05 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.24 {
iface MIXER
name 'Line 06 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.25 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface MIXER
name 'Line Out 06 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.27 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.28 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.29 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.30 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.31 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.32 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.33 {
iface MIXER
name 'Line In 3 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.34 {
iface MIXER
name 'Line In 4 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.35 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.36 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.37 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.38 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.39 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.40 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.41 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value 'PCM 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.42 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value 'PCM 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.43 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.44 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.45 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.46 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.47 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.48 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.49 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.50 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.51 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.52 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.53 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.54 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.55 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.56 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.57 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.58 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.59 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.60 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.61 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.62 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.63 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.64 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.65 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.66 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.67 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.68 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.69 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.70 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.71 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.72 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.73 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.74 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.75 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.76 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.77 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.78 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.79 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.89 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.240 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.242 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.243 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.244 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.245 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.246 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.247 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.248 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.249 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.250 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.251 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.252 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.253 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.254 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.255 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.256 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.257 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.258 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.259 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 1
value.27 1
value.28 1
value.29 1
value.30 1
value.31 1
value.32 1
value.33 1
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
comment {
access 'read volatile'
type INTEGER
count 44
range '0 - 4095 (step 1)'
}
}
control.260 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.261 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.262 {
iface MIXER
name 'S/PDIF Source Capture Enum'
value RCA
comment {
access 'read write'
type ENUMERATED
count 1
item.0 None
item.1 Optical
item.2 RCA
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Clarett Plus 8Pre.state 0000664 0000000 0000000 00000334402 15212330051 0023103 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.2 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.5 {
iface MIXER
name 'Master HW Playback Volume'
value 85
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -4200
}
}
control.6 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 85
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -4200
}
}
control.7 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line Out 01 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.9 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 85
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -4200
}
}
control.10 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.11 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.12 {
iface MIXER
name 'Line 03 Playback Volume'
value 81
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -4600
}
}
control.13 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line Out 03 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.15 {
iface MIXER
name 'Line 04 Playback Volume'
value 81
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -4600
}
}
control.16 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line Out 04 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.18 {
iface MIXER
name 'Line 05 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.19 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Line Out 05 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.21 {
iface MIXER
name 'Line 06 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.22 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Line Out 06 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.24 {
iface MIXER
name 'Line 07 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.25 {
iface MIXER
name 'Line 07 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface MIXER
name 'Line Out 07 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.27 {
iface MIXER
name 'Line 08 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.28 {
iface MIXER
name 'Line 08 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.29 {
iface MIXER
name 'Line Out 08 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.30 {
iface MIXER
name 'Line 09 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.31 {
iface MIXER
name 'Line 09 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.32 {
iface MIXER
name 'Line Out 09 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.33 {
iface MIXER
name 'Line 10 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.34 {
iface MIXER
name 'Line 10 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.35 {
iface MIXER
name 'Line Out 10 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.36 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.37 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.38 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.39 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.40 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.41 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.42 {
iface MIXER
name 'Line In 3 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.43 {
iface MIXER
name 'Line In 4 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.44 {
iface MIXER
name 'Line In 5 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.45 {
iface MIXER
name 'Line In 6 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.46 {
iface MIXER
name 'Line In 7 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.47 {
iface MIXER
name 'Line In 8 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.48 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.49 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.50 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.51 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.52 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.53 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.54 {
iface MIXER
name 'Analogue Output 07 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.55 {
iface MIXER
name 'Analogue Output 08 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.56 {
iface MIXER
name 'Analogue Output 09 Playback Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.57 {
iface MIXER
name 'Analogue Output 10 Playback Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.58 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value 'PCM 11'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.59 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value 'PCM 12'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.60 {
iface MIXER
name 'ADAT Output 1 Playback Enum'
value 'PCM 13'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.61 {
iface MIXER
name 'ADAT Output 2 Playback Enum'
value 'PCM 14'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.62 {
iface MIXER
name 'ADAT Output 3 Playback Enum'
value 'PCM 15'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.63 {
iface MIXER
name 'ADAT Output 4 Playback Enum'
value 'PCM 16'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.64 {
iface MIXER
name 'ADAT Output 5 Playback Enum'
value 'PCM 17'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.65 {
iface MIXER
name 'ADAT Output 6 Playback Enum'
value 'PCM 18'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.66 {
iface MIXER
name 'ADAT Output 7 Playback Enum'
value 'PCM 19'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.67 {
iface MIXER
name 'ADAT Output 8 Playback Enum'
value 'PCM 20'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.68 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.69 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.70 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.71 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.72 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.73 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.74 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.75 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.76 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.77 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.78 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.79 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.80 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.81 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.82 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.83 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.84 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.85 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.86 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.87 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.88 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.89 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.90 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.91 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.92 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.93 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.94 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.95 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.96 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.97 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.98 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.99 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.100 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.101 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.102 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.103 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.104 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 161
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 50
}
}
control.111 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 161
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 50
}
}
control.121 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.124 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 161
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 50
}
}
control.140 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.141 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.160 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.177 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.179 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.180 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.181 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.182 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.183 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.184 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.185 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.186 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.187 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.188 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.189 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.190 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.191 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.192 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.193 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.194 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.196 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.197 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.198 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.199 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.200 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.201 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.202 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.203 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.204 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.205 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.206 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.207 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.208 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.209 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.210 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.211 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.212 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.213 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.214 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.215 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.216 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.217 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.218 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.219 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.220 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.221 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.222 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.223 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.224 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.225 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.226 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.227 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.228 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.229 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.230 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.231 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.232 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.233 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.234 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.235 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.236 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.237 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.238 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.239 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.240 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.241 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.242 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.243 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.244 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.245 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.246 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.247 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.248 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.249 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.250 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.251 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.252 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.253 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.254 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.255 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.256 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.257 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.258 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.259 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.260 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.261 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.262 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.263 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.264 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.265 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.266 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.267 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.268 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.269 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.270 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.271 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.272 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.273 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.274 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.275 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.276 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.277 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.278 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.279 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.280 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.281 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.282 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.283 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.284 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 4090
value.3 897
value.4 4095
value.5 512
value.6 4094
value.7 384
value.8 1
value.9 0
value.10 16
value.11 0
value.12 3
value.13 3
value.14 2
value.15 2
value.16 0
value.17 0
value.18 4095
value.19 4095
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 4095
value.27 4095
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 4095
value.41 512
value.42 0
value.43 16
value.44 0
value.45 0
value.46 0
value.47 0
value.48 0
value.49 0
value.50 3
value.51 0
value.52 0
value.53 1
value.54 4095
value.55 4095
comment {
access 'read volatile'
type INTEGER
count 56
range '0 - 4095 (step 1)'
}
}
control.285 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.286 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 1 18i20.state 0000664 0000000 0000000 00000274533 15212330051 0023132 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface MIXER
name 'Extension Unit Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.2 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'S/PDIF Validity'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'ADAT Validity'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Scarlett 18i20 USB-Sync Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.6 {
iface MIXER
name 'Extension Unit Switch'
index 1
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Master Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Master Playback Volume'
value 134
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 600
}
}
control.9 {
iface MIXER
name 'Master 1 (Monitor) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.10 {
iface MIXER
name 'Master 1 (Monitor) Playback Volume'
value.0 134
value.1 134
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 600
dbvalue.1 600
}
}
control.11 {
iface MIXER
name 'Master 1L (Monitor) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.12 {
iface MIXER
name 'Master 1R (Monitor) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.13 {
iface MIXER
name 'Master 2 (Line 3/4) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.14 {
iface MIXER
name 'Master 2 (Line 3/4) Playback Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
dbvalue.1 -12800
}
}
control.15 {
iface MIXER
name 'Master 2L (Line 3/4) Source Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.16 {
iface MIXER
name 'Master 2R (Line 3/4) Source Playback Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.17 {
iface MIXER
name 'Master 3 (Line 5/6) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.18 {
iface MIXER
name 'Master 3 (Line 5/6) Playback Volume'
value.0 0
value.1 0
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
dbvalue.1 -12800
}
}
control.19 {
iface MIXER
name 'Master 3L (Line 5/6) Source Playback Enum'
value 'Mix G'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.20 {
iface MIXER
name 'Master 3R (Line 5/6) Source Playback Enum'
value 'Mix H'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.21 {
iface MIXER
name 'Master 4 (Line 7/8) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.22 {
iface MIXER
name 'Master 4 (Line 7/8) Playback Volume'
value.0 134
value.1 134
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 600
dbvalue.1 600
}
}
control.23 {
iface MIXER
name 'Master 4L (Line 7/8) Source Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.24 {
iface MIXER
name 'Master 4R (Line 7/8) Source Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.25 {
iface MIXER
name 'Master 5 (Line 9/10) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.26 {
iface MIXER
name 'Master 5 (Line 9/10) Playback Volume'
value.0 134
value.1 134
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 600
dbvalue.1 600
}
}
control.27 {
iface MIXER
name 'Master 5L (Line 9/10) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.28 {
iface MIXER
name 'Master 5R (Line 9/10) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.29 {
iface MIXER
name 'Master 6 (SPDIF) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.30 {
iface MIXER
name 'Master 6 (SPDIF) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.31 {
iface MIXER
name 'Master 6L (SPDIF) Source Playback Enum'
value 'Mix H'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.32 {
iface MIXER
name 'Master 6R (SPDIF) Source Playback Enum'
value 'Mix H'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.33 {
iface MIXER
name 'Master 7 (ADAT 1/2) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.34 {
iface MIXER
name 'Master 7 (ADAT 1/2) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.35 {
iface MIXER
name 'Master 7L (ADAT 1/2) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.36 {
iface MIXER
name 'Master 7R (ADAT 1/2) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.37 {
iface MIXER
name 'Master 8 (ADAT 3/4) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.38 {
iface MIXER
name 'Master 8 (ADAT 3/4) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.39 {
iface MIXER
name 'Master 8L (ADAT 3/4) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.40 {
iface MIXER
name 'Master 8R (ADAT 3/4) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.41 {
iface MIXER
name 'Master 9 (ADAT 5/6) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.42 {
iface MIXER
name 'Master 9 (ADAT 5/6) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.43 {
iface MIXER
name 'Master 9L (ADAT 5/6) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.44 {
iface MIXER
name 'Master 9R (ADAT 5/6) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.45 {
iface MIXER
name 'Master 10 (ADAT 7/8) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.46 {
iface MIXER
name 'Master 10 (ADAT 7/8) Playback Volume'
value.0 121
value.1 121
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -700
dbvalue.1 -700
}
}
control.47 {
iface MIXER
name 'Master 10L (ADAT 7/8) Source Playback Enum'
value 'Mix H'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.48 {
iface MIXER
name 'Master 10R (ADAT 7/8) Source Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.49 {
iface MIXER
name 'Matrix 01 Input Playback Route'
value 'Analog 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.50 {
iface MIXER
name 'Matrix 01 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.51 {
iface MIXER
name 'Matrix 01 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.52 {
iface MIXER
name 'Matrix 01 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.53 {
iface MIXER
name 'Matrix 01 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.54 {
iface MIXER
name 'Matrix 01 Mix E Playback Volume'
value 117
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1100
}
}
control.55 {
iface MIXER
name 'Matrix 01 Mix F Playback Volume'
value 98
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -3000
}
}
control.56 {
iface MIXER
name 'Matrix 01 Mix G Playback Volume'
value 102
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -2600
}
}
control.57 {
iface MIXER
name 'Matrix 01 Mix H Playback Volume'
value 81
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -4700
}
}
control.58 {
iface MIXER
name 'Matrix 02 Input Playback Route'
value 'Analog 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.59 {
iface MIXER
name 'Matrix 02 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.60 {
iface MIXER
name 'Matrix 02 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.61 {
iface MIXER
name 'Matrix 02 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.62 {
iface MIXER
name 'Matrix 02 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.63 {
iface MIXER
name 'Matrix 02 Mix E Playback Volume'
value 98
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -3000
}
}
control.64 {
iface MIXER
name 'Matrix 02 Mix F Playback Volume'
value 117
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1100
}
}
control.65 {
iface MIXER
name 'Matrix 02 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.66 {
iface MIXER
name 'Matrix 02 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.67 {
iface MIXER
name 'Matrix 03 Input Playback Route'
value 'Analog 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.68 {
iface MIXER
name 'Matrix 03 Mix A Playback Volume'
value 110
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1800
}
}
control.69 {
iface MIXER
name 'Matrix 03 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.70 {
iface MIXER
name 'Matrix 03 Mix C Playback Volume'
value 31
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -9700
}
}
control.71 {
iface MIXER
name 'Matrix 03 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.72 {
iface MIXER
name 'Matrix 03 Mix E Playback Volume'
value 124
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -400
}
}
control.73 {
iface MIXER
name 'Matrix 03 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.74 {
iface MIXER
name 'Matrix 03 Mix G Playback Volume'
value 86
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -4200
}
}
control.75 {
iface MIXER
name 'Matrix 03 Mix H Playback Volume'
value 6
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12200
}
}
control.76 {
iface MIXER
name 'Matrix 04 Input Playback Route'
value 'Analog 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.77 {
iface MIXER
name 'Matrix 04 Mix A Playback Volume'
value 6
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12200
}
}
control.78 {
iface MIXER
name 'Matrix 04 Mix B Playback Volume'
value 110
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1800
}
}
control.79 {
iface MIXER
name 'Matrix 04 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.80 {
iface MIXER
name 'Matrix 04 Mix D Playback Volume'
value 31
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -9700
}
}
control.81 {
iface MIXER
name 'Matrix 04 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.82 {
iface MIXER
name 'Matrix 04 Mix F Playback Volume'
value 124
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -400
}
}
control.83 {
iface MIXER
name 'Matrix 04 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.84 {
iface MIXER
name 'Matrix 04 Mix H Playback Volume'
value 86
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -4200
}
}
control.85 {
iface MIXER
name 'Matrix 05 Input Playback Route'
value 'Analog 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.86 {
iface MIXER
name 'Matrix 05 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.87 {
iface MIXER
name 'Matrix 05 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.88 {
iface MIXER
name 'Matrix 05 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.89 {
iface MIXER
name 'Matrix 05 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.90 {
iface MIXER
name 'Matrix 05 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.91 {
iface MIXER
name 'Matrix 05 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.92 {
iface MIXER
name 'Matrix 05 Mix G Playback Volume'
value 83
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -4500
}
}
control.93 {
iface MIXER
name 'Matrix 05 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.94 {
iface MIXER
name 'Matrix 06 Input Playback Route'
value 'Analog 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.95 {
iface MIXER
name 'Matrix 06 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.96 {
iface MIXER
name 'Matrix 06 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.97 {
iface MIXER
name 'Matrix 06 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.98 {
iface MIXER
name 'Matrix 06 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.99 {
iface MIXER
name 'Matrix 06 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.100 {
iface MIXER
name 'Matrix 06 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.101 {
iface MIXER
name 'Matrix 06 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.102 {
iface MIXER
name 'Matrix 06 Mix H Playback Volume'
value 83
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -4500
}
}
control.103 {
iface MIXER
name 'Matrix 07 Input Playback Route'
value 'Analog 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.104 {
iface MIXER
name 'Matrix 07 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.105 {
iface MIXER
name 'Matrix 07 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.106 {
iface MIXER
name 'Matrix 07 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.107 {
iface MIXER
name 'Matrix 07 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.108 {
iface MIXER
name 'Matrix 07 Mix E Playback Volume'
value 118
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1000
}
}
control.109 {
iface MIXER
name 'Matrix 07 Mix F Playback Volume'
value 109
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1900
}
}
control.110 {
iface MIXER
name 'Matrix 07 Mix G Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -600
}
}
control.111 {
iface MIXER
name 'Matrix 07 Mix H Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -600
}
}
control.112 {
iface MIXER
name 'Matrix 08 Input Playback Route'
value 'Analog 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.113 {
iface MIXER
name 'Matrix 08 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.114 {
iface MIXER
name 'Matrix 08 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.115 {
iface MIXER
name 'Matrix 08 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.116 {
iface MIXER
name 'Matrix 08 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.117 {
iface MIXER
name 'Matrix 08 Mix E Playback Volume'
value 105
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -2300
}
}
control.118 {
iface MIXER
name 'Matrix 08 Mix F Playback Volume'
value 119
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -900
}
}
control.119 {
iface MIXER
name 'Matrix 08 Mix G Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -600
}
}
control.120 {
iface MIXER
name 'Matrix 08 Mix H Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -600
}
}
control.121 {
iface MIXER
name 'Matrix 09 Input Playback Route'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.122 {
iface MIXER
name 'Matrix 09 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.123 {
iface MIXER
name 'Matrix 09 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.124 {
iface MIXER
name 'Matrix 09 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.125 {
iface MIXER
name 'Matrix 09 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.126 {
iface MIXER
name 'Matrix 09 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.127 {
iface MIXER
name 'Matrix 09 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.128 {
iface MIXER
name 'Matrix 09 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.129 {
iface MIXER
name 'Matrix 09 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.130 {
iface MIXER
name 'Matrix 10 Input Playback Route'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.131 {
iface MIXER
name 'Matrix 10 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.132 {
iface MIXER
name 'Matrix 10 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.133 {
iface MIXER
name 'Matrix 10 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.134 {
iface MIXER
name 'Matrix 10 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.135 {
iface MIXER
name 'Matrix 10 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.136 {
iface MIXER
name 'Matrix 10 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.137 {
iface MIXER
name 'Matrix 10 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.138 {
iface MIXER
name 'Matrix 10 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.139 {
iface MIXER
name 'Matrix 11 Input Playback Route'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.140 {
iface MIXER
name 'Matrix 11 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.141 {
iface MIXER
name 'Matrix 11 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.142 {
iface MIXER
name 'Matrix 11 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.143 {
iface MIXER
name 'Matrix 11 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.144 {
iface MIXER
name 'Matrix 11 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.145 {
iface MIXER
name 'Matrix 11 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.146 {
iface MIXER
name 'Matrix 11 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.147 {
iface MIXER
name 'Matrix 11 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.148 {
iface MIXER
name 'Matrix 12 Input Playback Route'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.149 {
iface MIXER
name 'Matrix 12 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.150 {
iface MIXER
name 'Matrix 12 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.151 {
iface MIXER
name 'Matrix 12 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.152 {
iface MIXER
name 'Matrix 12 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.153 {
iface MIXER
name 'Matrix 12 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.154 {
iface MIXER
name 'Matrix 12 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.155 {
iface MIXER
name 'Matrix 12 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.156 {
iface MIXER
name 'Matrix 12 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.157 {
iface MIXER
name 'Matrix 13 Input Playback Route'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.158 {
iface MIXER
name 'Matrix 13 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.159 {
iface MIXER
name 'Matrix 13 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.160 {
iface MIXER
name 'Matrix 13 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.161 {
iface MIXER
name 'Matrix 13 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.162 {
iface MIXER
name 'Matrix 13 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.163 {
iface MIXER
name 'Matrix 13 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.164 {
iface MIXER
name 'Matrix 13 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.165 {
iface MIXER
name 'Matrix 13 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.166 {
iface MIXER
name 'Matrix 14 Input Playback Route'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.167 {
iface MIXER
name 'Matrix 14 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.168 {
iface MIXER
name 'Matrix 14 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.169 {
iface MIXER
name 'Matrix 14 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.170 {
iface MIXER
name 'Matrix 14 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.171 {
iface MIXER
name 'Matrix 14 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.172 {
iface MIXER
name 'Matrix 14 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.173 {
iface MIXER
name 'Matrix 14 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.174 {
iface MIXER
name 'Matrix 14 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.175 {
iface MIXER
name 'Matrix 15 Input Playback Route'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.176 {
iface MIXER
name 'Matrix 15 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.177 {
iface MIXER
name 'Matrix 15 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.178 {
iface MIXER
name 'Matrix 15 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.179 {
iface MIXER
name 'Matrix 15 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.180 {
iface MIXER
name 'Matrix 15 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.181 {
iface MIXER
name 'Matrix 15 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.182 {
iface MIXER
name 'Matrix 15 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.183 {
iface MIXER
name 'Matrix 15 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.184 {
iface MIXER
name 'Matrix 16 Input Playback Route'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.185 {
iface MIXER
name 'Matrix 16 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.186 {
iface MIXER
name 'Matrix 16 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.187 {
iface MIXER
name 'Matrix 16 Mix C Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.188 {
iface MIXER
name 'Matrix 16 Mix D Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.189 {
iface MIXER
name 'Matrix 16 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.190 {
iface MIXER
name 'Matrix 16 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.191 {
iface MIXER
name 'Matrix 16 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.192 {
iface MIXER
name 'Matrix 16 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.193 {
iface MIXER
name 'Matrix 17 Input Playback Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.194 {
iface MIXER
name 'Matrix 17 Mix A Playback Volume'
value 113
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1500
}
}
control.195 {
iface MIXER
name 'Matrix 17 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.196 {
iface MIXER
name 'Matrix 17 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.197 {
iface MIXER
name 'Matrix 17 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.198 {
iface MIXER
name 'Matrix 17 Mix E Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.199 {
iface MIXER
name 'Matrix 17 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.200 {
iface MIXER
name 'Matrix 17 Mix G Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.201 {
iface MIXER
name 'Matrix 17 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.202 {
iface MIXER
name 'Matrix 18 Input Playback Route'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
}
}
control.203 {
iface MIXER
name 'Matrix 18 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.204 {
iface MIXER
name 'Matrix 18 Mix B Playback Volume'
value 113
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1500
}
}
control.205 {
iface MIXER
name 'Matrix 18 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.206 {
iface MIXER
name 'Matrix 18 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.207 {
iface MIXER
name 'Matrix 18 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.208 {
iface MIXER
name 'Matrix 18 Mix F Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.209 {
iface MIXER
name 'Matrix 18 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.210 {
iface MIXER
name 'Matrix 18 Mix H Playback Volume'
value 1
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12700
}
}
control.211 {
iface MIXER
name 'Input Source 01 Capture Route'
value 'Analog 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.212 {
iface MIXER
name 'Input Source 02 Capture Route'
value 'Analog 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.213 {
iface MIXER
name 'Input Source 03 Capture Route'
value 'Analog 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.214 {
iface MIXER
name 'Input Source 04 Capture Route'
value 'Analog 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.215 {
iface MIXER
name 'Input Source 05 Capture Route'
value 'Analog 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.216 {
iface MIXER
name 'Input Source 06 Capture Route'
value 'Analog 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.217 {
iface MIXER
name 'Input Source 07 Capture Route'
value 'Analog 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.218 {
iface MIXER
name 'Input Source 08 Capture Route'
value 'Analog 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.219 {
iface MIXER
name 'Input Source 09 Capture Route'
value 'SPDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.220 {
iface MIXER
name 'Input Source 10 Capture Route'
value 'SPDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.221 {
iface MIXER
name 'Input Source 11 Capture Route'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.222 {
iface MIXER
name 'Input Source 12 Capture Route'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.223 {
iface MIXER
name 'Input Source 13 Capture Route'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.224 {
iface MIXER
name 'Input Source 14 Capture Route'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.225 {
iface MIXER
name 'Input Source 15 Capture Route'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.226 {
iface MIXER
name 'Input Source 16 Capture Route'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.227 {
iface MIXER
name 'Input Source 17 Capture Route'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.228 {
iface MIXER
name 'Input Source 18 Capture Route'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'PCM 13'
item.14 'PCM 14'
item.15 'PCM 15'
item.16 'PCM 16'
item.17 'PCM 17'
item.18 'PCM 18'
item.19 'PCM 19'
item.20 'PCM 20'
item.21 'Analog 1'
item.22 'Analog 2'
item.23 'Analog 3'
item.24 'Analog 4'
item.25 'Analog 5'
item.26 'Analog 6'
item.27 'Analog 7'
item.28 'Analog 8'
item.29 'SPDIF 1'
item.30 'SPDIF 2'
item.31 'ADAT 1'
item.32 'ADAT 2'
item.33 'ADAT 3'
item.34 'ADAT 4'
item.35 'ADAT 5'
item.36 'ADAT 6'
item.37 'ADAT 7'
item.38 'ADAT 8'
item.39 'Mix A'
item.40 'Mix B'
item.41 'Mix C'
item.42 'Mix D'
item.43 'Mix E'
item.44 'Mix F'
item.45 'Mix G'
item.46 'Mix H'
}
}
control.229 {
iface MIXER
name 'Sample Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 SPDIF
item.2 ADAT
}
}
control.230 {
iface MIXER
name 'Sample Clock Sync Status'
value Locked
comment {
access 'read volatile'
type ENUMERATED
count 1
item.0 'No Lock'
item.1 Locked
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 1 18i6.state 0000664 0000000 0000000 00000161261 15212330051 0023047 0 ustar 00root root 0000000 0000000 state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 3
value.1 4
value.2 7
value.3 8
value.4 5
value.5 6
comment {
access 'read volatile'
type INTEGER
count 6
range '0 - 36'
}
}
control.2 {
iface MIXER
name 'Extension Unit Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'S/PDIF Validity'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface CARD
name 'ADAT Validity'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'Scarlett 18i6 USB-Sync Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.7 {
iface MIXER
name 'Extension Unit Switch'
index 1
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Master Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Master Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.10 {
iface MIXER
name 'Master 1 (Monitor) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.11 {
iface MIXER
name 'Master 1 (Monitor) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.12 {
iface MIXER
name 'Master 1L (Monitor) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.13 {
iface MIXER
name 'Master 1R (Monitor) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.14 {
iface MIXER
name 'Master 2 (Headphone) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.15 {
iface MIXER
name 'Master 2 (Headphone) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.16 {
iface MIXER
name 'Master 2L (Headphone) Source Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.17 {
iface MIXER
name 'Master 2R (Headphone) Source Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.18 {
iface MIXER
name 'Master 3 (SPDIF) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.19 {
iface MIXER
name 'Master 3 (SPDIF) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.20 {
iface MIXER
name 'Master 3L (SPDIF) Source Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.21 {
iface MIXER
name 'Master 3R (SPDIF) Source Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.22 {
iface MIXER
name 'Input 1 Impedance Switch'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Hi-Z
}
}
control.23 {
iface MIXER
name 'Input 2 Impedance Switch'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Hi-Z
}
}
control.24 {
iface MIXER
name 'Matrix 01 Input Playback Route'
value 'Analog 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.25 {
iface MIXER
name 'Matrix 01 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.26 {
iface MIXER
name 'Matrix 01 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.27 {
iface MIXER
name 'Matrix 01 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.28 {
iface MIXER
name 'Matrix 01 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.29 {
iface MIXER
name 'Matrix 01 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.30 {
iface MIXER
name 'Matrix 01 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.31 {
iface MIXER
name 'Matrix 02 Input Playback Route'
value 'Analog 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.32 {
iface MIXER
name 'Matrix 02 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.33 {
iface MIXER
name 'Matrix 02 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.34 {
iface MIXER
name 'Matrix 02 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.35 {
iface MIXER
name 'Matrix 02 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.36 {
iface MIXER
name 'Matrix 02 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.37 {
iface MIXER
name 'Matrix 02 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.38 {
iface MIXER
name 'Matrix 03 Input Playback Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.39 {
iface MIXER
name 'Matrix 03 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.40 {
iface MIXER
name 'Matrix 03 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.41 {
iface MIXER
name 'Matrix 03 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.42 {
iface MIXER
name 'Matrix 03 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.43 {
iface MIXER
name 'Matrix 03 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.44 {
iface MIXER
name 'Matrix 03 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.45 {
iface MIXER
name 'Matrix 04 Input Playback Route'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.46 {
iface MIXER
name 'Matrix 04 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.47 {
iface MIXER
name 'Matrix 04 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.48 {
iface MIXER
name 'Matrix 04 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.49 {
iface MIXER
name 'Matrix 04 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.50 {
iface MIXER
name 'Matrix 04 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.51 {
iface MIXER
name 'Matrix 04 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.52 {
iface MIXER
name 'Matrix 05 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.53 {
iface MIXER
name 'Matrix 05 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.54 {
iface MIXER
name 'Matrix 05 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.55 {
iface MIXER
name 'Matrix 05 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.56 {
iface MIXER
name 'Matrix 05 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.57 {
iface MIXER
name 'Matrix 05 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.58 {
iface MIXER
name 'Matrix 05 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.59 {
iface MIXER
name 'Matrix 06 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.60 {
iface MIXER
name 'Matrix 06 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.61 {
iface MIXER
name 'Matrix 06 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.62 {
iface MIXER
name 'Matrix 06 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.63 {
iface MIXER
name 'Matrix 06 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.64 {
iface MIXER
name 'Matrix 06 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.65 {
iface MIXER
name 'Matrix 06 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.66 {
iface MIXER
name 'Matrix 07 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.67 {
iface MIXER
name 'Matrix 07 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.68 {
iface MIXER
name 'Matrix 07 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.69 {
iface MIXER
name 'Matrix 07 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.70 {
iface MIXER
name 'Matrix 07 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.71 {
iface MIXER
name 'Matrix 07 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.72 {
iface MIXER
name 'Matrix 07 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.73 {
iface MIXER
name 'Matrix 08 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.74 {
iface MIXER
name 'Matrix 08 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.75 {
iface MIXER
name 'Matrix 08 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.76 {
iface MIXER
name 'Matrix 08 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.77 {
iface MIXER
name 'Matrix 08 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.78 {
iface MIXER
name 'Matrix 08 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.79 {
iface MIXER
name 'Matrix 08 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.80 {
iface MIXER
name 'Matrix 09 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.81 {
iface MIXER
name 'Matrix 09 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.82 {
iface MIXER
name 'Matrix 09 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.83 {
iface MIXER
name 'Matrix 09 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.84 {
iface MIXER
name 'Matrix 09 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.85 {
iface MIXER
name 'Matrix 09 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.86 {
iface MIXER
name 'Matrix 09 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.87 {
iface MIXER
name 'Matrix 10 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.88 {
iface MIXER
name 'Matrix 10 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.89 {
iface MIXER
name 'Matrix 10 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.90 {
iface MIXER
name 'Matrix 10 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.91 {
iface MIXER
name 'Matrix 10 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.92 {
iface MIXER
name 'Matrix 10 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.93 {
iface MIXER
name 'Matrix 10 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.94 {
iface MIXER
name 'Matrix 11 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.95 {
iface MIXER
name 'Matrix 11 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.96 {
iface MIXER
name 'Matrix 11 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.97 {
iface MIXER
name 'Matrix 11 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.98 {
iface MIXER
name 'Matrix 11 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.99 {
iface MIXER
name 'Matrix 11 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.100 {
iface MIXER
name 'Matrix 11 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.101 {
iface MIXER
name 'Matrix 12 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.102 {
iface MIXER
name 'Matrix 12 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.103 {
iface MIXER
name 'Matrix 12 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.104 {
iface MIXER
name 'Matrix 12 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.105 {
iface MIXER
name 'Matrix 12 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.106 {
iface MIXER
name 'Matrix 12 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.107 {
iface MIXER
name 'Matrix 12 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.108 {
iface MIXER
name 'Matrix 13 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.109 {
iface MIXER
name 'Matrix 13 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.110 {
iface MIXER
name 'Matrix 13 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.111 {
iface MIXER
name 'Matrix 13 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.112 {
iface MIXER
name 'Matrix 13 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.113 {
iface MIXER
name 'Matrix 13 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.114 {
iface MIXER
name 'Matrix 13 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.115 {
iface MIXER
name 'Matrix 14 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.116 {
iface MIXER
name 'Matrix 14 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.117 {
iface MIXER
name 'Matrix 14 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.118 {
iface MIXER
name 'Matrix 14 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.119 {
iface MIXER
name 'Matrix 14 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.120 {
iface MIXER
name 'Matrix 14 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.121 {
iface MIXER
name 'Matrix 14 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.122 {
iface MIXER
name 'Matrix 15 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.123 {
iface MIXER
name 'Matrix 15 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.124 {
iface MIXER
name 'Matrix 15 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.125 {
iface MIXER
name 'Matrix 15 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.126 {
iface MIXER
name 'Matrix 15 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.127 {
iface MIXER
name 'Matrix 15 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.128 {
iface MIXER
name 'Matrix 15 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.129 {
iface MIXER
name 'Matrix 16 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.130 {
iface MIXER
name 'Matrix 16 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.131 {
iface MIXER
name 'Matrix 16 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.132 {
iface MIXER
name 'Matrix 16 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.133 {
iface MIXER
name 'Matrix 16 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.134 {
iface MIXER
name 'Matrix 16 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.135 {
iface MIXER
name 'Matrix 16 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.136 {
iface MIXER
name 'Matrix 17 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.137 {
iface MIXER
name 'Matrix 17 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.138 {
iface MIXER
name 'Matrix 17 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.139 {
iface MIXER
name 'Matrix 17 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.140 {
iface MIXER
name 'Matrix 17 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.141 {
iface MIXER
name 'Matrix 17 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.142 {
iface MIXER
name 'Matrix 17 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.143 {
iface MIXER
name 'Matrix 18 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
}
}
control.144 {
iface MIXER
name 'Matrix 18 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.145 {
iface MIXER
name 'Matrix 18 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.146 {
iface MIXER
name 'Matrix 18 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.147 {
iface MIXER
name 'Matrix 18 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.148 {
iface MIXER
name 'Matrix 18 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.149 {
iface MIXER
name 'Matrix 18 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.150 {
iface MIXER
name 'Input Source 01 Capture Route'
value 'Analog 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.151 {
iface MIXER
name 'Input Source 02 Capture Route'
value 'Analog 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.152 {
iface MIXER
name 'Input Source 03 Capture Route'
value 'Analog 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.153 {
iface MIXER
name 'Input Source 04 Capture Route'
value 'Analog 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.154 {
iface MIXER
name 'Input Source 05 Capture Route'
value 'Analog 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.155 {
iface MIXER
name 'Input Source 06 Capture Route'
value 'Analog 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.156 {
iface MIXER
name 'Input Source 07 Capture Route'
value 'Analog 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.157 {
iface MIXER
name 'Input Source 08 Capture Route'
value 'Analog 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.158 {
iface MIXER
name 'Input Source 09 Capture Route'
value 'SPDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.159 {
iface MIXER
name 'Input Source 10 Capture Route'
value 'SPDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.160 {
iface MIXER
name 'Input Source 11 Capture Route'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.161 {
iface MIXER
name 'Input Source 12 Capture Route'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.162 {
iface MIXER
name 'Input Source 13 Capture Route'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.163 {
iface MIXER
name 'Input Source 14 Capture Route'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.164 {
iface MIXER
name 'Input Source 15 Capture Route'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.165 {
iface MIXER
name 'Input Source 16 Capture Route'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.166 {
iface MIXER
name 'Input Source 17 Capture Route'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.167 {
iface MIXER
name 'Input Source 18 Capture Route'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'Analog 1'
item.8 'Analog 2'
item.9 'Analog 3'
item.10 'Analog 4'
item.11 'Analog 5'
item.12 'Analog 6'
item.13 'Analog 7'
item.14 'Analog 8'
item.15 'SPDIF 1'
item.16 'SPDIF 2'
item.17 'ADAT 1'
item.18 'ADAT 2'
item.19 'ADAT 3'
item.20 'ADAT 4'
item.21 'ADAT 5'
item.22 'ADAT 6'
item.23 'ADAT 7'
item.24 'ADAT 8'
item.25 'Mix A'
item.26 'Mix B'
item.27 'Mix C'
item.28 'Mix D'
item.29 'Mix E'
item.30 'Mix F'
}
}
control.168 {
iface MIXER
name 'Sample Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 SPDIF
item.2 ADAT
}
}
control.169 {
iface MIXER
name 'Sample Clock Sync Status'
value Locked
comment {
access 'read volatile'
type ENUMERATED
count 1
item.0 'No Lock'
item.1 Locked
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 1 18i8.state 0000664 0000000 0000000 00000213023 15212330051 0023043 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
comment {
access read
type INTEGER
count 8
range '0 - 36'
}
}
control.2 {
iface MIXER
name 'Extension Unit Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'S/PDIF Validity'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface CARD
name 'ADAT Validity'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'Scarlett 18i8 USB-Sync Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.7 {
iface MIXER
name 'Extension Unit Switch'
index 1
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Master Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Master Playback Volume'
value 115
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -1300
}
}
control.10 {
iface MIXER
name 'Master 1 (Monitor) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.11 {
iface MIXER
name 'Master 1 (Monitor) Playback Volume'
value.0 126
value.1 126
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -200
dbvalue.1 -200
}
}
control.12 {
iface MIXER
name 'Master 1L (Monitor) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.13 {
iface MIXER
name 'Master 1R (Monitor) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.14 {
iface MIXER
name 'Master 2 (Headphone 1) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.15 {
iface MIXER
name 'Master 2 (Headphone 1) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.16 {
iface MIXER
name 'Master 2L (Headphone 1) Source Playback Enu'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.17 {
iface MIXER
name 'Master 2R (Headphone 1) Source Playback Enu'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.18 {
iface MIXER
name 'Master 3 (Headphone 2) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.19 {
iface MIXER
name 'Master 3 (Headphone 2) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.20 {
iface MIXER
name 'Master 3L (Headphone 2) Source Playback Enu'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.21 {
iface MIXER
name 'Master 3R (Headphone 2) Source Playback Enu'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.22 {
iface MIXER
name 'Master 4 (SPDIF) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.23 {
iface MIXER
name 'Master 4 (SPDIF) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.24 {
iface MIXER
name 'Master 4L (SPDIF) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.25 {
iface MIXER
name 'Master 4R (SPDIF) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.26 {
iface MIXER
name 'Input 1 Impedance Switch'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Hi-Z
}
}
control.27 {
iface MIXER
name 'Input 1 Pad Switch'
value '0dB'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '0dB'
item.1 '-10dB'
}
}
control.28 {
iface MIXER
name 'Input 2 Impedance Switch'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Hi-Z
}
}
control.29 {
iface MIXER
name 'Input 2 Pad Switch'
value '0dB'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '0dB'
item.1 '-10dB'
}
}
control.30 {
iface MIXER
name 'Input 3 Pad Switch'
value '0dB'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '0dB'
item.1 '-10dB'
}
}
control.31 {
iface MIXER
name 'Input 4 Pad Switch'
value '0dB'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '0dB'
item.1 '-10dB'
}
}
control.32 {
iface MIXER
name 'Matrix 01 Input Playback Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.33 {
iface MIXER
name 'Matrix 01 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.34 {
iface MIXER
name 'Matrix 01 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.35 {
iface MIXER
name 'Matrix 01 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.36 {
iface MIXER
name 'Matrix 01 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.37 {
iface MIXER
name 'Matrix 01 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.38 {
iface MIXER
name 'Matrix 01 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.39 {
iface MIXER
name 'Matrix 01 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.40 {
iface MIXER
name 'Matrix 01 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.41 {
iface MIXER
name 'Matrix 02 Input Playback Route'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.42 {
iface MIXER
name 'Matrix 02 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.43 {
iface MIXER
name 'Matrix 02 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.44 {
iface MIXER
name 'Matrix 02 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.45 {
iface MIXER
name 'Matrix 02 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.46 {
iface MIXER
name 'Matrix 02 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.47 {
iface MIXER
name 'Matrix 02 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.48 {
iface MIXER
name 'Matrix 02 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.49 {
iface MIXER
name 'Matrix 02 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.50 {
iface MIXER
name 'Matrix 03 Input Playback Route'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.51 {
iface MIXER
name 'Matrix 03 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.52 {
iface MIXER
name 'Matrix 03 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.53 {
iface MIXER
name 'Matrix 03 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.54 {
iface MIXER
name 'Matrix 03 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.55 {
iface MIXER
name 'Matrix 03 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.56 {
iface MIXER
name 'Matrix 03 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.57 {
iface MIXER
name 'Matrix 03 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.58 {
iface MIXER
name 'Matrix 03 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.59 {
iface MIXER
name 'Matrix 04 Input Playback Route'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.60 {
iface MIXER
name 'Matrix 04 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.61 {
iface MIXER
name 'Matrix 04 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.62 {
iface MIXER
name 'Matrix 04 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.63 {
iface MIXER
name 'Matrix 04 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.64 {
iface MIXER
name 'Matrix 04 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.65 {
iface MIXER
name 'Matrix 04 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.66 {
iface MIXER
name 'Matrix 04 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.67 {
iface MIXER
name 'Matrix 04 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.68 {
iface MIXER
name 'Matrix 05 Input Playback Route'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.69 {
iface MIXER
name 'Matrix 05 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.70 {
iface MIXER
name 'Matrix 05 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.71 {
iface MIXER
name 'Matrix 05 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.72 {
iface MIXER
name 'Matrix 05 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.73 {
iface MIXER
name 'Matrix 05 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.74 {
iface MIXER
name 'Matrix 05 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.75 {
iface MIXER
name 'Matrix 05 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.76 {
iface MIXER
name 'Matrix 05 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.77 {
iface MIXER
name 'Matrix 06 Input Playback Route'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.78 {
iface MIXER
name 'Matrix 06 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.79 {
iface MIXER
name 'Matrix 06 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.80 {
iface MIXER
name 'Matrix 06 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.81 {
iface MIXER
name 'Matrix 06 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.82 {
iface MIXER
name 'Matrix 06 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.83 {
iface MIXER
name 'Matrix 06 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.84 {
iface MIXER
name 'Matrix 06 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.85 {
iface MIXER
name 'Matrix 06 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.86 {
iface MIXER
name 'Matrix 07 Input Playback Route'
value 'PCM 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.87 {
iface MIXER
name 'Matrix 07 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.88 {
iface MIXER
name 'Matrix 07 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.89 {
iface MIXER
name 'Matrix 07 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.90 {
iface MIXER
name 'Matrix 07 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.91 {
iface MIXER
name 'Matrix 07 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.92 {
iface MIXER
name 'Matrix 07 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.93 {
iface MIXER
name 'Matrix 07 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.94 {
iface MIXER
name 'Matrix 07 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.95 {
iface MIXER
name 'Matrix 08 Input Playback Route'
value 'PCM 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.96 {
iface MIXER
name 'Matrix 08 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.97 {
iface MIXER
name 'Matrix 08 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.98 {
iface MIXER
name 'Matrix 08 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.99 {
iface MIXER
name 'Matrix 08 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.100 {
iface MIXER
name 'Matrix 08 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.101 {
iface MIXER
name 'Matrix 08 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.102 {
iface MIXER
name 'Matrix 08 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.103 {
iface MIXER
name 'Matrix 08 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.104 {
iface MIXER
name 'Matrix 09 Input Playback Route'
value 'Analog 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.105 {
iface MIXER
name 'Matrix 09 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.106 {
iface MIXER
name 'Matrix 09 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.107 {
iface MIXER
name 'Matrix 09 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.108 {
iface MIXER
name 'Matrix 09 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.109 {
iface MIXER
name 'Matrix 09 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.110 {
iface MIXER
name 'Matrix 09 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.111 {
iface MIXER
name 'Matrix 09 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.112 {
iface MIXER
name 'Matrix 09 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.113 {
iface MIXER
name 'Matrix 10 Input Playback Route'
value 'Analog 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.114 {
iface MIXER
name 'Matrix 10 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.115 {
iface MIXER
name 'Matrix 10 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.116 {
iface MIXER
name 'Matrix 10 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.117 {
iface MIXER
name 'Matrix 10 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.118 {
iface MIXER
name 'Matrix 10 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.119 {
iface MIXER
name 'Matrix 10 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.120 {
iface MIXER
name 'Matrix 10 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.121 {
iface MIXER
name 'Matrix 10 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.122 {
iface MIXER
name 'Matrix 11 Input Playback Route'
value 'Analog 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.123 {
iface MIXER
name 'Matrix 11 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.124 {
iface MIXER
name 'Matrix 11 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.125 {
iface MIXER
name 'Matrix 11 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.126 {
iface MIXER
name 'Matrix 11 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.127 {
iface MIXER
name 'Matrix 11 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.128 {
iface MIXER
name 'Matrix 11 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.129 {
iface MIXER
name 'Matrix 11 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.130 {
iface MIXER
name 'Matrix 11 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.131 {
iface MIXER
name 'Matrix 12 Input Playback Route'
value 'Analog 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.132 {
iface MIXER
name 'Matrix 12 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.133 {
iface MIXER
name 'Matrix 12 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.134 {
iface MIXER
name 'Matrix 12 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.135 {
iface MIXER
name 'Matrix 12 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.136 {
iface MIXER
name 'Matrix 12 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.137 {
iface MIXER
name 'Matrix 12 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.138 {
iface MIXER
name 'Matrix 12 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.139 {
iface MIXER
name 'Matrix 12 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.140 {
iface MIXER
name 'Matrix 13 Input Playback Route'
value 'Analog 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.141 {
iface MIXER
name 'Matrix 13 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.142 {
iface MIXER
name 'Matrix 13 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.143 {
iface MIXER
name 'Matrix 13 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.144 {
iface MIXER
name 'Matrix 13 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.145 {
iface MIXER
name 'Matrix 13 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.146 {
iface MIXER
name 'Matrix 13 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.147 {
iface MIXER
name 'Matrix 13 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.148 {
iface MIXER
name 'Matrix 13 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.149 {
iface MIXER
name 'Matrix 14 Input Playback Route'
value 'Analog 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.150 {
iface MIXER
name 'Matrix 14 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.151 {
iface MIXER
name 'Matrix 14 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.152 {
iface MIXER
name 'Matrix 14 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.153 {
iface MIXER
name 'Matrix 14 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.154 {
iface MIXER
name 'Matrix 14 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.155 {
iface MIXER
name 'Matrix 14 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.156 {
iface MIXER
name 'Matrix 14 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.157 {
iface MIXER
name 'Matrix 14 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.158 {
iface MIXER
name 'Matrix 15 Input Playback Route'
value 'Analog 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.159 {
iface MIXER
name 'Matrix 15 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.160 {
iface MIXER
name 'Matrix 15 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.161 {
iface MIXER
name 'Matrix 15 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.162 {
iface MIXER
name 'Matrix 15 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.163 {
iface MIXER
name 'Matrix 15 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.164 {
iface MIXER
name 'Matrix 15 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.165 {
iface MIXER
name 'Matrix 15 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.166 {
iface MIXER
name 'Matrix 15 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.167 {
iface MIXER
name 'Matrix 16 Input Playback Route'
value 'Analog 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.168 {
iface MIXER
name 'Matrix 16 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.169 {
iface MIXER
name 'Matrix 16 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.170 {
iface MIXER
name 'Matrix 16 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.171 {
iface MIXER
name 'Matrix 16 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.172 {
iface MIXER
name 'Matrix 16 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.173 {
iface MIXER
name 'Matrix 16 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.174 {
iface MIXER
name 'Matrix 16 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.175 {
iface MIXER
name 'Matrix 16 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.176 {
iface MIXER
name 'Matrix 17 Input Playback Route'
value 'SPDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.177 {
iface MIXER
name 'Matrix 17 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.178 {
iface MIXER
name 'Matrix 17 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.179 {
iface MIXER
name 'Matrix 17 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.180 {
iface MIXER
name 'Matrix 17 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.181 {
iface MIXER
name 'Matrix 17 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.182 {
iface MIXER
name 'Matrix 17 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.183 {
iface MIXER
name 'Matrix 17 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.184 {
iface MIXER
name 'Matrix 17 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.185 {
iface MIXER
name 'Matrix 18 Input Playback Route'
value 'SPDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
}
}
control.186 {
iface MIXER
name 'Matrix 18 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.187 {
iface MIXER
name 'Matrix 18 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.188 {
iface MIXER
name 'Matrix 18 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.189 {
iface MIXER
name 'Matrix 18 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.190 {
iface MIXER
name 'Matrix 18 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.191 {
iface MIXER
name 'Matrix 18 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.192 {
iface MIXER
name 'Matrix 18 Mix G Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.193 {
iface MIXER
name 'Matrix 18 Mix H Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.194 {
iface MIXER
name 'Input Source 01 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.195 {
iface MIXER
name 'Input Source 02 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.196 {
iface MIXER
name 'Input Source 03 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.197 {
iface MIXER
name 'Input Source 04 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.198 {
iface MIXER
name 'Input Source 05 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.199 {
iface MIXER
name 'Input Source 06 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.200 {
iface MIXER
name 'Input Source 07 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.201 {
iface MIXER
name 'Input Source 08 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.202 {
iface MIXER
name 'Input Source 09 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.203 {
iface MIXER
name 'Input Source 10 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.204 {
iface MIXER
name 'Input Source 11 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.205 {
iface MIXER
name 'Input Source 12 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.206 {
iface MIXER
name 'Input Source 13 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.207 {
iface MIXER
name 'Input Source 14 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.208 {
iface MIXER
name 'Input Source 15 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.209 {
iface MIXER
name 'Input Source 16 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.210 {
iface MIXER
name 'Input Source 17 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.211 {
iface MIXER
name 'Input Source 18 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'Analog 1'
item.10 'Analog 2'
item.11 'Analog 3'
item.12 'Analog 4'
item.13 'Analog 5'
item.14 'Analog 6'
item.15 'Analog 7'
item.16 'Analog 8'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'ADAT 1'
item.20 'ADAT 2'
item.21 'ADAT 3'
item.22 'ADAT 4'
item.23 'ADAT 5'
item.24 'ADAT 6'
item.25 'ADAT 7'
item.26 'ADAT 8'
item.27 'Mix A'
item.28 'Mix B'
item.29 'Mix C'
item.30 'Mix D'
item.31 'Mix E'
item.32 'Mix F'
item.33 'Mix G'
item.34 'Mix H'
}
}
control.212 {
iface MIXER
name 'Sample Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 SPDIF
item.2 ADAT
}
}
control.213 {
iface MIXER
name 'Sample Clock Sync Status'
value Locked
comment {
access 'read volatile'
type ENUMERATED
count 1
item.0 'No Lock'
item.1 Locked
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 1 6i6.state 0000664 0000000 0000000 00000152035 15212330051 0022763 0 ustar 00root root 0000000 0000000 state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
comment {
access 'read volatile'
type INTEGER
count 12
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access 'read volatile'
type INTEGER
count 6
range '0 - 36'
}
}
control.3 {
iface MIXER
name 'Extension Unit Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'Scarlett 6i6 USB-Sync Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
}
}
control.7 {
iface MIXER
name 'Extension Unit Switch'
index 1
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Master Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Master Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.10 {
iface MIXER
name 'Master 1 (Monitor) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.11 {
iface MIXER
name 'Master 1 (Monitor) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.12 {
iface MIXER
name 'Master 1L (Monitor) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.13 {
iface MIXER
name 'Master 1R (Monitor) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.14 {
iface MIXER
name 'Master 2 (Headphone) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.15 {
iface MIXER
name 'Master 2 (Headphone) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.16 {
iface MIXER
name 'Master 2L (Headphone) Source Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.17 {
iface MIXER
name 'Master 2R (Headphone) Source Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.18 {
iface MIXER
name 'Master 3 (SPDIF) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.19 {
iface MIXER
name 'Master 3 (SPDIF) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.20 {
iface MIXER
name 'Master 3L (SPDIF) Source Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.21 {
iface MIXER
name 'Master 3R (SPDIF) Source Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.22 {
iface MIXER
name 'Input 1 Impedance Switch'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Hi-Z
}
}
control.23 {
iface MIXER
name 'Input 1 Pad Switch'
value '0dB'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '0dB'
item.1 '-10dB'
}
}
control.24 {
iface MIXER
name 'Input 2 Impedance Switch'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Hi-Z
}
}
control.25 {
iface MIXER
name 'Input 2 Pad Switch'
value '0dB'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '0dB'
item.1 '-10dB'
}
}
control.26 {
iface MIXER
name 'Input 3 Gain Switch'
value Lo
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Lo
item.1 Hi
}
}
control.27 {
iface MIXER
name 'Input 4 Gain Switch'
value Lo
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Lo
item.1 Hi
}
}
control.28 {
iface MIXER
name 'Matrix 01 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.29 {
iface MIXER
name 'Matrix 01 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.30 {
iface MIXER
name 'Matrix 01 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.31 {
iface MIXER
name 'Matrix 01 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.32 {
iface MIXER
name 'Matrix 01 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.33 {
iface MIXER
name 'Matrix 01 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.34 {
iface MIXER
name 'Matrix 01 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.35 {
iface MIXER
name 'Matrix 01 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.36 {
iface MIXER
name 'Matrix 01 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.37 {
iface MIXER
name 'Matrix 02 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.38 {
iface MIXER
name 'Matrix 02 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.39 {
iface MIXER
name 'Matrix 02 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.40 {
iface MIXER
name 'Matrix 02 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.41 {
iface MIXER
name 'Matrix 02 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.42 {
iface MIXER
name 'Matrix 02 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.43 {
iface MIXER
name 'Matrix 02 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.44 {
iface MIXER
name 'Matrix 02 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.45 {
iface MIXER
name 'Matrix 02 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.46 {
iface MIXER
name 'Matrix 03 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.47 {
iface MIXER
name 'Matrix 03 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.48 {
iface MIXER
name 'Matrix 03 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.49 {
iface MIXER
name 'Matrix 03 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.50 {
iface MIXER
name 'Matrix 03 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.51 {
iface MIXER
name 'Matrix 03 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.52 {
iface MIXER
name 'Matrix 03 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.53 {
iface MIXER
name 'Matrix 03 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.54 {
iface MIXER
name 'Matrix 03 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.55 {
iface MIXER
name 'Matrix 04 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.56 {
iface MIXER
name 'Matrix 04 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.57 {
iface MIXER
name 'Matrix 04 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.58 {
iface MIXER
name 'Matrix 04 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.59 {
iface MIXER
name 'Matrix 04 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.60 {
iface MIXER
name 'Matrix 04 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.61 {
iface MIXER
name 'Matrix 04 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.62 {
iface MIXER
name 'Matrix 04 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.63 {
iface MIXER
name 'Matrix 04 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.64 {
iface MIXER
name 'Matrix 05 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.65 {
iface MIXER
name 'Matrix 05 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.66 {
iface MIXER
name 'Matrix 05 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.67 {
iface MIXER
name 'Matrix 05 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.68 {
iface MIXER
name 'Matrix 05 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.69 {
iface MIXER
name 'Matrix 05 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.70 {
iface MIXER
name 'Matrix 05 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.71 {
iface MIXER
name 'Matrix 05 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.72 {
iface MIXER
name 'Matrix 05 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.73 {
iface MIXER
name 'Matrix 06 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.74 {
iface MIXER
name 'Matrix 06 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.75 {
iface MIXER
name 'Matrix 06 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.76 {
iface MIXER
name 'Matrix 06 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.77 {
iface MIXER
name 'Matrix 06 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.78 {
iface MIXER
name 'Matrix 06 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.79 {
iface MIXER
name 'Matrix 06 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.80 {
iface MIXER
name 'Matrix 06 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.81 {
iface MIXER
name 'Matrix 06 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.82 {
iface MIXER
name 'Matrix 07 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.83 {
iface MIXER
name 'Matrix 07 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.84 {
iface MIXER
name 'Matrix 07 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.85 {
iface MIXER
name 'Matrix 07 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.86 {
iface MIXER
name 'Matrix 07 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.87 {
iface MIXER
name 'Matrix 07 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.88 {
iface MIXER
name 'Matrix 07 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.89 {
iface MIXER
name 'Matrix 07 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.90 {
iface MIXER
name 'Matrix 07 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.91 {
iface MIXER
name 'Matrix 08 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.92 {
iface MIXER
name 'Matrix 08 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.93 {
iface MIXER
name 'Matrix 08 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.94 {
iface MIXER
name 'Matrix 08 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.95 {
iface MIXER
name 'Matrix 08 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.96 {
iface MIXER
name 'Matrix 08 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.97 {
iface MIXER
name 'Matrix 08 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.98 {
iface MIXER
name 'Matrix 08 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.99 {
iface MIXER
name 'Matrix 08 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.100 {
iface MIXER
name 'Matrix 09 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.101 {
iface MIXER
name 'Matrix 09 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.102 {
iface MIXER
name 'Matrix 09 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.103 {
iface MIXER
name 'Matrix 09 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.104 {
iface MIXER
name 'Matrix 09 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.105 {
iface MIXER
name 'Matrix 09 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.106 {
iface MIXER
name 'Matrix 09 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.107 {
iface MIXER
name 'Matrix 09 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.108 {
iface MIXER
name 'Matrix 09 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.109 {
iface MIXER
name 'Matrix 10 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.110 {
iface MIXER
name 'Matrix 10 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.111 {
iface MIXER
name 'Matrix 10 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.112 {
iface MIXER
name 'Matrix 10 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.113 {
iface MIXER
name 'Matrix 10 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.114 {
iface MIXER
name 'Matrix 10 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.115 {
iface MIXER
name 'Matrix 10 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.116 {
iface MIXER
name 'Matrix 10 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.117 {
iface MIXER
name 'Matrix 10 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.118 {
iface MIXER
name 'Matrix 11 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.119 {
iface MIXER
name 'Matrix 11 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.120 {
iface MIXER
name 'Matrix 11 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.121 {
iface MIXER
name 'Matrix 11 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.122 {
iface MIXER
name 'Matrix 11 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.123 {
iface MIXER
name 'Matrix 11 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.124 {
iface MIXER
name 'Matrix 11 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.125 {
iface MIXER
name 'Matrix 11 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.126 {
iface MIXER
name 'Matrix 11 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.127 {
iface MIXER
name 'Matrix 12 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.128 {
iface MIXER
name 'Matrix 12 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.129 {
iface MIXER
name 'Matrix 12 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.130 {
iface MIXER
name 'Matrix 12 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.131 {
iface MIXER
name 'Matrix 12 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.132 {
iface MIXER
name 'Matrix 12 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.133 {
iface MIXER
name 'Matrix 12 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.134 {
iface MIXER
name 'Matrix 12 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.135 {
iface MIXER
name 'Matrix 12 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.136 {
iface MIXER
name 'Matrix 13 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.137 {
iface MIXER
name 'Matrix 13 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.138 {
iface MIXER
name 'Matrix 13 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.139 {
iface MIXER
name 'Matrix 13 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.140 {
iface MIXER
name 'Matrix 13 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.141 {
iface MIXER
name 'Matrix 13 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.142 {
iface MIXER
name 'Matrix 13 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.143 {
iface MIXER
name 'Matrix 13 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.144 {
iface MIXER
name 'Matrix 13 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.145 {
iface MIXER
name 'Matrix 14 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.146 {
iface MIXER
name 'Matrix 14 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.147 {
iface MIXER
name 'Matrix 14 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.148 {
iface MIXER
name 'Matrix 14 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.149 {
iface MIXER
name 'Matrix 14 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.150 {
iface MIXER
name 'Matrix 14 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.151 {
iface MIXER
name 'Matrix 14 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.152 {
iface MIXER
name 'Matrix 14 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.153 {
iface MIXER
name 'Matrix 14 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.154 {
iface MIXER
name 'Matrix 15 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.155 {
iface MIXER
name 'Matrix 15 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.156 {
iface MIXER
name 'Matrix 15 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.157 {
iface MIXER
name 'Matrix 15 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.158 {
iface MIXER
name 'Matrix 15 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.159 {
iface MIXER
name 'Matrix 15 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.160 {
iface MIXER
name 'Matrix 15 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.161 {
iface MIXER
name 'Matrix 15 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.162 {
iface MIXER
name 'Matrix 15 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.163 {
iface MIXER
name 'Matrix 16 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.164 {
iface MIXER
name 'Matrix 16 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.165 {
iface MIXER
name 'Matrix 16 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.166 {
iface MIXER
name 'Matrix 16 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.167 {
iface MIXER
name 'Matrix 16 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.168 {
iface MIXER
name 'Matrix 16 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.169 {
iface MIXER
name 'Matrix 16 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.170 {
iface MIXER
name 'Matrix 16 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.171 {
iface MIXER
name 'Matrix 16 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.172 {
iface MIXER
name 'Matrix 17 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.173 {
iface MIXER
name 'Matrix 17 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.174 {
iface MIXER
name 'Matrix 17 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.175 {
iface MIXER
name 'Matrix 17 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.176 {
iface MIXER
name 'Matrix 17 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.177 {
iface MIXER
name 'Matrix 17 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.178 {
iface MIXER
name 'Matrix 17 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.179 {
iface MIXER
name 'Matrix 17 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.180 {
iface MIXER
name 'Matrix 17 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.181 {
iface MIXER
name 'Matrix 18 Input Playback Route'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.182 {
iface MIXER
name 'Matrix 18 Mix A Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.183 {
iface MIXER
name 'Matrix 18 Mix B Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.184 {
iface MIXER
name 'Matrix 18 Mix C Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.185 {
iface MIXER
name 'Matrix 18 Mix D Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.186 {
iface MIXER
name 'Matrix 18 Mix E Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.187 {
iface MIXER
name 'Matrix 18 Mix F Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.188 {
iface MIXER
name 'Matrix 18 Mix G Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.189 {
iface MIXER
name 'Matrix 18 Mix H Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -12800
}
}
control.190 {
iface MIXER
name 'Input Source 01 Capture Route'
value 'Analog 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.191 {
iface MIXER
name 'Input Source 02 Capture Route'
value 'Analog 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.192 {
iface MIXER
name 'Input Source 03 Capture Route'
value 'Analog 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.193 {
iface MIXER
name 'Input Source 04 Capture Route'
value 'Analog 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.194 {
iface MIXER
name 'Input Source 05 Capture Route'
value 'SPDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.195 {
iface MIXER
name 'Input Source 06 Capture Route'
value 'SPDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
}
}
control.196 {
iface MIXER
name 'Sample Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 SPDIF
item.2 ADAT
}
}
control.197 {
iface MIXER
name 'Sample Clock Sync Status'
value Locked
comment {
access 'read volatile'
type ENUMERATED
count 1
item.0 'No Lock'
item.1 Locked
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 1 8i6.state 0000664 0000000 0000000 00000132517 15212330051 0022770 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
comment {
access read
type INTEGER
count 12
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
comment {
access read
type INTEGER
count 8
range '0 - 36'
}
}
control.3 {
iface MIXER
name 'Extension Unit Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface CARD
name 'S/PDIF Validity'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'Scarlett 8i6 USB-Sync Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
}
}
control.7 {
iface MIXER
name 'Extension Unit Switch'
index 1
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Master Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Master Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.10 {
iface MIXER
name 'Master 1 (Monitor) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.11 {
iface MIXER
name 'Master 1 (Monitor) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.12 {
iface MIXER
name 'Master 1L (Monitor) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.13 {
iface MIXER
name 'Master 1R (Monitor) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.14 {
iface MIXER
name 'Master 2 (Headphone) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.15 {
iface MIXER
name 'Master 2 (Headphone) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.16 {
iface MIXER
name 'Master 2L (Headphone) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.17 {
iface MIXER
name 'Master 2R (Headphone) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.18 {
iface MIXER
name 'Master 3 (SPDIF) Playback Switch'
value.0 true
value.1 true
comment {
access 'read write'
type BOOLEAN
count 2
}
}
control.19 {
iface MIXER
name 'Master 3 (SPDIF) Playback Volume'
value.0 128
value.1 128
comment {
access 'read write'
type INTEGER
count 2
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
dbvalue.1 0
}
}
control.20 {
iface MIXER
name 'Master 3L (SPDIF) Source Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.21 {
iface MIXER
name 'Master 3R (SPDIF) Source Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.22 {
iface MIXER
name 'Input 1 Impedance Switch'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Hi-Z
}
}
control.23 {
iface MIXER
name 'Input 2 Impedance Switch'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Hi-Z
}
}
control.24 {
iface MIXER
name 'Input 3 Pad Switch'
value '0dB'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '0dB'
item.1 '-10dB'
}
}
control.25 {
iface MIXER
name 'Input 4 Pad Switch'
value '0dB'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 '0dB'
item.1 '-10dB'
}
}
control.26 {
iface MIXER
name 'Matrix 01 Input Playback Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.27 {
iface MIXER
name 'Matrix 01 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.28 {
iface MIXER
name 'Matrix 01 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.29 {
iface MIXER
name 'Matrix 01 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.30 {
iface MIXER
name 'Matrix 01 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.31 {
iface MIXER
name 'Matrix 01 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.32 {
iface MIXER
name 'Matrix 01 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.33 {
iface MIXER
name 'Matrix 02 Input Playback Route'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.34 {
iface MIXER
name 'Matrix 02 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.35 {
iface MIXER
name 'Matrix 02 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.36 {
iface MIXER
name 'Matrix 02 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.37 {
iface MIXER
name 'Matrix 02 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.38 {
iface MIXER
name 'Matrix 02 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.39 {
iface MIXER
name 'Matrix 02 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.40 {
iface MIXER
name 'Matrix 03 Input Playback Route'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.41 {
iface MIXER
name 'Matrix 03 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.42 {
iface MIXER
name 'Matrix 03 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.43 {
iface MIXER
name 'Matrix 03 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.44 {
iface MIXER
name 'Matrix 03 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.45 {
iface MIXER
name 'Matrix 03 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.46 {
iface MIXER
name 'Matrix 03 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.47 {
iface MIXER
name 'Matrix 04 Input Playback Route'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.48 {
iface MIXER
name 'Matrix 04 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.49 {
iface MIXER
name 'Matrix 04 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.50 {
iface MIXER
name 'Matrix 04 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.51 {
iface MIXER
name 'Matrix 04 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.52 {
iface MIXER
name 'Matrix 04 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.53 {
iface MIXER
name 'Matrix 04 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.54 {
iface MIXER
name 'Matrix 05 Input Playback Route'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.55 {
iface MIXER
name 'Matrix 05 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.56 {
iface MIXER
name 'Matrix 05 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.57 {
iface MIXER
name 'Matrix 05 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.58 {
iface MIXER
name 'Matrix 05 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.59 {
iface MIXER
name 'Matrix 05 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.60 {
iface MIXER
name 'Matrix 05 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.61 {
iface MIXER
name 'Matrix 06 Input Playback Route'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.62 {
iface MIXER
name 'Matrix 06 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.63 {
iface MIXER
name 'Matrix 06 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.64 {
iface MIXER
name 'Matrix 06 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.65 {
iface MIXER
name 'Matrix 06 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.66 {
iface MIXER
name 'Matrix 06 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.67 {
iface MIXER
name 'Matrix 06 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.68 {
iface MIXER
name 'Matrix 07 Input Playback Route'
value 'PCM 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.69 {
iface MIXER
name 'Matrix 07 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.70 {
iface MIXER
name 'Matrix 07 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.71 {
iface MIXER
name 'Matrix 07 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.72 {
iface MIXER
name 'Matrix 07 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.73 {
iface MIXER
name 'Matrix 07 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.74 {
iface MIXER
name 'Matrix 07 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.75 {
iface MIXER
name 'Matrix 08 Input Playback Route'
value 'PCM 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.76 {
iface MIXER
name 'Matrix 08 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.77 {
iface MIXER
name 'Matrix 08 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.78 {
iface MIXER
name 'Matrix 08 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.79 {
iface MIXER
name 'Matrix 08 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.80 {
iface MIXER
name 'Matrix 08 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.81 {
iface MIXER
name 'Matrix 08 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.82 {
iface MIXER
name 'Matrix 09 Input Playback Route'
value 'PCM 9'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.83 {
iface MIXER
name 'Matrix 09 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.84 {
iface MIXER
name 'Matrix 09 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.85 {
iface MIXER
name 'Matrix 09 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.86 {
iface MIXER
name 'Matrix 09 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.87 {
iface MIXER
name 'Matrix 09 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.88 {
iface MIXER
name 'Matrix 09 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.89 {
iface MIXER
name 'Matrix 10 Input Playback Route'
value 'PCM 10'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.90 {
iface MIXER
name 'Matrix 10 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.91 {
iface MIXER
name 'Matrix 10 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.92 {
iface MIXER
name 'Matrix 10 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.93 {
iface MIXER
name 'Matrix 10 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.94 {
iface MIXER
name 'Matrix 10 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.95 {
iface MIXER
name 'Matrix 10 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.96 {
iface MIXER
name 'Matrix 11 Input Playback Route'
value 'PCM 11'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.97 {
iface MIXER
name 'Matrix 11 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.98 {
iface MIXER
name 'Matrix 11 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.99 {
iface MIXER
name 'Matrix 11 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.100 {
iface MIXER
name 'Matrix 11 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.101 {
iface MIXER
name 'Matrix 11 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.102 {
iface MIXER
name 'Matrix 11 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.103 {
iface MIXER
name 'Matrix 12 Input Playback Route'
value 'PCM 12'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.104 {
iface MIXER
name 'Matrix 12 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.105 {
iface MIXER
name 'Matrix 12 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.106 {
iface MIXER
name 'Matrix 12 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.107 {
iface MIXER
name 'Matrix 12 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.108 {
iface MIXER
name 'Matrix 12 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.109 {
iface MIXER
name 'Matrix 12 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.110 {
iface MIXER
name 'Matrix 13 Input Playback Route'
value 'Analog 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.111 {
iface MIXER
name 'Matrix 13 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.112 {
iface MIXER
name 'Matrix 13 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.113 {
iface MIXER
name 'Matrix 13 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.114 {
iface MIXER
name 'Matrix 13 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.115 {
iface MIXER
name 'Matrix 13 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.116 {
iface MIXER
name 'Matrix 13 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.117 {
iface MIXER
name 'Matrix 14 Input Playback Route'
value 'Analog 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.118 {
iface MIXER
name 'Matrix 14 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.119 {
iface MIXER
name 'Matrix 14 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.120 {
iface MIXER
name 'Matrix 14 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.121 {
iface MIXER
name 'Matrix 14 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.122 {
iface MIXER
name 'Matrix 14 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.123 {
iface MIXER
name 'Matrix 14 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.124 {
iface MIXER
name 'Matrix 15 Input Playback Route'
value 'Analog 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.125 {
iface MIXER
name 'Matrix 15 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.126 {
iface MIXER
name 'Matrix 15 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.127 {
iface MIXER
name 'Matrix 15 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.128 {
iface MIXER
name 'Matrix 15 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.129 {
iface MIXER
name 'Matrix 15 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.130 {
iface MIXER
name 'Matrix 15 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.131 {
iface MIXER
name 'Matrix 16 Input Playback Route'
value 'Analog 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.132 {
iface MIXER
name 'Matrix 16 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.133 {
iface MIXER
name 'Matrix 16 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.134 {
iface MIXER
name 'Matrix 16 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.135 {
iface MIXER
name 'Matrix 16 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.136 {
iface MIXER
name 'Matrix 16 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.137 {
iface MIXER
name 'Matrix 16 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.138 {
iface MIXER
name 'Matrix 17 Input Playback Route'
value 'SPDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.139 {
iface MIXER
name 'Matrix 17 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.140 {
iface MIXER
name 'Matrix 17 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.141 {
iface MIXER
name 'Matrix 17 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.142 {
iface MIXER
name 'Matrix 17 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.143 {
iface MIXER
name 'Matrix 17 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.144 {
iface MIXER
name 'Matrix 17 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.145 {
iface MIXER
name 'Matrix 18 Input Playback Route'
value 'SPDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
}
}
control.146 {
iface MIXER
name 'Matrix 18 Mix A Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.147 {
iface MIXER
name 'Matrix 18 Mix B Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.148 {
iface MIXER
name 'Matrix 18 Mix C Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.149 {
iface MIXER
name 'Matrix 18 Mix D Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.150 {
iface MIXER
name 'Matrix 18 Mix E Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.151 {
iface MIXER
name 'Matrix 18 Mix F Playback Volume'
value 128
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 0
}
}
control.152 {
iface MIXER
name 'Input Source 01 Capture Route'
value 'Analog 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.153 {
iface MIXER
name 'Input Source 02 Capture Route'
value 'Analog 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.154 {
iface MIXER
name 'Input Source 03 Capture Route'
value 'Analog 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.155 {
iface MIXER
name 'Input Source 04 Capture Route'
value 'Analog 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.156 {
iface MIXER
name 'Input Source 05 Capture Route'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.157 {
iface MIXER
name 'Input Source 06 Capture Route'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.158 {
iface MIXER
name 'Input Source 07 Capture Route'
value 'SPDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.159 {
iface MIXER
name 'Input Source 08 Capture Route'
value 'SPDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'PCM 1'
item.2 'PCM 2'
item.3 'PCM 3'
item.4 'PCM 4'
item.5 'PCM 5'
item.6 'PCM 6'
item.7 'PCM 7'
item.8 'PCM 8'
item.9 'PCM 9'
item.10 'PCM 10'
item.11 'PCM 11'
item.12 'PCM 12'
item.13 'Analog 1'
item.14 'Analog 2'
item.15 'Analog 3'
item.16 'Analog 4'
item.17 'SPDIF 1'
item.18 'SPDIF 2'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
}
}
control.160 {
iface MIXER
name 'Sample Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 SPDIF
item.2 ADAT
}
}
control.161 {
iface MIXER
name 'Sample Clock Sync Status'
value Locked
comment {
access 'read volatile'
type ENUMERATED
count 1
item.0 'No Lock'
item.1 Locked
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 2 18i20.conf 0000664 0000000 0000000 00000031655 15212330051 0022734 0 ustar 00root root 0000000 0000000 [device]
serial=03016542
model=Scarlett 18i20 USB
[controls]
Clock Source Clock Source=Internal
Line Out 01 Volume Control Playback Enum=HW
Line Out 02 Volume Control Playback Enum=HW
Line 03 Playback Volume=127
Line 03 Mute Playback Switch=false
Line Out 03 Volume Control Playback Enum=SW
Line 04 Playback Volume=127
Line 04 Mute Playback Switch=false
Line Out 04 Volume Control Playback Enum=SW
Line 05 Playback Volume=127
Line 05 Mute Playback Switch=false
Line Out 05 Volume Control Playback Enum=SW
Line 06 Playback Volume=127
Line 06 Mute Playback Switch=false
Line Out 06 Volume Control Playback Enum=SW
Line 07 (Headphones 1 L) Playback Volume=127
Line 07 Mute Playback Switch=false
Line Out 07 Volume Control Playback Enum=SW
Line 08 (Headphones 1 R) Playback Volume=127
Line 08 Mute Playback Switch=false
Line Out 08 Volume Control Playback Enum=SW
Line 09 (Headphones 2 L) Playback Volume=127
Line 09 Mute Playback Switch=false
Line Out 09 Volume Control Playback Enum=SW
Line 10 (Headphones 2 R) Playback Volume=127
Line 10 Mute Playback Switch=false
Line Out 10 Volume Control Playback Enum=SW
Mute Playback Switch=false
Dim Playback Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
Analogue Output 05 Playback Enum=PCM 5
Analogue Output 06 Playback Enum=PCM 6
Analogue Output 07 Playback Enum=PCM 7
Analogue Output 08 Playback Enum=PCM 8
Analogue Output 09 Playback Enum=PCM 9
Analogue Output 10 Playback Enum=PCM 10
S/PDIF Output 1 Playback Enum=PCM 11
S/PDIF Output 2 Playback Enum=PCM 12
ADAT Output 1 Playback Enum=PCM 13
ADAT Output 2 Playback Enum=PCM 14
ADAT Output 3 Playback Enum=PCM 15
ADAT Output 4 Playback Enum=PCM 16
ADAT Output 5 Playback Enum=PCM 17
ADAT Output 6 Playback Enum=PCM 18
ADAT Output 7 Playback Enum=PCM 19
ADAT Output 8 Playback Enum=PCM 20
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
Mixer Input 09 Capture Enum=Off
Mixer Input 10 Capture Enum=Off
Mixer Input 11 Capture Enum=Off
Mixer Input 12 Capture Enum=Off
Mixer Input 13 Capture Enum=Off
Mixer Input 14 Capture Enum=Off
Mixer Input 15 Capture Enum=Off
Mixer Input 16 Capture Enum=Off
Mixer Input 17 Capture Enum=Off
Mixer Input 18 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=Analogue 5
PCM 06 Capture Enum=Analogue 6
PCM 07 Capture Enum=Analogue 7
PCM 08 Capture Enum=Analogue 8
PCM 09 Capture Enum=S/PDIF 1
PCM 10 Capture Enum=S/PDIF 2
PCM 11 Capture Enum=ADAT 1
PCM 12 Capture Enum=ADAT 2
PCM 13 Capture Enum=ADAT 3
PCM 14 Capture Enum=ADAT 4
PCM 15 Capture Enum=ADAT 5
PCM 16 Capture Enum=ADAT 6
PCM 17 Capture Enum=ADAT 7
PCM 18 Capture Enum=ADAT 8
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=0
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=0
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Standalone Switch=false
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
Analogue In 7 Name=
Analogue In 8 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
PCM Out 7 Name=
PCM Out 8 Name=
PCM Out 9 Name=
PCM Out 10 Name=
PCM Out 11 Name=
PCM Out 12 Name=
PCM Out 13 Name=
PCM Out 14 Name=
PCM Out 15 Name=
PCM Out 16 Name=
PCM Out 17 Name=
PCM Out 18 Name=
PCM Out 19 Name=
PCM Out 20 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
Analogue Out 7 Name=
Analogue Out 8 Name=
Analogue Out 9 Name=
Analogue Out 10 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
ADAT Out 1 Name=
ADAT Out 2 Name=
ADAT Out 3 Name=
ADAT Out 4 Name=
ADAT Out 5 Name=
ADAT Out 6 Name=
ADAT Out 7 Name=
ADAT Out 8 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
PCM In 15 Name=
PCM In 16 Name=
PCM In 17 Name=
PCM In 18 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
Analogue In 7 Switch=true
Analogue In 8 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
PCM Out 7 Switch=true
PCM Out 8 Switch=true
PCM Out 9 Switch=true
PCM Out 10 Switch=true
PCM Out 11 Switch=true
PCM Out 12 Switch=true
PCM Out 13 Switch=true
PCM Out 14 Switch=true
PCM Out 15 Switch=true
PCM Out 16 Switch=true
PCM Out 17 Switch=true
PCM Out 18 Switch=true
PCM Out 19 Switch=true
PCM Out 20 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
Analogue Out 7 Switch=true
Analogue Out 8 Switch=true
Analogue Out 9 Switch=true
Analogue Out 10 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
ADAT Out 1 Switch=true
ADAT Out 2 Switch=true
ADAT Out 3 Switch=true
ADAT Out 4 Switch=true
ADAT Out 5 Switch=true
ADAT Out 6 Switch=true
ADAT Out 7 Switch=true
ADAT Out 8 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
PCM In 15 Switch=true
PCM In 16 Switch=true
PCM In 17 Switch=true
PCM In 18 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 2 18i20.state 0000664 0000000 0000000 00000332375 15212330051 0023132 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.2 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.5 {
iface CARD
name 'Firmware Version'
value 1653
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.7 {
iface MIXER
name 'Master HW Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.8 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.9 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line Out 01 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.11 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.12 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.13 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.14 {
iface MIXER
name 'Line 03 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.15 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line Out 03 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.17 {
iface MIXER
name 'Line 04 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.18 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line Out 04 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.20 {
iface MIXER
name 'Line 05 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.21 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
iface MIXER
name 'Line Out 05 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.23 {
iface MIXER
name 'Line 06 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.24 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.25 {
iface MIXER
name 'Line Out 06 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.26 {
iface MIXER
name 'Line 07 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.27 {
iface MIXER
name 'Line 07 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.28 {
iface MIXER
name 'Line Out 07 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.29 {
iface MIXER
name 'Line 08 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.30 {
iface MIXER
name 'Line 08 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.31 {
iface MIXER
name 'Line Out 08 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.32 {
iface MIXER
name 'Line 09 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.33 {
iface MIXER
name 'Line 09 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.34 {
iface MIXER
name 'Line Out 09 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.35 {
iface MIXER
name 'Line 10 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.36 {
iface MIXER
name 'Line 10 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.37 {
iface MIXER
name 'Line Out 10 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.38 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.39 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.40 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.41 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.42 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.43 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.44 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.45 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.46 {
iface MIXER
name 'Analogue Output 07 Playback Enum'
value 'PCM 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.47 {
iface MIXER
name 'Analogue Output 08 Playback Enum'
value 'PCM 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.48 {
iface MIXER
name 'Analogue Output 09 Playback Enum'
value 'PCM 9'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.49 {
iface MIXER
name 'Analogue Output 10 Playback Enum'
value 'PCM 10'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.50 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value 'PCM 11'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.51 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value 'PCM 12'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.52 {
iface MIXER
name 'ADAT Output 1 Playback Enum'
value 'PCM 13'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.53 {
iface MIXER
name 'ADAT Output 2 Playback Enum'
value 'PCM 14'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.54 {
iface MIXER
name 'ADAT Output 3 Playback Enum'
value 'PCM 15'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.55 {
iface MIXER
name 'ADAT Output 4 Playback Enum'
value 'PCM 16'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.56 {
iface MIXER
name 'ADAT Output 5 Playback Enum'
value 'PCM 17'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.57 {
iface MIXER
name 'ADAT Output 6 Playback Enum'
value 'PCM 18'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.58 {
iface MIXER
name 'ADAT Output 7 Playback Enum'
value 'PCM 19'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.59 {
iface MIXER
name 'ADAT Output 8 Playback Enum'
value 'PCM 20'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.60 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.61 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.62 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.63 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.64 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.65 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.66 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.67 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.68 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.69 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.70 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.71 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.72 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.73 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.74 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.75 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.76 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.77 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.78 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.79 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.80 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.81 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.82 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.83 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.84 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.85 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.86 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.87 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.88 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.89 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.90 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.91 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.92 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.93 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.94 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.95 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
item.37 'PCM 9'
item.38 'PCM 10'
item.39 'PCM 11'
item.40 'PCM 12'
item.41 'PCM 13'
item.42 'PCM 14'
item.43 'PCM 15'
item.44 'PCM 16'
item.45 'PCM 17'
item.46 'PCM 18'
item.47 'PCM 19'
item.48 'PCM 20'
}
}
control.96 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.240 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.242 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.243 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.244 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.245 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.246 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.247 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.248 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.249 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.250 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.251 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.252 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.253 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.254 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.255 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.256 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.257 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.258 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.259 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.260 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.261 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.262 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.263 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.264 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.265 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.266 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.267 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.268 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.269 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.270 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.271 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.272 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.273 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.274 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.275 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.276 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 10
value.43 8
value.44 0
value.45 0
value.46 32
value.47 29
value.48 0
value.49 0
value.50 0
value.51 0
value.52 0
value.53 0
value.54 0
value.55 0
comment {
access 'read volatile'
type INTEGER
count 56
range '0 - 4095 (step 1)'
}
}
control.277 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.278 {
iface MIXER
name 'Standalone Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 2 18i8.conf 0000664 0000000 0000000 00000026222 15212330051 0022654 0 ustar 00root root 0000000 0000000 [device]
serial=00037774
model=Scarlett 18i8 USB
[controls]
Clock Source Clock Source=Internal
Line 01 (Monitor L) Playback Volume=127
Line 01 Mute Playback Switch=false
Line 02 (Monitor R) Playback Volume=127
Line 02 Mute Playback Switch=false
Line 03 (Headphones 1 L) Playback Volume=127
Line 03 Mute Playback Switch=false
Line 04 (Headphones 1 R) Playback Volume=127
Line 04 Mute Playback Switch=false
Line 05 (Headphones 2 L) Playback Volume=127
Line 05 Mute Playback Switch=false
Line 06 (Headphones 2 R) Playback Volume=127
Line 06 Mute Playback Switch=false
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Pad Capture Switch=false
Line In 2 Pad Capture Switch=false
Line In 3 Pad Capture Switch=false
Line In 4 Pad Capture Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
Analogue Output 05 Playback Enum=PCM 5
Analogue Output 06 Playback Enum=PCM 6
S/PDIF Output 1 Playback Enum=PCM 7
S/PDIF Output 2 Playback Enum=PCM 8
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
Mixer Input 09 Capture Enum=Off
Mixer Input 10 Capture Enum=Off
Mixer Input 11 Capture Enum=Off
Mixer Input 12 Capture Enum=Off
Mixer Input 13 Capture Enum=Off
Mixer Input 14 Capture Enum=Off
Mixer Input 15 Capture Enum=Off
Mixer Input 16 Capture Enum=Off
Mixer Input 17 Capture Enum=Off
Mixer Input 18 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=Analogue 5
PCM 06 Capture Enum=Analogue 6
PCM 07 Capture Enum=Analogue 7
PCM 08 Capture Enum=Analogue 8
PCM 09 Capture Enum=S/PDIF 1
PCM 10 Capture Enum=S/PDIF 2
PCM 11 Capture Enum=ADAT 1
PCM 12 Capture Enum=ADAT 2
PCM 13 Capture Enum=ADAT 3
PCM 14 Capture Enum=ADAT 4
PCM 15 Capture Enum=ADAT 5
PCM 16 Capture Enum=ADAT 6
PCM 17 Capture Enum=ADAT 7
PCM 18 Capture Enum=ADAT 8
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=0
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=0
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Standalone Switch=false
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
Analogue In 7 Name=
Analogue In 8 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
PCM Out 7 Name=
PCM Out 8 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
PCM In 15 Name=
PCM In 16 Name=
PCM In 17 Name=
PCM In 18 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
Analogue In 7 Switch=true
Analogue In 8 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
PCM Out 7 Switch=true
PCM Out 8 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
PCM In 15 Switch=true
PCM In 16 Switch=true
PCM In 17 Switch=true
PCM In 18 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 2 18i8.state 0000664 0000000 0000000 00000512475 15212330051 0023061 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
comment {
access read
type INTEGER
count 8
range '0 - 36'
}
}
control.2 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.6 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.7 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.9 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line 03 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.11 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line 04 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.13 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line 05 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.15 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line 06 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.17 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.19 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.20 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
iface MIXER
name 'Line In 3 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Line In 4 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.25 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.26 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.27 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.28 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.29 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.30 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.31 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.32 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.33 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.34 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.35 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.36 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.37 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.38 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.39 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.40 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.41 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.42 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.43 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.44 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.45 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.46 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.47 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.48 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.49 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.50 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.51 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.52 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.53 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.54 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.55 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.56 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.57 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.58 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.59 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.60 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.61 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.62 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.63 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.64 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.65 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.66 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.67 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.68 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.69 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.71 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.88 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.89 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.90 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.105 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.107 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.109 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.124 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.126 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.128 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -500
}
}
control.145 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -500
}
}
control.146 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -500
}
}
control.163 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -500
}
}
control.164 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.240 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.242 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.243 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.244 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.245 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.246 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.247 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.248 {
iface PCM
name 'Level Meter'
value.0 10
value.1 10
value.2 5
value.3 5
value.4 5
value.5 5
value.6 4
value.7 5
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 10
value.21 10
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
comment {
access 'read volatile'
type INTEGER
count 44
range '0 - 4095 (step 1)'
}
}
control.249 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
}
state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
comment {
access 'read volatile'
type INTEGER
count 8
range '0 - 36'
}
}
control.2 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.6 {
iface CARD
name 'Firmware Version'
value 1583
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.7 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.8 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.9 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.11 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line 03 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.13 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line 04 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.15 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line 05 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.17 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line 06 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.19 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.21 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.22 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Line In 3 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.25 {
iface MIXER
name 'Line In 4 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.27 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.28 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.29 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.30 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.31 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.32 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value 'PCM 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.33 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value 'PCM 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.34 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.35 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.36 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.37 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.38 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.39 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.40 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.41 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.42 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.43 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.44 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.45 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.46 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.47 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.48 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.49 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.50 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.51 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.52 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.53 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.54 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.55 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.56 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.57 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.58 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.59 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.60 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.61 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.62 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.63 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.64 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.65 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.66 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.67 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.68 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.69 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.70 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.89 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.240 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.242 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.243 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.244 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.245 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.246 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.247 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.248 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.249 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.250 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 3
value.27 1
value.28 1
value.29 1
value.30 1
value.31 1
value.32 1
value.33 1
value.34 1
value.35 1
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
comment {
access 'read volatile'
type INTEGER
count 44
range '0 - 4095 (step 1)'
}
}
control.251 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.252 {
iface MIXER
name 'Standalone Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 2 6i6.conf 0000664 0000000 0000000 00000022675 15212330051 0022577 0 ustar 00root root 0000000 0000000 [device]
serial=00068939
model=Scarlett 6i6 USB
[controls]
Clock Source Clock Source=Internal
Line 01 (Headphones 1 L) Playback Volume=127
Line 01 Mute Playback Switch=false
Line 02 (Headphones 1 R) Playback Volume=127
Line 02 Mute Playback Switch=false
Line 03 (Headphones 2 L) Playback Volume=127
Line 03 Mute Playback Switch=false
Line 04 (Headphones 2 R) Playback Volume=127
Line 04 Mute Playback Switch=false
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Pad Capture Switch=false
Line In 2 Pad Capture Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
S/PDIF Output 1 Playback Enum=PCM 5
S/PDIF Output 2 Playback Enum=PCM 6
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
Mixer Input 09 Capture Enum=Off
Mixer Input 10 Capture Enum=Off
Mixer Input 11 Capture Enum=Off
Mixer Input 12 Capture Enum=Off
Mixer Input 13 Capture Enum=Off
Mixer Input 14 Capture Enum=Off
Mixer Input 15 Capture Enum=Off
Mixer Input 16 Capture Enum=Off
Mixer Input 17 Capture Enum=Off
Mixer Input 18 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=S/PDIF 1
PCM 06 Capture Enum=S/PDIF 2
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=0
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=0
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Standalone Switch=false
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 2 6i6.state 0000664 0000000 0000000 00000362600 15212330051 0022765 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access read
type INTEGER
count 6
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access read
type INTEGER
count 6
range '0 - 36'
}
}
control.3 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
}
}
control.6 {
iface MIXER
name 'Line 01 (Headphones 1 L) Playback Volume'
value 101
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -2600
}
}
control.7 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line 02 (Headphones 1 R) Playback Volume'
value 113
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -1400
}
}
control.9 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line 03 (Headphones 2 L) Playback Volume'
value 94
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -3300
}
}
control.11 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line 04 (Headphones 2 R) Playback Volume'
value 69
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -5800
}
}
control.13 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.15 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.16 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.19 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.20 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.21 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.22 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.23 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.24 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.25 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.26 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.27 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.28 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.29 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.30 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.31 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.32 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.33 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.34 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.35 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.36 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.37 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.38 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.39 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.40 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.41 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.42 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.43 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.44 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.45 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.46 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.47 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.48 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.49 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.50 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.51 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.53 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.54 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.55 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.56 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.57 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.58 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.59 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.61 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.62 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.64 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.66 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.68 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.70 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.85 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.87 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.89 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.90 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.104 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.106 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.107 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.108 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.228 {
iface PCM
name 'Level Meter'
value.0 1
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 1
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
comment {
access 'read volatile'
type INTEGER
count 30
range '0 - 4095 (step 1)'
}
}
control.229 {
iface MIXER
name 'Sync Status'
value Unlocked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
}
state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access 'read volatile'
type INTEGER
count 6
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access 'read volatile'
type INTEGER
count 6
range '0 - 36'
}
}
control.3 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
}
}
control.6 {
iface CARD
name 'Firmware Version'
value 1583
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.7 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.8 {
iface MIXER
name 'Line 01 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.9 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line 02 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.11 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line 03 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.13 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line 04 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.15 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.17 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.18 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.21 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.22 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.23 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.24 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.25 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.26 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.27 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.28 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.29 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.30 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.31 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.32 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.33 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.34 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.35 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.36 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.37 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.38 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.39 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.40 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.41 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.42 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.43 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.44 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.45 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.46 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.47 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.48 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.49 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'S/PDIF 1'
item.6 'S/PDIF 2'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.50 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.51 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.53 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.54 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.55 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.56 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.57 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.58 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.59 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.61 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.62 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.64 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.66 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.89 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.230 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 1
value.25 0
value.26 1
value.27 1
value.28 0
value.29 0
comment {
access 'read volatile'
type INTEGER
count 30
range '0 - 4095 (step 1)'
}
}
control.231 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.232 {
iface MIXER
name 'Standalone Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 18i20.conf 0000664 0000000 0000000 00000045571 15212330051 0022737 0 ustar 00root root 0000000 0000000 [device]
serial=P9MM1PW0C082E2
model=Scarlett 18i20 USB
[controls]
Clock Source Clock Source=Internal
Line Out 01 Volume Control Playback Enum=HW
Line Out 02 Volume Control Playback Enum=HW
Line 03 (Monitor 2 L) Playback Volume=127
Line 03 Mute Playback Switch=false
Line Out 03 Volume Control Playback Enum=SW
Line 04 (Monitor 2 R) Playback Volume=127
Line 04 Mute Playback Switch=false
Line Out 04 Volume Control Playback Enum=SW
Line 05 Playback Volume=127
Line 05 Mute Playback Switch=false
Line Out 05 Volume Control Playback Enum=SW
Line 06 Playback Volume=127
Line 06 Mute Playback Switch=false
Line Out 06 Volume Control Playback Enum=SW
Line 07 (Headphones 1 L) Playback Volume=127
Line 07 Mute Playback Switch=false
Line Out 07 Volume Control Playback Enum=SW
Line 08 (Headphones 1 R) Playback Volume=127
Line 08 Mute Playback Switch=false
Line Out 08 Volume Control Playback Enum=SW
Line 09 (Headphones 2 L) Playback Volume=127
Line 09 Mute Playback Switch=false
Line Out 09 Volume Control Playback Enum=SW
Line 10 (Headphones 2 R) Playback Volume=127
Line 10 Mute Playback Switch=false
Line Out 10 Volume Control Playback Enum=SW
Mute Playback Switch=false
Dim Playback Switch=false
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Pad Capture Switch=false
Line In 2 Pad Capture Switch=false
Line In 3 Pad Capture Switch=false
Line In 4 Pad Capture Switch=false
Line In 5 Pad Capture Switch=false
Line In 6 Pad Capture Switch=false
Line In 7 Pad Capture Switch=false
Line In 8 Pad Capture Switch=false
Line In 1 Air Capture Switch=false
Line In 2 Air Capture Switch=false
Line In 3 Air Capture Switch=false
Line In 4 Air Capture Switch=false
Line In 5 Air Capture Switch=false
Line In 6 Air Capture Switch=false
Line In 7 Air Capture Switch=false
Line In 8 Air Capture Switch=false
Line In 1-4 Phantom Power Capture Switch=false
Line In 5-8 Phantom Power Capture Switch=false
Phantom Power Persistence Capture Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
Analogue Output 05 Playback Enum=PCM 5
Analogue Output 06 Playback Enum=PCM 6
Analogue Output 07 Playback Enum=PCM 7
Analogue Output 08 Playback Enum=PCM 8
Analogue Output 09 Playback Enum=PCM 9
Analogue Output 10 Playback Enum=PCM 10
S/PDIF Output 1 Playback Enum=PCM 11
S/PDIF Output 2 Playback Enum=PCM 12
ADAT Output 1 Playback Enum=PCM 13
ADAT Output 2 Playback Enum=PCM 14
ADAT Output 3 Playback Enum=PCM 15
ADAT Output 4 Playback Enum=PCM 16
ADAT Output 5 Playback Enum=PCM 17
ADAT Output 6 Playback Enum=PCM 18
ADAT Output 7 Playback Enum=PCM 19
ADAT Output 8 Playback Enum=PCM 20
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
Mixer Input 09 Capture Enum=Off
Mixer Input 10 Capture Enum=Off
Mixer Input 11 Capture Enum=Off
Mixer Input 12 Capture Enum=Off
Mixer Input 13 Capture Enum=Off
Mixer Input 14 Capture Enum=Off
Mixer Input 15 Capture Enum=Off
Mixer Input 16 Capture Enum=Off
Mixer Input 17 Capture Enum=Off
Mixer Input 18 Capture Enum=Off
Mixer Input 19 Capture Enum=Off
Mixer Input 20 Capture Enum=Off
Mixer Input 21 Capture Enum=Off
Mixer Input 22 Capture Enum=Off
Mixer Input 23 Capture Enum=Off
Mixer Input 24 Capture Enum=Off
Mixer Input 25 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=Analogue 5
PCM 06 Capture Enum=Analogue 6
PCM 07 Capture Enum=Analogue 7
PCM 08 Capture Enum=Analogue 8
PCM 09 Capture Enum=Off
PCM 10 Capture Enum=Off
PCM 11 Capture Enum=S/PDIF 1
PCM 12 Capture Enum=S/PDIF 2
PCM 13 Capture Enum=ADAT 1
PCM 14 Capture Enum=ADAT 2
PCM 15 Capture Enum=ADAT 3
PCM 16 Capture Enum=ADAT 4
PCM 17 Capture Enum=ADAT 5
PCM 18 Capture Enum=ADAT 6
PCM 19 Capture Enum=ADAT 7
PCM 20 Capture Enum=ADAT 8
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix A Input 19 Playback Volume=0
Mix A Input 20 Playback Volume=0
Mix A Input 21 Playback Volume=0
Mix A Input 22 Playback Volume=0
Mix A Input 23 Playback Volume=0
Mix A Input 24 Playback Volume=0
Mix A Input 25 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix B Input 19 Playback Volume=0
Mix B Input 20 Playback Volume=0
Mix B Input 21 Playback Volume=0
Mix B Input 22 Playback Volume=0
Mix B Input 23 Playback Volume=0
Mix B Input 24 Playback Volume=0
Mix B Input 25 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix C Input 19 Playback Volume=0
Mix C Input 20 Playback Volume=0
Mix C Input 21 Playback Volume=0
Mix C Input 22 Playback Volume=0
Mix C Input 23 Playback Volume=0
Mix C Input 24 Playback Volume=0
Mix C Input 25 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix D Input 19 Playback Volume=0
Mix D Input 20 Playback Volume=0
Mix D Input 21 Playback Volume=0
Mix D Input 22 Playback Volume=0
Mix D Input 23 Playback Volume=0
Mix D Input 24 Playback Volume=0
Mix D Input 25 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix E Input 19 Playback Volume=0
Mix E Input 20 Playback Volume=0
Mix E Input 21 Playback Volume=0
Mix E Input 22 Playback Volume=0
Mix E Input 23 Playback Volume=0
Mix E Input 24 Playback Volume=0
Mix E Input 25 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix F Input 19 Playback Volume=0
Mix F Input 20 Playback Volume=0
Mix F Input 21 Playback Volume=0
Mix F Input 22 Playback Volume=0
Mix F Input 23 Playback Volume=0
Mix F Input 24 Playback Volume=0
Mix F Input 25 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix G Input 19 Playback Volume=0
Mix G Input 20 Playback Volume=0
Mix G Input 21 Playback Volume=0
Mix G Input 22 Playback Volume=0
Mix G Input 23 Playback Volume=0
Mix G Input 24 Playback Volume=0
Mix G Input 25 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix H Input 19 Playback Volume=0
Mix H Input 20 Playback Volume=0
Mix H Input 21 Playback Volume=0
Mix H Input 22 Playback Volume=0
Mix H Input 23 Playback Volume=0
Mix H Input 24 Playback Volume=0
Mix H Input 25 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=0
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix I Input 19 Playback Volume=0
Mix I Input 20 Playback Volume=0
Mix I Input 21 Playback Volume=0
Mix I Input 22 Playback Volume=0
Mix I Input 23 Playback Volume=0
Mix I Input 24 Playback Volume=0
Mix I Input 25 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=0
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Mix J Input 19 Playback Volume=0
Mix J Input 20 Playback Volume=0
Mix J Input 21 Playback Volume=0
Mix J Input 22 Playback Volume=0
Mix J Input 23 Playback Volume=0
Mix J Input 24 Playback Volume=0
Mix J Input 25 Playback Volume=0
Mix K Input 01 Playback Volume=0
Mix K Input 02 Playback Volume=0
Mix K Input 03 Playback Volume=0
Mix K Input 04 Playback Volume=0
Mix K Input 05 Playback Volume=0
Mix K Input 06 Playback Volume=0
Mix K Input 07 Playback Volume=0
Mix K Input 08 Playback Volume=0
Mix K Input 09 Playback Volume=0
Mix K Input 10 Playback Volume=0
Mix K Input 11 Playback Volume=0
Mix K Input 12 Playback Volume=0
Mix K Input 13 Playback Volume=0
Mix K Input 14 Playback Volume=0
Mix K Input 15 Playback Volume=0
Mix K Input 16 Playback Volume=0
Mix K Input 17 Playback Volume=0
Mix K Input 18 Playback Volume=0
Mix K Input 19 Playback Volume=0
Mix K Input 20 Playback Volume=0
Mix K Input 21 Playback Volume=0
Mix K Input 22 Playback Volume=0
Mix K Input 23 Playback Volume=0
Mix K Input 24 Playback Volume=0
Mix K Input 25 Playback Volume=0
Mix L Input 01 Playback Volume=0
Mix L Input 02 Playback Volume=0
Mix L Input 03 Playback Volume=0
Mix L Input 04 Playback Volume=0
Mix L Input 05 Playback Volume=0
Mix L Input 06 Playback Volume=0
Mix L Input 07 Playback Volume=0
Mix L Input 08 Playback Volume=0
Mix L Input 09 Playback Volume=0
Mix L Input 10 Playback Volume=0
Mix L Input 11 Playback Volume=0
Mix L Input 12 Playback Volume=0
Mix L Input 13 Playback Volume=0
Mix L Input 14 Playback Volume=0
Mix L Input 15 Playback Volume=0
Mix L Input 16 Playback Volume=0
Mix L Input 17 Playback Volume=0
Mix L Input 18 Playback Volume=0
Mix L Input 19 Playback Volume=0
Mix L Input 20 Playback Volume=0
Mix L Input 21 Playback Volume=0
Mix L Input 22 Playback Volume=0
Mix L Input 23 Playback Volume=0
Mix L Input 24 Playback Volume=0
Mix L Input 25 Playback Volume=0
Speaker Switching Playback Enum=Off
Talkback Playback Enum=Disabled
Talkback Mix A Playback Switch=false
Talkback Mix B Playback Switch=false
Talkback Mix C Playback Switch=false
Talkback Mix D Playback Switch=false
Talkback Mix E Playback Switch=false
Talkback Mix F Playback Switch=false
Talkback Mix G Playback Switch=false
Talkback Mix H Playback Switch=false
Talkback Mix I Playback Switch=false
Talkback Mix J Playback Switch=false
Talkback Mix K Playback Switch=false
Talkback Mix L Playback Switch=false
Standalone Switch=false
Digital I/O Mode Capture Enum=S/PDIF RCA
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
Analogue In 7 Name=
Analogue In 8 Name=
Analogue In 9 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
Mixer Out 11 Name=
Mixer Out 12 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
PCM Out 7 Name=
PCM Out 8 Name=
PCM Out 9 Name=
PCM Out 10 Name=
PCM Out 11 Name=
PCM Out 12 Name=
PCM Out 13 Name=
PCM Out 14 Name=
PCM Out 15 Name=
PCM Out 16 Name=
PCM Out 17 Name=
PCM Out 18 Name=
PCM Out 19 Name=
PCM Out 20 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
Analogue Out 7 Name=
Analogue Out 8 Name=
Analogue Out 9 Name=
Analogue Out 10 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
ADAT Out 1 Name=
ADAT Out 2 Name=
ADAT Out 3 Name=
ADAT Out 4 Name=
ADAT Out 5 Name=
ADAT Out 6 Name=
ADAT Out 7 Name=
ADAT Out 8 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
Mixer In 19 Name=
Mixer In 20 Name=
Mixer In 21 Name=
Mixer In 22 Name=
Mixer In 23 Name=
Mixer In 24 Name=
Mixer In 25 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
PCM In 15 Name=
PCM In 16 Name=
PCM In 17 Name=
PCM In 18 Name=
PCM In 19 Name=
PCM In 20 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
Analogue In 7 Switch=true
Analogue In 8 Switch=true
Analogue In 9 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
Mixer Out 11 Switch=true
Mixer Out 12 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
PCM Out 7 Switch=true
PCM Out 8 Switch=true
PCM Out 9 Switch=true
PCM Out 10 Switch=true
PCM Out 11 Switch=true
PCM Out 12 Switch=true
PCM Out 13 Switch=true
PCM Out 14 Switch=true
PCM Out 15 Switch=true
PCM Out 16 Switch=true
PCM Out 17 Switch=true
PCM Out 18 Switch=true
PCM Out 19 Switch=true
PCM Out 20 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
Analogue Out 7 Switch=true
Analogue Out 8 Switch=true
Analogue Out 9 Switch=true
Analogue Out 10 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
ADAT Out 1 Switch=true
ADAT Out 2 Switch=true
ADAT Out 3 Switch=true
ADAT Out 4 Switch=true
ADAT Out 5 Switch=true
ADAT Out 6 Switch=true
ADAT Out 7 Switch=true
ADAT Out 8 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
Mixer In 19 Switch=true
Mixer In 20 Switch=true
Mixer In 21 Switch=true
Mixer In 22 Switch=true
Mixer In 23 Switch=true
Mixer In 24 Switch=true
Mixer In 25 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
PCM In 15 Switch=true
PCM In 16 Switch=true
PCM In 17 Switch=true
PCM In 18 Switch=true
PCM In 19 Switch=true
PCM In 20 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 18i20.state 0000664 0000000 0000000 00001152737 15212330051 0023136 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.2 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.5 {
iface MIXER
name 'MSD Mode Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'Master HW Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.7 {
iface MIXER
name 'Line 01 (Monitor 1 L) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.8 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Line Out 01 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.10 {
iface MIXER
name 'Line 02 (Monitor 1 R) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.11 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.13 {
iface MIXER
name 'Line 03 (Monitor 2 L) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.14 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.15 {
iface MIXER
name 'Line Out 03 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.16 {
iface MIXER
name 'Line 04 (Monitor 2 R) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.17 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line Out 04 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.19 {
iface MIXER
name 'Line 05 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.20 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Line Out 05 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.22 {
iface MIXER
name 'Line 06 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.23 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Line Out 06 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.25 {
iface MIXER
name 'Line 07 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.26 {
iface MIXER
name 'Line 07 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.27 {
iface MIXER
name 'Line Out 07 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.28 {
iface MIXER
name 'Line 08 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.29 {
iface MIXER
name 'Line 08 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.30 {
iface MIXER
name 'Line Out 08 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.31 {
iface MIXER
name 'Line 09 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.32 {
iface MIXER
name 'Line 09 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.33 {
iface MIXER
name 'Line Out 09 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.34 {
iface MIXER
name 'Line 10 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.35 {
iface MIXER
name 'Line 10 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.36 {
iface MIXER
name 'Line Out 10 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.37 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.38 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.39 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.40 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.41 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.42 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.43 {
iface MIXER
name 'Line In 3 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.44 {
iface MIXER
name 'Line In 4 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.45 {
iface MIXER
name 'Line In 5 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.46 {
iface MIXER
name 'Line In 6 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.47 {
iface MIXER
name 'Line In 7 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.48 {
iface MIXER
name 'Line In 8 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.49 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.50 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.51 {
iface MIXER
name 'Line In 3 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.52 {
iface MIXER
name 'Line In 4 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.53 {
iface MIXER
name 'Line In 5 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.54 {
iface MIXER
name 'Line In 6 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.55 {
iface MIXER
name 'Line In 7 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.56 {
iface MIXER
name 'Line In 8 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.57 {
iface MIXER
name 'Line In 1-4 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.58 {
iface MIXER
name 'Line In 5-8 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.59 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.60 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.61 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.62 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.63 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.64 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.65 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.66 {
iface MIXER
name 'Analogue Output 07 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.67 {
iface MIXER
name 'Analogue Output 08 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.68 {
iface MIXER
name 'Analogue Output 09 Playback Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.69 {
iface MIXER
name 'Analogue Output 10 Playback Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.70 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.71 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.72 {
iface MIXER
name 'ADAT Output 1 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.73 {
iface MIXER
name 'ADAT Output 2 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.74 {
iface MIXER
name 'ADAT Output 3 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.75 {
iface MIXER
name 'ADAT Output 4 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.76 {
iface MIXER
name 'ADAT Output 5 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.77 {
iface MIXER
name 'ADAT Output 6 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.78 {
iface MIXER
name 'ADAT Output 7 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.79 {
iface MIXER
name 'ADAT Output 8 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.80 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.81 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.82 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.83 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.84 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.85 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.86 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.87 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.88 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.89 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.90 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.91 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.92 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.93 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.94 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.95 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.96 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.97 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.98 {
iface MIXER
name 'Mixer Input 19 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.99 {
iface MIXER
name 'Mixer Input 20 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.100 {
iface MIXER
name 'Mixer Input 21 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.101 {
iface MIXER
name 'Mixer Input 22 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.102 {
iface MIXER
name 'Mixer Input 23 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.103 {
iface MIXER
name 'Mixer Input 24 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.104 {
iface MIXER
name 'Mixer Input 25 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.105 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.106 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.107 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.108 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.109 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.110 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.111 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.112 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.113 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.114 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.115 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.116 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.117 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.118 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.119 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.120 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.121 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.122 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.123 {
iface MIXER
name 'PCM 19 Capture Enum'
value 'Analogue 9'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.124 {
iface MIXER
name 'PCM 20 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.125 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.126 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.127 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.128 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.130 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.131 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.132 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.133 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix A Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix A Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix A Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix A Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix A Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix A Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix A Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.151 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.152 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.154 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.155 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.156 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.157 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.158 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix B Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix B Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix B Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix B Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix B Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix B Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix B Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.178 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.180 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.181 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.182 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.183 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.184 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix C Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix C Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix C Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix C Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix C Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix C Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix C Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.204 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.205 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.206 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.207 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.208 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.210 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix D Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix D Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix D Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix D Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix D Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix D Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix D Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.240 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.242 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.243 {
iface MIXER
name 'Mix E Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.244 {
iface MIXER
name 'Mix E Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.245 {
iface MIXER
name 'Mix E Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.246 {
iface MIXER
name 'Mix E Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.247 {
iface MIXER
name 'Mix E Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.248 {
iface MIXER
name 'Mix E Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.249 {
iface MIXER
name 'Mix E Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.250 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.251 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.252 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.253 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.254 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.255 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.256 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.257 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.258 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.259 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.260 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.261 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.262 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.263 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.264 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.265 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.266 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.267 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.268 {
iface MIXER
name 'Mix F Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.269 {
iface MIXER
name 'Mix F Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.270 {
iface MIXER
name 'Mix F Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.271 {
iface MIXER
name 'Mix F Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.272 {
iface MIXER
name 'Mix F Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.273 {
iface MIXER
name 'Mix F Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.274 {
iface MIXER
name 'Mix F Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.275 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.276 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.277 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.278 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.279 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.280 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.281 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.282 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.283 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.284 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.285 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.286 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.287 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.288 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.289 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.290 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.291 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.292 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.293 {
iface MIXER
name 'Mix G Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.294 {
iface MIXER
name 'Mix G Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.295 {
iface MIXER
name 'Mix G Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.296 {
iface MIXER
name 'Mix G Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.297 {
iface MIXER
name 'Mix G Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.298 {
iface MIXER
name 'Mix G Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.299 {
iface MIXER
name 'Mix G Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.300 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.301 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.302 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.303 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.304 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.305 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.306 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.307 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.308 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.309 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.310 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.311 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.312 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.313 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.314 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.315 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.316 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.317 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.318 {
iface MIXER
name 'Mix H Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.319 {
iface MIXER
name 'Mix H Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.320 {
iface MIXER
name 'Mix H Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.321 {
iface MIXER
name 'Mix H Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.322 {
iface MIXER
name 'Mix H Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.323 {
iface MIXER
name 'Mix H Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.324 {
iface MIXER
name 'Mix H Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.325 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.326 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.327 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.328 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.329 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.330 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.331 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.332 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.333 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.334 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.335 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.336 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.337 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.338 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.339 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.340 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.341 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.342 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.343 {
iface MIXER
name 'Mix I Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.344 {
iface MIXER
name 'Mix I Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.345 {
iface MIXER
name 'Mix I Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.346 {
iface MIXER
name 'Mix I Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.347 {
iface MIXER
name 'Mix I Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.348 {
iface MIXER
name 'Mix I Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.349 {
iface MIXER
name 'Mix I Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.350 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.351 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.352 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.353 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.354 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.355 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.356 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.357 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.358 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.359 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.360 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.361 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.362 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.363 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.364 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.365 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.366 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.367 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.368 {
iface MIXER
name 'Mix J Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.369 {
iface MIXER
name 'Mix J Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.370 {
iface MIXER
name 'Mix J Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.371 {
iface MIXER
name 'Mix J Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.372 {
iface MIXER
name 'Mix J Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.373 {
iface MIXER
name 'Mix J Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.374 {
iface MIXER
name 'Mix J Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.375 {
iface MIXER
name 'Mix K Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.376 {
iface MIXER
name 'Mix K Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.377 {
iface MIXER
name 'Mix K Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.378 {
iface MIXER
name 'Mix K Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.379 {
iface MIXER
name 'Mix K Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.380 {
iface MIXER
name 'Mix K Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.381 {
iface MIXER
name 'Mix K Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.382 {
iface MIXER
name 'Mix K Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.383 {
iface MIXER
name 'Mix K Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.384 {
iface MIXER
name 'Mix K Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.385 {
iface MIXER
name 'Mix K Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.386 {
iface MIXER
name 'Mix K Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.387 {
iface MIXER
name 'Mix K Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.388 {
iface MIXER
name 'Mix K Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.389 {
iface MIXER
name 'Mix K Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.390 {
iface MIXER
name 'Mix K Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.391 {
iface MIXER
name 'Mix K Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.392 {
iface MIXER
name 'Mix K Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.393 {
iface MIXER
name 'Mix K Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.394 {
iface MIXER
name 'Mix K Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.395 {
iface MIXER
name 'Mix K Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.396 {
iface MIXER
name 'Mix K Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.397 {
iface MIXER
name 'Mix K Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.398 {
iface MIXER
name 'Mix K Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.399 {
iface MIXER
name 'Mix K Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.400 {
iface MIXER
name 'Mix L Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.401 {
iface MIXER
name 'Mix L Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.402 {
iface MIXER
name 'Mix L Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.403 {
iface MIXER
name 'Mix L Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.404 {
iface MIXER
name 'Mix L Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.405 {
iface MIXER
name 'Mix L Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.406 {
iface MIXER
name 'Mix L Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.407 {
iface MIXER
name 'Mix L Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.408 {
iface MIXER
name 'Mix L Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.409 {
iface MIXER
name 'Mix L Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.410 {
iface MIXER
name 'Mix L Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.411 {
iface MIXER
name 'Mix L Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.412 {
iface MIXER
name 'Mix L Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.413 {
iface MIXER
name 'Mix L Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.414 {
iface MIXER
name 'Mix L Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.415 {
iface MIXER
name 'Mix L Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.416 {
iface MIXER
name 'Mix L Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.417 {
iface MIXER
name 'Mix L Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.418 {
iface MIXER
name 'Mix L Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.419 {
iface MIXER
name 'Mix L Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.420 {
iface MIXER
name 'Mix L Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.421 {
iface MIXER
name 'Mix L Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.422 {
iface MIXER
name 'Mix L Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.423 {
iface MIXER
name 'Mix L Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.424 {
iface MIXER
name 'Mix L Input 25 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.425 {
iface PCM
name 'Level Meter'
value.0 4095
value.1 4095
value.2 0
value.3 1
value.4 4095
value.5 4095
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 4095
value.17 0
value.18 0
value.19 0
value.20 4095
value.21 4095
value.22 4095
value.23 1
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
value.44 0
value.45 0
value.46 0
value.47 0
value.48 4095
value.49 4095
value.50 0
value.51 0
value.52 0
value.53 0
value.54 0
value.55 0
value.56 0
value.57 0
value.58 0
value.59 0
value.60 0
value.61 0
value.62 0
value.63 0
value.64 0
comment {
access 'read volatile'
type INTEGER
count 65
range '0 - 4095 (step 1)'
}
}
control.426 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.427 {
iface MIXER
name 'Speaker Switching Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Main
item.2 Alt
}
}
control.428 {
iface MIXER
name 'Talkback Playback Enum'
value Disabled
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Disabled
item.1 Off
item.2 On
}
}
control.429 {
iface MIXER
name 'Talkback Mix A Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.430 {
iface MIXER
name 'Talkback Mix B Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.431 {
iface MIXER
name 'Talkback Mix C Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.432 {
iface MIXER
name 'Talkback Mix D Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.433 {
iface MIXER
name 'Talkback Mix E Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.434 {
iface MIXER
name 'Talkback Mix F Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.435 {
iface MIXER
name 'Talkback Mix G Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.436 {
iface MIXER
name 'Talkback Mix H Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.437 {
iface MIXER
name 'Talkback Mix I Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.438 {
iface MIXER
name 'Talkback Mix J Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.439 {
iface MIXER
name 'Talkback Mix K Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.440 {
iface MIXER
name 'Talkback Mix L Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.441 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
state.USB_1 {
control.1 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.2 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.5 {
iface CARD
name 'Firmware Version'
value 1644
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.7 {
iface MIXER
name 'Master HW Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.8 {
iface MIXER
name 'Line 01 (Monitor 1 L) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.9 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line Out 01 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.11 {
iface MIXER
name 'Line 02 (Monitor 1 R) Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.12 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.13 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.14 {
iface MIXER
name 'Line 03 (Monitor 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.15 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line Out 03 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.17 {
iface MIXER
name 'Line 04 (Monitor 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.18 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line Out 04 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.20 {
iface MIXER
name 'Line 05 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.21 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
iface MIXER
name 'Line Out 05 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.23 {
iface MIXER
name 'Line 06 Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.24 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.25 {
iface MIXER
name 'Line Out 06 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.26 {
iface MIXER
name 'Line 07 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.27 {
iface MIXER
name 'Line 07 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.28 {
iface MIXER
name 'Line Out 07 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.29 {
iface MIXER
name 'Line 08 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.30 {
iface MIXER
name 'Line 08 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.31 {
iface MIXER
name 'Line Out 08 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.32 {
iface MIXER
name 'Line 09 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.33 {
iface MIXER
name 'Line 09 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.34 {
iface MIXER
name 'Line Out 09 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.35 {
iface MIXER
name 'Line 10 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.36 {
iface MIXER
name 'Line 10 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.37 {
iface MIXER
name 'Line Out 10 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.38 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.39 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.40 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.41 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.42 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.43 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.44 {
iface MIXER
name 'Line In 3 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.45 {
iface MIXER
name 'Line In 4 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.46 {
iface MIXER
name 'Line In 5 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.47 {
iface MIXER
name 'Line In 6 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.48 {
iface MIXER
name 'Line In 7 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.49 {
iface MIXER
name 'Line In 8 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.50 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.51 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.52 {
iface MIXER
name 'Line In 3 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.53 {
iface MIXER
name 'Line In 4 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.54 {
iface MIXER
name 'Line In 5 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.55 {
iface MIXER
name 'Line In 6 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.56 {
iface MIXER
name 'Line In 7 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.57 {
iface MIXER
name 'Line In 8 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.58 {
iface MIXER
name 'Line In 1-4 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.59 {
iface MIXER
name 'Line In 5-8 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.60 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.61 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.62 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.63 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.64 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.65 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.66 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.67 {
iface MIXER
name 'Analogue Output 07 Playback Enum'
value 'PCM 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.68 {
iface MIXER
name 'Analogue Output 08 Playback Enum'
value 'PCM 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.69 {
iface MIXER
name 'Analogue Output 09 Playback Enum'
value 'PCM 9'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.70 {
iface MIXER
name 'Analogue Output 10 Playback Enum'
value 'PCM 10'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.71 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value 'PCM 11'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.72 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value 'PCM 12'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.73 {
iface MIXER
name 'ADAT Output 1 Playback Enum'
value 'PCM 13'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.74 {
iface MIXER
name 'ADAT Output 2 Playback Enum'
value 'PCM 14'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.75 {
iface MIXER
name 'ADAT Output 3 Playback Enum'
value 'PCM 15'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.76 {
iface MIXER
name 'ADAT Output 4 Playback Enum'
value 'PCM 16'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.77 {
iface MIXER
name 'ADAT Output 5 Playback Enum'
value 'PCM 17'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.78 {
iface MIXER
name 'ADAT Output 6 Playback Enum'
value 'PCM 18'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.79 {
iface MIXER
name 'ADAT Output 7 Playback Enum'
value 'PCM 19'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.80 {
iface MIXER
name 'ADAT Output 8 Playback Enum'
value 'PCM 20'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.81 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.82 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.83 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.84 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.85 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.86 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.87 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.88 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.89 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.90 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.91 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.92 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.93 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.94 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.95 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.96 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.97 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.98 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.99 {
iface MIXER
name 'Mixer Input 19 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.100 {
iface MIXER
name 'Mixer Input 20 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.101 {
iface MIXER
name 'Mixer Input 21 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.102 {
iface MIXER
name 'Mixer Input 22 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.103 {
iface MIXER
name 'Mixer Input 23 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.104 {
iface MIXER
name 'Mixer Input 24 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.105 {
iface MIXER
name 'Mixer Input 25 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.106 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.107 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.108 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.109 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.110 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.111 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.112 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.113 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.114 {
iface MIXER
name 'PCM 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.115 {
iface MIXER
name 'PCM 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.116 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.117 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.118 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.119 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.120 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.121 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.122 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.123 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.124 {
iface MIXER
name 'PCM 19 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.125 {
iface MIXER
name 'PCM 20 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'Mix A'
item.21 'Mix B'
item.22 'Mix C'
item.23 'Mix D'
item.24 'Mix E'
item.25 'Mix F'
item.26 'Mix G'
item.27 'Mix H'
item.28 'Mix I'
item.29 'Mix J'
item.30 'Mix K'
item.31 'Mix L'
item.32 'PCM 1'
item.33 'PCM 2'
item.34 'PCM 3'
item.35 'PCM 4'
item.36 'PCM 5'
item.37 'PCM 6'
item.38 'PCM 7'
item.39 'PCM 8'
item.40 'PCM 9'
item.41 'PCM 10'
item.42 'PCM 11'
item.43 'PCM 12'
item.44 'PCM 13'
item.45 'PCM 14'
item.46 'PCM 15'
item.47 'PCM 16'
item.48 'PCM 17'
item.49 'PCM 18'
item.50 'PCM 19'
item.51 'PCM 20'
}
}
control.126 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix A Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix A Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix A Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix A Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix A Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix A Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix A Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix B Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix B Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix B Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix B Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix B Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix B Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix B Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix C Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix C Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix C Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix C Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix C Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix C Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix C Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix D Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix D Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix D Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix D Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix D Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix D Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix D Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.240 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.242 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.243 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.244 {
iface MIXER
name 'Mix E Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.245 {
iface MIXER
name 'Mix E Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.246 {
iface MIXER
name 'Mix E Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.247 {
iface MIXER
name 'Mix E Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.248 {
iface MIXER
name 'Mix E Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.249 {
iface MIXER
name 'Mix E Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.250 {
iface MIXER
name 'Mix E Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.251 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.252 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.253 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.254 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.255 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.256 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.257 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.258 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.259 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.260 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.261 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.262 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.263 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.264 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.265 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.266 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.267 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.268 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.269 {
iface MIXER
name 'Mix F Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.270 {
iface MIXER
name 'Mix F Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.271 {
iface MIXER
name 'Mix F Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.272 {
iface MIXER
name 'Mix F Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.273 {
iface MIXER
name 'Mix F Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.274 {
iface MIXER
name 'Mix F Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.275 {
iface MIXER
name 'Mix F Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.276 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.277 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.278 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.279 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.280 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.281 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.282 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.283 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.284 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.285 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.286 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.287 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.288 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.289 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.290 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.291 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.292 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.293 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.294 {
iface MIXER
name 'Mix G Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.295 {
iface MIXER
name 'Mix G Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.296 {
iface MIXER
name 'Mix G Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.297 {
iface MIXER
name 'Mix G Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.298 {
iface MIXER
name 'Mix G Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.299 {
iface MIXER
name 'Mix G Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.300 {
iface MIXER
name 'Mix G Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.301 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.302 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.303 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.304 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.305 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.306 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.307 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.308 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.309 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.310 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.311 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.312 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.313 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.314 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.315 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.316 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.317 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.318 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.319 {
iface MIXER
name 'Mix H Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.320 {
iface MIXER
name 'Mix H Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.321 {
iface MIXER
name 'Mix H Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.322 {
iface MIXER
name 'Mix H Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.323 {
iface MIXER
name 'Mix H Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.324 {
iface MIXER
name 'Mix H Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.325 {
iface MIXER
name 'Mix H Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.326 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.327 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.328 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.329 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.330 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.331 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.332 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.333 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.334 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.335 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.336 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.337 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.338 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.339 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.340 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.341 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.342 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.343 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.344 {
iface MIXER
name 'Mix I Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.345 {
iface MIXER
name 'Mix I Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.346 {
iface MIXER
name 'Mix I Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.347 {
iface MIXER
name 'Mix I Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.348 {
iface MIXER
name 'Mix I Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.349 {
iface MIXER
name 'Mix I Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.350 {
iface MIXER
name 'Mix I Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.351 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.352 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.353 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.354 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.355 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.356 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.357 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.358 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.359 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.360 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.361 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.362 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.363 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.364 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.365 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.366 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.367 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.368 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.369 {
iface MIXER
name 'Mix J Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.370 {
iface MIXER
name 'Mix J Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.371 {
iface MIXER
name 'Mix J Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.372 {
iface MIXER
name 'Mix J Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.373 {
iface MIXER
name 'Mix J Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.374 {
iface MIXER
name 'Mix J Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.375 {
iface MIXER
name 'Mix J Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.376 {
iface MIXER
name 'Mix K Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.377 {
iface MIXER
name 'Mix K Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.378 {
iface MIXER
name 'Mix K Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.379 {
iface MIXER
name 'Mix K Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.380 {
iface MIXER
name 'Mix K Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.381 {
iface MIXER
name 'Mix K Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.382 {
iface MIXER
name 'Mix K Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.383 {
iface MIXER
name 'Mix K Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.384 {
iface MIXER
name 'Mix K Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.385 {
iface MIXER
name 'Mix K Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.386 {
iface MIXER
name 'Mix K Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.387 {
iface MIXER
name 'Mix K Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.388 {
iface MIXER
name 'Mix K Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.389 {
iface MIXER
name 'Mix K Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.390 {
iface MIXER
name 'Mix K Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.391 {
iface MIXER
name 'Mix K Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.392 {
iface MIXER
name 'Mix K Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.393 {
iface MIXER
name 'Mix K Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.394 {
iface MIXER
name 'Mix K Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.395 {
iface MIXER
name 'Mix K Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.396 {
iface MIXER
name 'Mix K Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.397 {
iface MIXER
name 'Mix K Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.398 {
iface MIXER
name 'Mix K Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.399 {
iface MIXER
name 'Mix K Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.400 {
iface MIXER
name 'Mix K Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.401 {
iface MIXER
name 'Mix L Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.402 {
iface MIXER
name 'Mix L Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.403 {
iface MIXER
name 'Mix L Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.404 {
iface MIXER
name 'Mix L Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.405 {
iface MIXER
name 'Mix L Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.406 {
iface MIXER
name 'Mix L Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.407 {
iface MIXER
name 'Mix L Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.408 {
iface MIXER
name 'Mix L Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.409 {
iface MIXER
name 'Mix L Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.410 {
iface MIXER
name 'Mix L Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.411 {
iface MIXER
name 'Mix L Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.412 {
iface MIXER
name 'Mix L Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.413 {
iface MIXER
name 'Mix L Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.414 {
iface MIXER
name 'Mix L Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.415 {
iface MIXER
name 'Mix L Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.416 {
iface MIXER
name 'Mix L Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.417 {
iface MIXER
name 'Mix L Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.418 {
iface MIXER
name 'Mix L Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.419 {
iface MIXER
name 'Mix L Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.420 {
iface MIXER
name 'Mix L Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.421 {
iface MIXER
name 'Mix L Input 21 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.422 {
iface MIXER
name 'Mix L Input 22 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.423 {
iface MIXER
name 'Mix L Input 23 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.424 {
iface MIXER
name 'Mix L Input 24 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.425 {
iface MIXER
name 'Mix L Input 25 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.426 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
value.44 0
value.45 4
value.46 2
value.47 1
value.48 1
value.49 1
value.50 1
value.51 1
value.52 1
value.53 0
value.54 0
value.55 0
value.56 0
value.57 0
value.58 0
value.59 0
value.60 0
value.61 0
value.62 0
value.63 0
value.64 0
comment {
access 'read volatile'
type INTEGER
count 65
range '0 - 4095 (step 1)'
}
}
control.427 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.428 {
iface MIXER
name 'Speaker Switching Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Main
item.2 Alt
}
}
control.429 {
iface MIXER
name 'Talkback Playback Enum'
value Disabled
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Disabled
item.1 Off
item.2 On
}
}
control.430 {
iface MIXER
name 'Talkback Mix A Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.431 {
iface MIXER
name 'Talkback Mix B Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.432 {
iface MIXER
name 'Talkback Mix C Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.433 {
iface MIXER
name 'Talkback Mix D Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.434 {
iface MIXER
name 'Talkback Mix E Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.435 {
iface MIXER
name 'Talkback Mix F Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.436 {
iface MIXER
name 'Talkback Mix G Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.437 {
iface MIXER
name 'Talkback Mix H Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.438 {
iface MIXER
name 'Talkback Mix I Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.439 {
iface MIXER
name 'Talkback Mix J Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.440 {
iface MIXER
name 'Talkback Mix K Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.441 {
iface MIXER
name 'Talkback Mix L Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.442 {
iface MIXER
name 'Standalone Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.443 {
iface MIXER
name 'Digital I/O Mode Capture Enum'
value 'S/PDIF RCA'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'S/PDIF RCA'
item.1 'S/PDIF Optical'
item.2 'Dual ADAT'
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 18i8.conf 0000664 0000000 0000000 00000031741 15212330051 0022657 0 ustar 00root root 0000000 0000000 [device]
serial=F9MHN5C0A05BC8
model=Scarlett 18i8 USB
[controls]
Clock Source Clock Source=Internal
Line Out 01 Volume Control Playback Enum=HW
Line Out 02 Volume Control Playback Enum=HW
Line 03 (Alt Monitor L) Playback Volume=127
Line 03 Mute Playback Switch=false
Line Out 03 Volume Control Playback Enum=SW
Line 04 (Alt Monitor R) Playback Volume=127
Line 04 Mute Playback Switch=false
Line Out 04 Volume Control Playback Enum=SW
Line 05 (Headphones 1 L) Playback Volume=127
Line 05 Mute Playback Switch=false
Line Out 05 Volume Control Playback Enum=SW
Line 06 (Headphones 1 R) Playback Volume=127
Line 06 Mute Playback Switch=false
Line Out 06 Volume Control Playback Enum=SW
Line 07 (Headphones 2 L) Playback Volume=127
Line 07 Mute Playback Switch=false
Line Out 07 Volume Control Playback Enum=SW
Line 08 (Headphones 2 R) Playback Volume=127
Line 08 Mute Playback Switch=false
Line Out 08 Volume Control Playback Enum=SW
Mute Playback Switch=false
Dim Playback Switch=false
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Pad Capture Switch=false
Line In 2 Pad Capture Switch=false
Line In 3 Pad Capture Switch=false
Line In 4 Pad Capture Switch=false
Line In 1 Air Capture Switch=false
Line In 2 Air Capture Switch=false
Line In 3 Air Capture Switch=false
Line In 4 Air Capture Switch=false
Line In 1-2 Phantom Power Capture Switch=false
Line In 3-4 Phantom Power Capture Switch=false
Phantom Power Persistence Capture Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
Analogue Output 05 Playback Enum=PCM 3
Analogue Output 06 Playback Enum=PCM 4
Analogue Output 07 Playback Enum=PCM 5
Analogue Output 08 Playback Enum=PCM 6
S/PDIF Output 1 Playback Enum=PCM 7
S/PDIF Output 2 Playback Enum=PCM 8
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
Mixer Input 09 Capture Enum=Off
Mixer Input 10 Capture Enum=Off
Mixer Input 11 Capture Enum=Off
Mixer Input 12 Capture Enum=Off
Mixer Input 13 Capture Enum=Off
Mixer Input 14 Capture Enum=Off
Mixer Input 15 Capture Enum=Off
Mixer Input 16 Capture Enum=Off
Mixer Input 17 Capture Enum=Off
Mixer Input 18 Capture Enum=Off
Mixer Input 19 Capture Enum=Off
Mixer Input 20 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=Analogue 5
PCM 06 Capture Enum=Analogue 6
PCM 07 Capture Enum=Analogue 7
PCM 08 Capture Enum=Analogue 8
PCM 09 Capture Enum=S/PDIF 1
PCM 10 Capture Enum=S/PDIF 2
PCM 11 Capture Enum=Off
PCM 12 Capture Enum=Off
PCM 13 Capture Enum=ADAT 1
PCM 14 Capture Enum=ADAT 2
PCM 15 Capture Enum=ADAT 3
PCM 16 Capture Enum=ADAT 4
PCM 17 Capture Enum=ADAT 5
PCM 18 Capture Enum=ADAT 6
PCM 19 Capture Enum=ADAT 7
PCM 20 Capture Enum=ADAT 8
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix A Input 19 Playback Volume=0
Mix A Input 20 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix B Input 19 Playback Volume=0
Mix B Input 20 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix C Input 19 Playback Volume=0
Mix C Input 20 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix D Input 19 Playback Volume=0
Mix D Input 20 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix E Input 19 Playback Volume=0
Mix E Input 20 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix F Input 19 Playback Volume=0
Mix F Input 20 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix G Input 19 Playback Volume=0
Mix G Input 20 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix H Input 19 Playback Volume=0
Mix H Input 20 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=0
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix I Input 19 Playback Volume=0
Mix I Input 20 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=0
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Mix J Input 19 Playback Volume=0
Mix J Input 20 Playback Volume=0
Speaker Switching Playback Enum=Off
Standalone Switch=false
S/PDIF Mode Capture Enum=RCA
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
Analogue In 7 Name=
Analogue In 8 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
PCM Out 7 Name=
PCM Out 8 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
Analogue Out 7 Name=
Analogue Out 8 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
Mixer In 19 Name=
Mixer In 20 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
PCM In 15 Name=
PCM In 16 Name=
PCM In 17 Name=
PCM In 18 Name=
PCM In 19 Name=
PCM In 20 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
Analogue In 7 Switch=true
Analogue In 8 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
PCM Out 7 Switch=true
PCM Out 8 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
Analogue Out 7 Switch=true
Analogue Out 8 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
Mixer In 19 Switch=true
Mixer In 20 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
PCM In 15 Switch=true
PCM In 16 Switch=true
PCM In 17 Switch=true
PCM In 18 Switch=true
PCM In 19 Switch=true
PCM In 20 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 18i8.state 0000664 0000000 0000000 00000601210 15212330051 0023044 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
comment {
access read
type INTEGER
count 8
range '0 - 36'
}
}
control.2 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.6 {
iface MIXER
name 'Master HW Playback Volume'
value 118
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -900
}
}
control.7 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 118
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -900
}
}
control.8 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Line Out 01 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.10 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 118
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -900
}
}
control.11 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.13 {
iface MIXER
name 'Line 03 (Alt Monitor L) Playback Volume'
value 118
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -900
}
}
control.14 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.15 {
iface MIXER
name 'Line Out 03 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.16 {
iface MIXER
name 'Line 04 (Alt Monitor R) Playback Volume'
value 118
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -900
}
}
control.17 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line Out 04 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.19 {
iface MIXER
name 'Line 05 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.20 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Line Out 05 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.22 {
iface MIXER
name 'Line 06 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.23 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Line Out 06 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.25 {
iface MIXER
name 'Line 07 (Headphones 2 L) Playback Volume'
value 118
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -900
}
}
control.26 {
iface MIXER
name 'Line 07 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.27 {
iface MIXER
name 'Line Out 07 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.28 {
iface MIXER
name 'Line 08 (Headphones 2 R) Playback Volume'
value 118
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -900
}
}
control.29 {
iface MIXER
name 'Line 08 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.30 {
iface MIXER
name 'Line Out 08 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.31 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.32 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.33 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.34 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.35 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.36 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.37 {
iface MIXER
name 'Line In 3 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.38 {
iface MIXER
name 'Line In 4 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.39 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.40 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.41 {
iface MIXER
name 'Line In 3 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.42 {
iface MIXER
name 'Line In 4 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.43 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.44 {
iface MIXER
name 'Line In 3-4 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.45 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.46 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix G'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.47 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix H'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.48 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.49 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.50 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.51 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.52 {
iface MIXER
name 'Analogue Output 07 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.53 {
iface MIXER
name 'Analogue Output 08 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.54 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.55 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.56 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.57 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.58 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.59 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.60 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.61 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.62 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.63 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.64 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.65 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.66 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.67 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.68 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.69 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.70 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.71 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.72 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.73 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.74 {
iface MIXER
name 'Mixer Input 19 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.75 {
iface MIXER
name 'Mixer Input 20 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.76 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.77 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.78 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.79 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.80 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.81 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.82 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.83 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.84 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.85 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.86 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.87 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.88 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.89 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.90 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.91 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.92 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.93 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.94 {
iface MIXER
name 'PCM 19 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.95 {
iface MIXER
name 'PCM 20 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.96 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.97 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.99 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix A Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix A Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.118 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.120 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix B Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix B Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.137 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.139 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.141 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix C Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix C Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.158 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.160 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.162 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix D Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix D Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix E Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix E Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix F Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix F Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.219 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.221 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix G Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix G Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.240 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.242 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.243 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.244 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.245 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.246 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.247 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.248 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.249 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.250 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.251 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.252 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.253 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.254 {
iface MIXER
name 'Mix H Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.255 {
iface MIXER
name 'Mix H Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.256 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.257 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.258 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.259 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.260 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.261 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.262 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.263 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.264 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.265 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.266 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.267 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.268 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.269 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.270 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.271 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.272 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.273 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.274 {
iface MIXER
name 'Mix I Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.275 {
iface MIXER
name 'Mix I Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.276 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.277 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.278 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.279 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.280 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.281 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.282 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.283 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.284 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.285 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.286 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.287 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.288 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.289 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.290 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.291 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.292 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.293 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.294 {
iface MIXER
name 'Mix J Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.295 {
iface MIXER
name 'Mix J Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.296 {
iface PCM
name 'Level Meter'
value.0 1674
value.1 1646
value.2 1674
value.3 1646
value.4 0
value.5 1
value.6 0
value.7 1
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 1
value.20 1674
value.21 1646
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 92
value.31 454
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
value.44 0
value.45 0
value.46 0
value.47 0
value.48 0
value.49 0
comment {
access 'read volatile'
type INTEGER
count 50
range '0 - 4095 (step 1)'
}
}
control.297 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.298 {
iface MIXER
name 'Speaker Switching Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Main
item.2 Alt
}
}
}
state.USB_2 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 3
value.1 4
value.2 7
value.3 8
value.4 5
value.5 6
value.6 12
value.7 13
comment {
access 'read volatile'
type INTEGER
count 8
range '0 - 36'
}
}
control.2 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.6 {
iface CARD
name 'Firmware Version'
value 1605
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.7 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.8 {
iface MIXER
name 'Master HW Playback Volume'
value 54
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -7300
}
}
control.9 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 54
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -7300
}
}
control.10 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.11 {
iface MIXER
name 'Line Out 01 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.12 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 54
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -7300
}
}
control.13 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access read
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value HW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.15 {
iface MIXER
name 'Line 03 (Alt Monitor L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.16 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line Out 03 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.18 {
iface MIXER
name 'Line 04 (Alt Monitor R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.19 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Line Out 04 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.21 {
iface MIXER
name 'Line 05 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.22 {
iface MIXER
name 'Line 05 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Line Out 05 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.24 {
iface MIXER
name 'Line 06 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.25 {
iface MIXER
name 'Line 06 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface MIXER
name 'Line Out 06 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.27 {
iface MIXER
name 'Line 07 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.28 {
iface MIXER
name 'Line 07 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.29 {
iface MIXER
name 'Line Out 07 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.30 {
iface MIXER
name 'Line 08 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.31 {
iface MIXER
name 'Line 08 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.32 {
iface MIXER
name 'Line Out 08 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.33 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.34 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.35 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.36 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.37 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.38 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.39 {
iface MIXER
name 'Line In 3 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.40 {
iface MIXER
name 'Line In 4 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.41 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.42 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.43 {
iface MIXER
name 'Line In 3 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.44 {
iface MIXER
name 'Line In 4 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.45 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.46 {
iface MIXER
name 'Line In 3-4 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.47 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.48 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.49 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.50 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.51 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.52 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.53 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.54 {
iface MIXER
name 'Analogue Output 07 Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.55 {
iface MIXER
name 'Analogue Output 08 Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.56 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value 'PCM 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.57 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value 'PCM 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.58 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.59 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.60 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.61 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.62 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.63 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.64 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.65 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.66 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.67 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.68 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.69 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.70 {
iface MIXER
name 'Mixer Input 13 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.71 {
iface MIXER
name 'Mixer Input 14 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.72 {
iface MIXER
name 'Mixer Input 15 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.73 {
iface MIXER
name 'Mixer Input 16 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.74 {
iface MIXER
name 'Mixer Input 17 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.75 {
iface MIXER
name 'Mixer Input 18 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.76 {
iface MIXER
name 'Mixer Input 19 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.77 {
iface MIXER
name 'Mixer Input 20 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.78 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.79 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.80 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.81 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.82 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.83 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.84 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.85 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.86 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.87 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.88 {
iface MIXER
name 'PCM 11 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.89 {
iface MIXER
name 'PCM 12 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.90 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.91 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.92 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.93 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.94 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.95 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.96 {
iface MIXER
name 'PCM 19 Capture Enum'
value 'ADAT 7'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.97 {
iface MIXER
name 'PCM 20 Capture Enum'
value 'ADAT 8'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
item.31 'PCM 3'
item.32 'PCM 4'
item.33 'PCM 5'
item.34 'PCM 6'
item.35 'PCM 7'
item.36 'PCM 8'
}
}
control.98 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix A Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.117 {
iface MIXER
name 'Mix A Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.121 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.122 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.126 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.128 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.130 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.133 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.134 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.135 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix B Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix B Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.139 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.141 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.145 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.146 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.148 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.152 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.154 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix C Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.157 {
iface MIXER
name 'Mix C Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.158 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.159 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.161 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.165 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.169 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.170 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.172 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.174 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix D Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix D Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.178 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.191 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix E Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix E Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.204 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.205 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.206 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.207 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.208 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.209 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.210 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.211 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.212 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.213 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.214 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.215 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.216 {
iface MIXER
name 'Mix F Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.217 {
iface MIXER
name 'Mix F Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.218 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.219 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.220 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.221 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.222 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.223 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.224 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.225 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.226 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.227 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.228 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.229 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.230 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.231 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.232 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.233 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.234 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.235 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.236 {
iface MIXER
name 'Mix G Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.237 {
iface MIXER
name 'Mix G Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.238 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.239 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.240 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.241 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.242 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.243 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.244 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.245 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.246 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.247 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.248 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.249 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.250 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.251 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.252 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.253 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.254 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.255 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.256 {
iface MIXER
name 'Mix H Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.257 {
iface MIXER
name 'Mix H Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.258 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.259 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.260 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.261 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.262 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.263 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.264 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.265 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.266 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.267 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.268 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.269 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.270 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.271 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.272 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.273 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.274 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.275 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.276 {
iface MIXER
name 'Mix I Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.277 {
iface MIXER
name 'Mix I Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.278 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.279 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.280 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.281 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.282 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.283 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.284 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.285 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.286 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.287 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.288 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.289 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.290 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.291 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.292 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.293 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.294 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.295 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.296 {
iface MIXER
name 'Mix J Input 19 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.297 {
iface MIXER
name 'Mix J Input 20 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.298 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 1422
value.3 0
value.4 1422
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
value.44 0
value.45 0
value.46 0
value.47 0
value.48 0
value.49 0
comment {
access 'read volatile'
type INTEGER
count 50
range '0 - 4095 (step 1)'
}
}
control.299 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.300 {
iface MIXER
name 'Speaker Switching Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Main
item.2 Alt
}
}
control.301 {
iface MIXER
name 'Standalone Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.302 {
iface MIXER
name 'S/PDIF Mode Capture Enum'
value RCA
comment {
access 'read write'
type ENUMERATED
count 1
item.0 RCA
item.1 Optical
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 2i2.state 0000664 0000000 0000000 00000003137 15212330051 0022753 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
comment {
access read
type INTEGER
count 2
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
comment {
access read
type INTEGER
count 2
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.5 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.6 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Direct Monitor Playback Enum'
value Mono
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Mono
item.2 Stereo
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 4i4.conf 0000664 0000000 0000000 00000010134 15212330051 0022557 0 ustar 00root root 0000000 0000000 [device]
serial=D8UKG8Q9501DBE
model=Scarlett 4i4 USB
[controls]
Line 01 (Monitor L) Playback Volume=127
Line 01 Mute Playback Switch=false
Line 02 (Monitor R) Playback Volume=127
Line 02 Mute Playback Switch=false
Line 03 (Headphones L) Playback Volume=127
Line 03 Mute Playback Switch=false
Line 04 (Headphones R) Playback Volume=127
Line 04 Mute Playback Switch=false
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Pad Capture Switch=false
Line In 2 Pad Capture Switch=false
Line In 1 Air Capture Switch=false
Line In 2 Air Capture Switch=false
Line In 1-2 Phantom Power Capture Switch=false
Phantom Power Persistence Capture Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=Off
PCM 06 Capture Enum=Off
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Standalone Switch=false
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 4i4.state 0000664 0000000 0000000 00000130602 15212330051 0022755 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
comment {
access read
type INTEGER
count 4
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access read
type INTEGER
count 6
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.5 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.7 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line 03 (Headphones L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.9 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line 04 (Headphones R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.11 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.13 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.14 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.15 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.21 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.22 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.23 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.24 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.25 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.26 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.27 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.28 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.29 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.30 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.31 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.32 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.33 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.34 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.35 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.36 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.37 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.38 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.39 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.40 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.41 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.42 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.43 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.44 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.45 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.46 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.47 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.48 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.49 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.50 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.51 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.53 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.54 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.55 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.56 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.57 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.58 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.59 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.61 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.62 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.64 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.66 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.68 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.71 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.75 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.79 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.84 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.86 {
iface PCM
name 'Level Meter'
value.0 11
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 1
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 1
value.14 0
value.15 0
value.16 9
value.17 9
comment {
access 'read volatile'
type INTEGER
count 18
range '0 - 4095 (step 1)'
}
}
control.87 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
}
state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
comment {
access 'read volatile'
type INTEGER
count 4
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access 'read volatile'
type INTEGER
count 6
range '0 - 36'
}
}
control.3 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 1605
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.7 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line 02 (Monitor R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.9 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line 03 (Headphones L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.11 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line 04 (Headphones R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.13 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.15 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.16 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.23 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.24 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.25 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.26 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.27 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.28 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.29 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.30 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.31 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.32 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.33 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.34 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.35 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.36 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.37 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.38 {
iface MIXER
name 'PCM 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.39 {
iface MIXER
name 'PCM 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'PCM 1'
item.12 'PCM 2'
item.13 'PCM 3'
item.14 'PCM 4'
}
}
control.40 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.41 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.42 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.43 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.44 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.45 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.46 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.47 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.48 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.49 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.50 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.51 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.53 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.54 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.55 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.56 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.57 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.58 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.59 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.61 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.62 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.64 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.66 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 1
value.13 1
value.14 1
value.15 1
value.16 0
value.17 0
comment {
access 'read volatile'
type INTEGER
count 18
range '0 - 4095 (step 1)'
}
}
control.89 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.90 {
iface MIXER
name 'Standalone Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 8i6.conf 0000664 0000000 0000000 00000012627 15212330051 0022576 0 ustar 00root root 0000000 0000000 [device]
serial=F8KV9KK130A289
model=Scarlett 8i6 USB
[controls]
Clock Source Clock Source=Internal
Line 01 (Headphones 1 L) Playback Volume=127
Line 01 Mute Playback Switch=false
Line 02 (Headphones 1 R) Playback Volume=127
Line 02 Mute Playback Switch=false
Line 03 (Headphones 2 L) Playback Volume=127
Line 03 Mute Playback Switch=false
Line 04 (Headphones 2 R) Playback Volume=127
Line 04 Mute Playback Switch=false
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Pad Capture Switch=false
Line In 2 Pad Capture Switch=false
Line In 1 Air Capture Switch=false
Line In 2 Air Capture Switch=false
Line In 1-2 Phantom Power Capture Switch=false
Phantom Power Persistence Capture Switch=false
Analogue Output 01 Playback Enum=PCM 1
Analogue Output 02 Playback Enum=PCM 2
Analogue Output 03 Playback Enum=PCM 3
Analogue Output 04 Playback Enum=PCM 4
S/PDIF Output 1 Playback Enum=PCM 5
S/PDIF Output 2 Playback Enum=PCM 6
Mixer Input 01 Capture Enum=Off
Mixer Input 02 Capture Enum=Off
Mixer Input 03 Capture Enum=Off
Mixer Input 04 Capture Enum=Off
Mixer Input 05 Capture Enum=Off
Mixer Input 06 Capture Enum=Off
Mixer Input 07 Capture Enum=Off
Mixer Input 08 Capture Enum=Off
PCM 01 Capture Enum=Analogue 1
PCM 02 Capture Enum=Analogue 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=Analogue 5
PCM 06 Capture Enum=Analogue 6
PCM 07 Capture Enum=S/PDIF 1
PCM 08 Capture Enum=S/PDIF 2
PCM 09 Capture Enum=Off
PCM 10 Capture Enum=Off
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Standalone Switch=false
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 8i6.state 0000664 0000000 0000000 00000202471 15212330051 0022767 0 ustar 00root root 0000000 0000000 state.USB {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access read
type INTEGER
count 6
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
comment {
access read
type INTEGER
count 10
range '0 - 36'
}
}
control.3 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
}
}
control.6 {
iface MIXER
name 'Line 01 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.7 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line 02 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.9 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line 03 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.11 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line 04 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.13 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.15 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.16 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.23 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.24 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.25 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.26 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.27 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.28 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.29 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.30 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.31 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.32 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.33 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.34 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.35 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.36 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.37 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.38 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.39 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.40 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.41 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.42 {
iface MIXER
name 'PCM 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.43 {
iface MIXER
name 'PCM 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.44 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.45 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.46 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.47 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.48 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.49 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.50 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.51 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.53 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.54 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.55 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.56 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.57 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.58 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.59 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.61 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.62 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.63 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.64 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.65 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.66 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.67 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.72 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.74 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.76 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.89 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.110 {
iface PCM
name 'Level Meter'
value.0 0
value.1 2
value.2 3
value.3 2
value.4 1
value.5 1
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 2
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
comment {
access 'read volatile'
type INTEGER
count 24
range '0 - 4095 (step 1)'
}
}
control.111 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
}
state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access 'read volatile'
type INTEGER
count 6
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
comment {
access 'read volatile'
type INTEGER
count 10
range '0 - 36'
}
}
control.3 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
}
}
control.6 {
iface CARD
name 'Firmware Version'
value 1605
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.7 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.8 {
iface MIXER
name 'Line 01 (Headphones 1 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.9 {
iface MIXER
name 'Line 01 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Line 02 (Headphones 1 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.11 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
iface MIXER
name 'Line 03 (Headphones 2 L) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.13 {
iface MIXER
name 'Line 03 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line 04 (Headphones 2 R) Playback Volume'
value 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.15 {
iface MIXER
name 'Line 04 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.17 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.18 {
iface MIXER
name 'Line In 1 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line In 2 Pad Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.25 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.26 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.27 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.28 {
iface MIXER
name 'S/PDIF Output 1 Playback Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.29 {
iface MIXER
name 'S/PDIF Output 2 Playback Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.30 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.31 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.32 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.33 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.34 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.35 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.36 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.37 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.38 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.39 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.40 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.41 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.42 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.43 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.44 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.45 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.46 {
iface MIXER
name 'PCM 09 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.47 {
iface MIXER
name 'PCM 10 Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'Mix A'
item.10 'Mix B'
item.11 'Mix C'
item.12 'Mix D'
item.13 'Mix E'
item.14 'Mix F'
item.15 'Mix G'
item.16 'Mix H'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
}
}
control.48 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.49 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.50 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.51 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.53 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.54 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.55 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.56 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.57 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.58 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.59 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.61 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.62 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.64 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.66 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.89 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 1
value.15 1
value.16 1
value.17 1
value.18 1
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
comment {
access 'read volatile'
type INTEGER
count 24
range '0 - 4095 (step 1)'
}
}
control.113 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.114 {
iface MIXER
name 'Standalone Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 Solo.conf 0000664 0000000 0000000 00000000417 15212330051 0023076 0 ustar 00root root 0000000 0000000 [device]
serial=Y74UTY80A620C1
model=Scarlett Solo USB
[controls]
Line In 2 Level Capture Enum=Line
Line In 1 Air Capture Switch=false
Line In 1 Phantom Power Capture Switch=false
Phantom Power Persistence Capture Switch=false
Direct Monitor Playback Switch=false
Name=
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 3 Solo.state 0000664 0000000 0000000 00000036560 15212330051 0023301 0 ustar 00root root 0000000 0000000 state.Gen {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
comment {
access read
type INTEGER
count 2
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
comment {
access read
type INTEGER
count 4
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 2115
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 2115
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'MSD Mode Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.8 {
iface MIXER
name 'Line In 2 Air Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.9 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'PCM Input Capture Switch'
value Direct
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Direct
item.1 Mixer
}
}
control.11 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.12 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.13 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.14 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.15 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.16 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.17 {
iface MIXER
name 'DSP Input 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.18 {
iface MIXER
name 'DSP Input 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.19 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.20 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.21 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.22 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.23 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.24 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.25 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.26 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.27 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.28 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.29 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.30 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.31 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.32 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.33 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.34 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.35 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.36 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.37 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.38 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.39 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.40 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.41 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 144
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -800
}
}
control.42 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 144
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -800
}
}
control.43 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.44 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.45 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 144
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -800
}
}
control.46 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 144
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -800
}
}
control.47 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 3
value.6 0
value.7 3
value.8 0
value.9 3
value.10 0
value.11 0
comment {
access 'read volatile'
type INTEGER
count 12
range '0 - 4095 (step 1)'
}
}
control.48 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.49 {
iface MIXER
name 'Direct Monitor Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.50 {
iface MIXER
name 'Monitor Mix A Input 01 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -500
}
}
control.51 {
iface MIXER
name 'Monitor Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Monitor Mix A Input 03 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -300
}
}
control.53 {
iface MIXER
name 'Monitor Mix A Input 04 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -300
}
}
control.54 {
iface MIXER
name 'Monitor Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.55 {
iface MIXER
name 'Monitor Mix B Input 02 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -500
}
}
control.56 {
iface MIXER
name 'Monitor Mix B Input 03 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -300
}
}
control.57 {
iface MIXER
name 'Monitor Mix B Input 04 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -300
}
}
}
state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
comment {
access 'read volatile'
type INTEGER
count 2
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
comment {
access 'read volatile'
type INTEGER
count 2
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 1605
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.7 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface MIXER
name 'Direct Monitor Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 16i16.conf 0000664 0000000 0000000 00000061055 15212330051 0022736 0 ustar 00root root 0000000 0000000 [device]
serial=S6ES0004100059
model=Scarlett 16i16 4th Gen
[controls]
Clock Source Clock Source=Internal
Mix A Input 01 Playback Volume=8192
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix A Input 19 Playback Volume=0
Mix A Input 20 Playback Volume=0
Mix A Input 21 Playback Volume=0
Mix A Input 22 Playback Volume=0
Mix A Input 23 Playback Volume=0
Mix A Input 24 Playback Volume=0
Mix A Input 25 Playback Volume=0
Mix A Input 26 Playback Volume=0
Mix A Input 27 Playback Volume=0
Mix A Input 28 Playback Volume=0
Mix A Input 29 Playback Volume=0
Mix A Input 30 Playback Volume=0
Mix A Input 31 Playback Volume=0
Mix A Input 32 Playback Volume=0
Mix A Input 33 Playback Volume=0
Mix A Input 34 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=8192
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix B Input 19 Playback Volume=0
Mix B Input 20 Playback Volume=0
Mix B Input 21 Playback Volume=0
Mix B Input 22 Playback Volume=0
Mix B Input 23 Playback Volume=0
Mix B Input 24 Playback Volume=0
Mix B Input 25 Playback Volume=0
Mix B Input 26 Playback Volume=0
Mix B Input 27 Playback Volume=0
Mix B Input 28 Playback Volume=0
Mix B Input 29 Playback Volume=0
Mix B Input 30 Playback Volume=0
Mix B Input 31 Playback Volume=0
Mix B Input 32 Playback Volume=0
Mix B Input 33 Playback Volume=0
Mix B Input 34 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=8192
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix C Input 19 Playback Volume=0
Mix C Input 20 Playback Volume=0
Mix C Input 21 Playback Volume=0
Mix C Input 22 Playback Volume=0
Mix C Input 23 Playback Volume=0
Mix C Input 24 Playback Volume=0
Mix C Input 25 Playback Volume=0
Mix C Input 26 Playback Volume=0
Mix C Input 27 Playback Volume=0
Mix C Input 28 Playback Volume=0
Mix C Input 29 Playback Volume=0
Mix C Input 30 Playback Volume=0
Mix C Input 31 Playback Volume=0
Mix C Input 32 Playback Volume=0
Mix C Input 33 Playback Volume=0
Mix C Input 34 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=8192
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix D Input 19 Playback Volume=0
Mix D Input 20 Playback Volume=0
Mix D Input 21 Playback Volume=0
Mix D Input 22 Playback Volume=0
Mix D Input 23 Playback Volume=0
Mix D Input 24 Playback Volume=0
Mix D Input 25 Playback Volume=0
Mix D Input 26 Playback Volume=0
Mix D Input 27 Playback Volume=0
Mix D Input 28 Playback Volume=0
Mix D Input 29 Playback Volume=0
Mix D Input 30 Playback Volume=0
Mix D Input 31 Playback Volume=0
Mix D Input 32 Playback Volume=0
Mix D Input 33 Playback Volume=0
Mix D Input 34 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=8192
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix E Input 19 Playback Volume=0
Mix E Input 20 Playback Volume=0
Mix E Input 21 Playback Volume=0
Mix E Input 22 Playback Volume=0
Mix E Input 23 Playback Volume=0
Mix E Input 24 Playback Volume=0
Mix E Input 25 Playback Volume=0
Mix E Input 26 Playback Volume=0
Mix E Input 27 Playback Volume=0
Mix E Input 28 Playback Volume=0
Mix E Input 29 Playback Volume=0
Mix E Input 30 Playback Volume=0
Mix E Input 31 Playback Volume=0
Mix E Input 32 Playback Volume=0
Mix E Input 33 Playback Volume=0
Mix E Input 34 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=8192
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix F Input 19 Playback Volume=0
Mix F Input 20 Playback Volume=0
Mix F Input 21 Playback Volume=0
Mix F Input 22 Playback Volume=0
Mix F Input 23 Playback Volume=0
Mix F Input 24 Playback Volume=0
Mix F Input 25 Playback Volume=0
Mix F Input 26 Playback Volume=0
Mix F Input 27 Playback Volume=0
Mix F Input 28 Playback Volume=0
Mix F Input 29 Playback Volume=0
Mix F Input 30 Playback Volume=0
Mix F Input 31 Playback Volume=0
Mix F Input 32 Playback Volume=0
Mix F Input 33 Playback Volume=0
Mix F Input 34 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=8192
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix G Input 19 Playback Volume=0
Mix G Input 20 Playback Volume=0
Mix G Input 21 Playback Volume=0
Mix G Input 22 Playback Volume=0
Mix G Input 23 Playback Volume=0
Mix G Input 24 Playback Volume=0
Mix G Input 25 Playback Volume=0
Mix G Input 26 Playback Volume=0
Mix G Input 27 Playback Volume=0
Mix G Input 28 Playback Volume=0
Mix G Input 29 Playback Volume=0
Mix G Input 30 Playback Volume=0
Mix G Input 31 Playback Volume=0
Mix G Input 32 Playback Volume=0
Mix G Input 33 Playback Volume=0
Mix G Input 34 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=8192
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix H Input 19 Playback Volume=0
Mix H Input 20 Playback Volume=0
Mix H Input 21 Playback Volume=0
Mix H Input 22 Playback Volume=0
Mix H Input 23 Playback Volume=0
Mix H Input 24 Playback Volume=0
Mix H Input 25 Playback Volume=0
Mix H Input 26 Playback Volume=0
Mix H Input 27 Playback Volume=0
Mix H Input 28 Playback Volume=0
Mix H Input 29 Playback Volume=0
Mix H Input 30 Playback Volume=0
Mix H Input 31 Playback Volume=0
Mix H Input 32 Playback Volume=0
Mix H Input 33 Playback Volume=0
Mix H Input 34 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=8192
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix I Input 19 Playback Volume=0
Mix I Input 20 Playback Volume=0
Mix I Input 21 Playback Volume=0
Mix I Input 22 Playback Volume=0
Mix I Input 23 Playback Volume=0
Mix I Input 24 Playback Volume=0
Mix I Input 25 Playback Volume=0
Mix I Input 26 Playback Volume=0
Mix I Input 27 Playback Volume=0
Mix I Input 28 Playback Volume=0
Mix I Input 29 Playback Volume=0
Mix I Input 30 Playback Volume=0
Mix I Input 31 Playback Volume=0
Mix I Input 32 Playback Volume=0
Mix I Input 33 Playback Volume=0
Mix I Input 34 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=8192
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Mix J Input 19 Playback Volume=0
Mix J Input 20 Playback Volume=0
Mix J Input 21 Playback Volume=0
Mix J Input 22 Playback Volume=0
Mix J Input 23 Playback Volume=0
Mix J Input 24 Playback Volume=0
Mix J Input 25 Playback Volume=0
Mix J Input 26 Playback Volume=0
Mix J Input 27 Playback Volume=0
Mix J Input 28 Playback Volume=0
Mix J Input 29 Playback Volume=0
Mix J Input 30 Playback Volume=0
Mix J Input 31 Playback Volume=0
Mix J Input 32 Playback Volume=0
Mix J Input 33 Playback Volume=0
Mix J Input 34 Playback Volume=0
Mix K Input 01 Playback Volume=0
Mix K Input 02 Playback Volume=0
Mix K Input 03 Playback Volume=0
Mix K Input 04 Playback Volume=0
Mix K Input 05 Playback Volume=0
Mix K Input 06 Playback Volume=0
Mix K Input 07 Playback Volume=0
Mix K Input 08 Playback Volume=0
Mix K Input 09 Playback Volume=0
Mix K Input 10 Playback Volume=0
Mix K Input 11 Playback Volume=0
Mix K Input 12 Playback Volume=0
Mix K Input 13 Playback Volume=0
Mix K Input 14 Playback Volume=0
Mix K Input 15 Playback Volume=0
Mix K Input 16 Playback Volume=0
Mix K Input 17 Playback Volume=0
Mix K Input 18 Playback Volume=0
Mix K Input 19 Playback Volume=0
Mix K Input 20 Playback Volume=0
Mix K Input 21 Playback Volume=0
Mix K Input 22 Playback Volume=0
Mix K Input 23 Playback Volume=0
Mix K Input 24 Playback Volume=0
Mix K Input 25 Playback Volume=0
Mix K Input 26 Playback Volume=0
Mix K Input 27 Playback Volume=0
Mix K Input 28 Playback Volume=0
Mix K Input 29 Playback Volume=0
Mix K Input 30 Playback Volume=0
Mix K Input 31 Playback Volume=0
Mix K Input 32 Playback Volume=0
Mix K Input 33 Playback Volume=0
Mix K Input 34 Playback Volume=0
Mix L Input 01 Playback Volume=0
Mix L Input 02 Playback Volume=0
Mix L Input 03 Playback Volume=0
Mix L Input 04 Playback Volume=0
Mix L Input 05 Playback Volume=0
Mix L Input 06 Playback Volume=0
Mix L Input 07 Playback Volume=0
Mix L Input 08 Playback Volume=0
Mix L Input 09 Playback Volume=0
Mix L Input 10 Playback Volume=0
Mix L Input 11 Playback Volume=0
Mix L Input 12 Playback Volume=0
Mix L Input 13 Playback Volume=0
Mix L Input 14 Playback Volume=0
Mix L Input 15 Playback Volume=0
Mix L Input 16 Playback Volume=0
Mix L Input 17 Playback Volume=0
Mix L Input 18 Playback Volume=0
Mix L Input 19 Playback Volume=0
Mix L Input 20 Playback Volume=0
Mix L Input 21 Playback Volume=0
Mix L Input 22 Playback Volume=0
Mix L Input 23 Playback Volume=0
Mix L Input 24 Playback Volume=0
Mix L Input 25 Playback Volume=0
Mix L Input 26 Playback Volume=0
Mix L Input 27 Playback Volume=0
Mix L Input 28 Playback Volume=0
Mix L Input 29 Playback Volume=0
Mix L Input 30 Playback Volume=0
Mix L Input 31 Playback Volume=0
Mix L Input 32 Playback Volume=0
Mix L Input 33 Playback Volume=0
Mix L Input 34 Playback Volume=0
Analogue 1 Playback Enum=Mix A
Analogue 2 Playback Enum=Mix B
Analogue 3 Playback Enum=PCM 3
Analogue 4 Playback Enum=PCM 4
Analogue 5 Playback Enum=Mix A
Analogue 6 Playback Enum=Mix B
Analogue 7 Playback Enum=Mix A
Analogue 8 Playback Enum=Mix B
S/PDIF 1 Playback Enum=PCM 5
S/PDIF 2 Playback Enum=PCM 6
ADAT 1 Playback Enum=PCM 7
ADAT 2 Playback Enum=PCM 8
ADAT 3 Playback Enum=PCM 9
ADAT 4 Playback Enum=PCM 10
ADAT 5 Playback Enum=PCM 11
ADAT 6 Playback Enum=PCM 12
ADAT 7 Playback Enum=PCM 13
ADAT 8 Playback Enum=PCM 14
PCM 1 Capture Enum=Analogue 1
PCM 2 Capture Enum=Analogue 2
PCM 3 Capture Enum=Analogue 3
PCM 4 Capture Enum=Analogue 4
PCM 5 Capture Enum=Analogue 5
PCM 6 Capture Enum=Analogue 6
PCM 7 Capture Enum=PCM 1
PCM 8 Capture Enum=PCM 2
PCM 9 Capture Enum=S/PDIF 1
PCM 10 Capture Enum=S/PDIF 2
PCM 11 Capture Enum=ADAT 1
PCM 12 Capture Enum=ADAT 2
PCM 13 Capture Enum=ADAT 3
PCM 14 Capture Enum=ADAT 4
PCM 15 Capture Enum=ADAT 5
PCM 16 Capture Enum=ADAT 6
PCM 17 Capture Enum=ADAT 7
PCM 18 Capture Enum=ADAT 8
Line In 1 Air Capture Enum=Off
Line In 1 Autogain Capture Switch=false
Line In 1 Autogain Status Capture Enum=Root
Line In 1 Link Capture Switch=false
Line In 1 Safe Capture Switch=false
Line In 1 Level Capture Enum=Line
Line In 1 Phantom Power Capture Switch=false
Line In 1 Gain Capture Volume=0
Line In 2 Air Capture Enum=Off
Line In 2 Autogain Capture Switch=false
Line In 2 Autogain Status Capture Enum=Root
Line In 2 Link Capture Switch=false
Line In 2 Safe Capture Switch=false
Line In 2 Level Capture Enum=Line
Line In 2 Phantom Power Capture Switch=false
Line In 2 Gain Capture Volume=0
Line In 1 Mute Capture Switch=false
Line In 2 Mute Capture Switch=false
Analogue 1 Playback Volume=-127
Analogue 2 Playback Volume=-127
Analogue 3 Playback Volume=0
Analogue 4 Playback Volume=0
Analogue 5 Playback Volume=-30
Analogue 6 Playback Volume=-30
Analogue 7 Playback Volume=-127
Analogue 8 Playback Volume=-127
Line 1 Mute Playback Switch=false
Line 2 Mute Playback Switch=false
Line 3 Mute Playback Switch=false
Line 4 Mute Playback Switch=false
Line 5 Mute Playback Switch=false
Line 6 Mute Playback Switch=false
Line 7 Mute Playback Switch=false
Line 8 Mute Playback Switch=false
Main Group Output 1 Playback Switch=true
Main Group Output 2 Playback Switch=true
Main Group Output 3 Playback Switch=false
Main Group Output 4 Playback Switch=false
Main Group Output 5 Playback Switch=false
Main Group Output 6 Playback Switch=false
Main Group Output 7 Playback Switch=false
Main Group Output 8 Playback Switch=false
Main Group Output 1 Source Playback Enum=Mix A
Main Group Output 2 Source Playback Enum=Mix B
Main Group Output 3 Source Playback Enum=PCM 1
Main Group Output 4 Source Playback Enum=PCM 1
Main Group Output 5 Source Playback Enum=PCM 1
Main Group Output 6 Source Playback Enum=PCM 1
Main Group Output 7 Source Playback Enum=PCM 1
Main Group Output 8 Source Playback Enum=PCM 1
Main Group Output 1 Trim Playback Volume=0
Main Group Output 2 Trim Playback Volume=0
Main Group Output 3 Trim Playback Volume=0
Main Group Output 4 Trim Playback Volume=0
Main Group Output 5 Trim Playback Volume=0
Main Group Output 6 Trim Playback Volume=0
Main Group Output 7 Trim Playback Volume=0
Main Group Output 8 Trim Playback Volume=0
Alt Group Output 1 Playback Switch=false
Alt Group Output 2 Playback Switch=false
Alt Group Output 3 Playback Switch=false
Alt Group Output 4 Playback Switch=false
Alt Group Output 5 Playback Switch=false
Alt Group Output 6 Playback Switch=false
Alt Group Output 7 Playback Switch=false
Alt Group Output 8 Playback Switch=false
Alt Group Output 1 Source Playback Enum=PCM 1
Alt Group Output 2 Source Playback Enum=PCM 1
Alt Group Output 3 Source Playback Enum=PCM 3
Alt Group Output 4 Source Playback Enum=PCM 4
Alt Group Output 5 Source Playback Enum=PCM 1
Alt Group Output 6 Source Playback Enum=PCM 1
Alt Group Output 7 Source Playback Enum=PCM 1
Alt Group Output 8 Source Playback Enum=PCM 1
Alt Group Output 1 Trim Playback Volume=0
Alt Group Output 2 Trim Playback Volume=0
Alt Group Output 3 Trim Playback Volume=0
Alt Group Output 4 Trim Playback Volume=0
Alt Group Output 5 Trim Playback Volume=0
Alt Group Output 6 Trim Playback Volume=0
Alt Group Output 7 Trim Playback Volume=0
Alt Group Output 8 Trim Playback Volume=0
Name=Scarlett 16i16 4th Gen-59
Input Select Capture Enum=Input 1
Master Playback Volume=-127
Mute Playback Switch=false
Dim Playback Switch=false
Speaker Switching Alt Playback Switch=false
Digital I/O Mode Capture Enum=ADAT
Standalone Switch=true
Phantom Power Persistence Capture Switch=false
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
PCM Out 7 Name=
PCM Out 8 Name=
PCM Out 9 Name=
PCM Out 10 Name=
PCM Out 11 Name=
PCM Out 12 Name=
PCM Out 13 Name=
PCM Out 14 Name=
PCM Out 15 Name=
PCM Out 16 Name=
PCM Out 17 Name=
PCM Out 18 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
Mixer Out 11 Name=
Mixer Out 12 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
Analogue Out 7 Name=
Analogue Out 8 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
ADAT Out 1 Name=
ADAT Out 2 Name=
ADAT Out 3 Name=
ADAT Out 4 Name=
ADAT Out 5 Name=
ADAT Out 6 Name=
ADAT Out 7 Name=
ADAT Out 8 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
PCM In 15 Name=
PCM In 16 Name=
PCM In 17 Name=
PCM In 18 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
Mixer In 19 Name=
Mixer In 20 Name=
Mixer In 21 Name=
Mixer In 22 Name=
Mixer In 23 Name=
Mixer In 24 Name=
Mixer In 25 Name=
Mixer In 26 Name=
Mixer In 27 Name=
Mixer In 28 Name=
Mixer In 29 Name=
Mixer In 30 Name=
Mixer In 31 Name=
Mixer In 32 Name=
Mixer In 33 Name=
Mixer In 34 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
PCM Out 7 Switch=true
PCM Out 8 Switch=true
PCM Out 9 Switch=true
PCM Out 10 Switch=true
PCM Out 11 Switch=true
PCM Out 12 Switch=true
PCM Out 13 Switch=true
PCM Out 14 Switch=true
PCM Out 15 Switch=true
PCM Out 16 Switch=true
PCM Out 17 Switch=true
PCM Out 18 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
Mixer Out 11 Switch=true
Mixer Out 12 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
Analogue Out 7 Switch=true
Analogue Out 8 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
ADAT Out 1 Switch=true
ADAT Out 2 Switch=true
ADAT Out 3 Switch=true
ADAT Out 4 Switch=true
ADAT Out 5 Switch=true
ADAT Out 6 Switch=true
ADAT Out 7 Switch=true
ADAT Out 8 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
PCM In 15 Switch=true
PCM In 16 Switch=true
PCM In 17 Switch=true
PCM In 18 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
Mixer In 19 Switch=true
Mixer In 20 Switch=true
Mixer In 21 Switch=true
Mixer In 22 Switch=true
Mixer In 23 Switch=true
Mixer In 24 Switch=true
Mixer In 25 Switch=true
Mixer In 26 Switch=true
Mixer In 27 Switch=true
Mixer In 28 Switch=true
Mixer In 29 Switch=true
Mixer In 30 Switch=true
Mixer In 31 Switch=true
Mixer In 32 Switch=true
Mixer In 33 Switch=true
Mixer In 34 Switch=true
Analogue In 1-2 Link=false
Analogue In 1-2 Name=
Analogue In 3-4 Link=true
Analogue In 3-4 Name=
Analogue In 5-6 Link=true
Analogue In 5-6 Name=
S/PDIF In 1-2 Link=true
S/PDIF In 1-2 Name=
ADAT In 1-2 Link=true
ADAT In 1-2 Name=
ADAT In 3-4 Link=true
ADAT In 3-4 Name=
ADAT In 5-6 Link=true
ADAT In 5-6 Name=
ADAT In 7-8 Link=true
ADAT In 7-8 Name=
PCM Out 1-2 Link=true
PCM Out 1-2 Name=
PCM Out 3-4 Link=true
PCM Out 3-4 Name=
PCM Out 5-6 Link=true
PCM Out 5-6 Name=
PCM Out 7-8 Link=true
PCM Out 7-8 Name=
PCM Out 9-10 Link=true
PCM Out 9-10 Name=
PCM Out 11-12 Link=true
PCM Out 11-12 Name=
PCM Out 13-14 Link=true
PCM Out 13-14 Name=
PCM Out 15-16 Link=true
PCM Out 15-16 Name=
PCM Out 17-18 Link=true
PCM Out 17-18 Name=
Mixer Out 1-2 Link=true
Mixer Out 1-2 Name=
Mixer Out 3-4 Link=true
Mixer Out 3-4 Name=
Mixer Out 5-6 Link=true
Mixer Out 5-6 Name=
Mixer Out 7-8 Link=true
Mixer Out 7-8 Name=
Mixer Out 9-10 Link=true
Mixer Out 9-10 Name=
Mixer Out 11-12 Link=true
Mixer Out 11-12 Name=
Analogue Out 1-2 Link=true
Analogue Out 1-2 Name=
Analogue Out 3-4 Link=true
Analogue Out 3-4 Name=
Analogue Out 5-6 Link=true
Analogue Out 5-6 Name=
Analogue Out 7-8 Link=true
Analogue Out 7-8 Name=
S/PDIF Out 1-2 Link=true
S/PDIF Out 1-2 Name=
ADAT Out 1-2 Link=true
ADAT Out 1-2 Name=
ADAT Out 3-4 Link=true
ADAT Out 3-4 Name=
ADAT Out 5-6 Link=true
ADAT Out 5-6 Name=
ADAT Out 7-8 Link=true
ADAT Out 7-8 Name=
PCM In 1-2 Link=false
PCM In 1-2 Name=
PCM In 3-4 Link=true
PCM In 3-4 Name=
PCM In 5-6 Link=true
PCM In 5-6 Name=
PCM In 7-8 Link=true
PCM In 7-8 Name=
PCM In 9-10 Link=true
PCM In 9-10 Name=
PCM In 11-12 Link=true
PCM In 11-12 Name=
PCM In 13-14 Link=true
PCM In 13-14 Name=
PCM In 15-16 Link=true
PCM In 15-16 Name=
PCM In 17-18 Link=true
PCM In 17-18 Name=
Mixer In 1-2 Link=true
Mixer In 3-4 Link=true
Mixer In 5-6 Link=true
Mixer In 7-8 Link=true
Mixer In 9-10 Link=true
Mixer In 11-12 Link=true
Mixer In 13-14 Link=true
Mixer In 15-16 Link=true
Mixer In 17-18 Link=true
Mixer In 19-20 Link=false
Mixer In 21-22 Link=true
Mixer In 23-24 Link=true
Mixer In 25-26 Link=true
Mixer In 27-28 Link=true
Mixer In 29-30 Link=true
Mixer In 31-32 Link=true
Mixer In 33-34 Link=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 16i16.state 0000664 0000000 0000000 00000667422 15212330051 0023143 0 ustar 00root root 0000000 0000000 state.Gen {
control.1 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.2 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.5 {
iface MIXER
name 'Sync Status'
value Unlocked
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.6 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
value.44 0
value.45 0
value.46 0
value.47 0
value.48 0
value.49 0
value.50 0
value.51 0
value.52 0
value.53 0
comment {
access 'read volatile'
type INTEGER
count 54
range '0 - 4095 (step 1)'
}
}
control.7 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.8 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.9 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.10 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.11 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.12 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.13 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.14 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.15 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.16 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.17 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.18 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.19 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.20 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.21 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.22 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.23 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.24 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.25 {
iface MIXER
name 'Mix A Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.26 {
iface MIXER
name 'Mix A Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.27 {
iface MIXER
name 'Mix A Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.28 {
iface MIXER
name 'Mix A Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.29 {
iface MIXER
name 'Mix A Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.30 {
iface MIXER
name 'Mix A Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.31 {
iface MIXER
name 'Mix A Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.32 {
iface MIXER
name 'Mix A Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.33 {
iface MIXER
name 'Mix A Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.34 {
iface MIXER
name 'Mix A Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.35 {
iface MIXER
name 'Mix A Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.36 {
iface MIXER
name 'Mix A Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.37 {
iface MIXER
name 'Mix A Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.38 {
iface MIXER
name 'Mix A Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.39 {
iface MIXER
name 'Mix A Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.40 {
iface MIXER
name 'Mix A Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.41 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.42 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.43 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.44 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.45 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.46 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.47 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.48 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.49 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.50 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.51 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.52 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.53 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.54 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.55 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.56 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.57 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.58 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.59 {
iface MIXER
name 'Mix B Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.60 {
iface MIXER
name 'Mix B Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.61 {
iface MIXER
name 'Mix B Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.62 {
iface MIXER
name 'Mix B Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.63 {
iface MIXER
name 'Mix B Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.64 {
iface MIXER
name 'Mix B Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.65 {
iface MIXER
name 'Mix B Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.66 {
iface MIXER
name 'Mix B Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.67 {
iface MIXER
name 'Mix B Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.68 {
iface MIXER
name 'Mix B Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.69 {
iface MIXER
name 'Mix B Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.70 {
iface MIXER
name 'Mix B Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.71 {
iface MIXER
name 'Mix B Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.72 {
iface MIXER
name 'Mix B Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.73 {
iface MIXER
name 'Mix B Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.74 {
iface MIXER
name 'Mix B Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.75 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.76 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.77 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.78 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.79 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.80 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.81 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.82 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.83 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.84 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.85 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.86 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.87 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.88 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.89 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.90 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.91 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.92 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.93 {
iface MIXER
name 'Mix C Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.94 {
iface MIXER
name 'Mix C Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.95 {
iface MIXER
name 'Mix C Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.96 {
iface MIXER
name 'Mix C Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.97 {
iface MIXER
name 'Mix C Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.98 {
iface MIXER
name 'Mix C Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.99 {
iface MIXER
name 'Mix C Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.100 {
iface MIXER
name 'Mix C Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.101 {
iface MIXER
name 'Mix C Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.102 {
iface MIXER
name 'Mix C Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.103 {
iface MIXER
name 'Mix C Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.104 {
iface MIXER
name 'Mix C Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.105 {
iface MIXER
name 'Mix C Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.106 {
iface MIXER
name 'Mix C Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.107 {
iface MIXER
name 'Mix C Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.108 {
iface MIXER
name 'Mix C Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.109 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.110 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.111 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.112 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.113 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.114 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.115 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.116 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.117 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.118 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.119 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.120 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.121 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.122 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.123 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.124 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.125 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.126 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.127 {
iface MIXER
name 'Mix D Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.128 {
iface MIXER
name 'Mix D Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.129 {
iface MIXER
name 'Mix D Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.130 {
iface MIXER
name 'Mix D Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.131 {
iface MIXER
name 'Mix D Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.132 {
iface MIXER
name 'Mix D Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.133 {
iface MIXER
name 'Mix D Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.134 {
iface MIXER
name 'Mix D Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.135 {
iface MIXER
name 'Mix D Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.136 {
iface MIXER
name 'Mix D Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.137 {
iface MIXER
name 'Mix D Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.138 {
iface MIXER
name 'Mix D Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.139 {
iface MIXER
name 'Mix D Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.140 {
iface MIXER
name 'Mix D Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.141 {
iface MIXER
name 'Mix D Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.142 {
iface MIXER
name 'Mix D Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.143 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.144 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.145 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.146 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.147 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.148 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.149 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.150 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.151 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.152 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.153 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.154 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.155 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.156 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.157 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.158 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.159 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.160 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.161 {
iface MIXER
name 'Mix E Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.162 {
iface MIXER
name 'Mix E Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.163 {
iface MIXER
name 'Mix E Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.164 {
iface MIXER
name 'Mix E Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.165 {
iface MIXER
name 'Mix E Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.166 {
iface MIXER
name 'Mix E Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.167 {
iface MIXER
name 'Mix E Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.168 {
iface MIXER
name 'Mix E Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.169 {
iface MIXER
name 'Mix E Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.170 {
iface MIXER
name 'Mix E Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.171 {
iface MIXER
name 'Mix E Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.172 {
iface MIXER
name 'Mix E Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.173 {
iface MIXER
name 'Mix E Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.174 {
iface MIXER
name 'Mix E Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.175 {
iface MIXER
name 'Mix E Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.176 {
iface MIXER
name 'Mix E Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.177 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.178 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.179 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.180 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.181 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.182 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.183 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.184 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.185 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.186 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.187 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.188 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.189 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.190 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.191 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.192 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.193 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.194 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.195 {
iface MIXER
name 'Mix F Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.196 {
iface MIXER
name 'Mix F Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.197 {
iface MIXER
name 'Mix F Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.198 {
iface MIXER
name 'Mix F Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.199 {
iface MIXER
name 'Mix F Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.200 {
iface MIXER
name 'Mix F Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.201 {
iface MIXER
name 'Mix F Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.202 {
iface MIXER
name 'Mix F Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.203 {
iface MIXER
name 'Mix F Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.204 {
iface MIXER
name 'Mix F Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.205 {
iface MIXER
name 'Mix F Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.206 {
iface MIXER
name 'Mix F Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.207 {
iface MIXER
name 'Mix F Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.208 {
iface MIXER
name 'Mix F Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.209 {
iface MIXER
name 'Mix F Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.210 {
iface MIXER
name 'Mix F Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.211 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.212 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.213 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.214 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.215 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.216 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.217 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.218 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.219 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.220 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.221 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.222 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.223 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.224 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.225 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.226 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.227 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.228 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.229 {
iface MIXER
name 'Mix G Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.230 {
iface MIXER
name 'Mix G Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.231 {
iface MIXER
name 'Mix G Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.232 {
iface MIXER
name 'Mix G Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.233 {
iface MIXER
name 'Mix G Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.234 {
iface MIXER
name 'Mix G Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.235 {
iface MIXER
name 'Mix G Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.236 {
iface MIXER
name 'Mix G Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.237 {
iface MIXER
name 'Mix G Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.238 {
iface MIXER
name 'Mix G Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.239 {
iface MIXER
name 'Mix G Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.240 {
iface MIXER
name 'Mix G Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.241 {
iface MIXER
name 'Mix G Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.242 {
iface MIXER
name 'Mix G Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.243 {
iface MIXER
name 'Mix G Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.244 {
iface MIXER
name 'Mix G Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.245 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.246 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.247 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.248 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.249 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.250 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.251 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.252 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.253 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.254 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.255 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.256 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.257 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.258 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.259 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.260 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.261 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.262 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.263 {
iface MIXER
name 'Mix H Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.264 {
iface MIXER
name 'Mix H Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.265 {
iface MIXER
name 'Mix H Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.266 {
iface MIXER
name 'Mix H Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.267 {
iface MIXER
name 'Mix H Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.268 {
iface MIXER
name 'Mix H Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.269 {
iface MIXER
name 'Mix H Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.270 {
iface MIXER
name 'Mix H Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.271 {
iface MIXER
name 'Mix H Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.272 {
iface MIXER
name 'Mix H Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.273 {
iface MIXER
name 'Mix H Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.274 {
iface MIXER
name 'Mix H Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.275 {
iface MIXER
name 'Mix H Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.276 {
iface MIXER
name 'Mix H Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.277 {
iface MIXER
name 'Mix H Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.278 {
iface MIXER
name 'Mix H Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.279 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.280 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.281 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.282 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.283 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.284 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.285 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.286 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.287 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.288 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.289 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.290 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.291 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.292 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.293 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.294 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.295 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.296 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.297 {
iface MIXER
name 'Mix I Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.298 {
iface MIXER
name 'Mix I Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.299 {
iface MIXER
name 'Mix I Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.300 {
iface MIXER
name 'Mix I Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.301 {
iface MIXER
name 'Mix I Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.302 {
iface MIXER
name 'Mix I Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.303 {
iface MIXER
name 'Mix I Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.304 {
iface MIXER
name 'Mix I Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.305 {
iface MIXER
name 'Mix I Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.306 {
iface MIXER
name 'Mix I Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.307 {
iface MIXER
name 'Mix I Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.308 {
iface MIXER
name 'Mix I Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.309 {
iface MIXER
name 'Mix I Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.310 {
iface MIXER
name 'Mix I Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.311 {
iface MIXER
name 'Mix I Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.312 {
iface MIXER
name 'Mix I Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.313 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.314 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.315 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.316 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.317 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.318 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.319 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.320 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.321 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.322 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.323 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.324 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.325 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.326 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.327 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.328 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.329 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.330 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.331 {
iface MIXER
name 'Mix J Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.332 {
iface MIXER
name 'Mix J Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.333 {
iface MIXER
name 'Mix J Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.334 {
iface MIXER
name 'Mix J Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.335 {
iface MIXER
name 'Mix J Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.336 {
iface MIXER
name 'Mix J Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.337 {
iface MIXER
name 'Mix J Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.338 {
iface MIXER
name 'Mix J Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.339 {
iface MIXER
name 'Mix J Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.340 {
iface MIXER
name 'Mix J Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.341 {
iface MIXER
name 'Mix J Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.342 {
iface MIXER
name 'Mix J Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.343 {
iface MIXER
name 'Mix J Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.344 {
iface MIXER
name 'Mix J Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.345 {
iface MIXER
name 'Mix J Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.346 {
iface MIXER
name 'Mix J Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.347 {
iface MIXER
name 'Mix K Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.348 {
iface MIXER
name 'Mix K Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.349 {
iface MIXER
name 'Mix K Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.350 {
iface MIXER
name 'Mix K Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.351 {
iface MIXER
name 'Mix K Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.352 {
iface MIXER
name 'Mix K Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.353 {
iface MIXER
name 'Mix K Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.354 {
iface MIXER
name 'Mix K Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.355 {
iface MIXER
name 'Mix K Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.356 {
iface MIXER
name 'Mix K Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.357 {
iface MIXER
name 'Mix K Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.358 {
iface MIXER
name 'Mix K Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.359 {
iface MIXER
name 'Mix K Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.360 {
iface MIXER
name 'Mix K Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.361 {
iface MIXER
name 'Mix K Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.362 {
iface MIXER
name 'Mix K Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.363 {
iface MIXER
name 'Mix K Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.364 {
iface MIXER
name 'Mix K Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.365 {
iface MIXER
name 'Mix K Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.366 {
iface MIXER
name 'Mix K Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.367 {
iface MIXER
name 'Mix K Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.368 {
iface MIXER
name 'Mix K Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.369 {
iface MIXER
name 'Mix K Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.370 {
iface MIXER
name 'Mix K Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.371 {
iface MIXER
name 'Mix K Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.372 {
iface MIXER
name 'Mix K Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.373 {
iface MIXER
name 'Mix K Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.374 {
iface MIXER
name 'Mix K Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.375 {
iface MIXER
name 'Mix K Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.376 {
iface MIXER
name 'Mix K Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.377 {
iface MIXER
name 'Mix K Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.378 {
iface MIXER
name 'Mix K Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.379 {
iface MIXER
name 'Mix K Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.380 {
iface MIXER
name 'Mix K Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.381 {
iface MIXER
name 'Mix L Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.382 {
iface MIXER
name 'Mix L Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.383 {
iface MIXER
name 'Mix L Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.384 {
iface MIXER
name 'Mix L Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.385 {
iface MIXER
name 'Mix L Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.386 {
iface MIXER
name 'Mix L Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.387 {
iface MIXER
name 'Mix L Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.388 {
iface MIXER
name 'Mix L Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.389 {
iface MIXER
name 'Mix L Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.390 {
iface MIXER
name 'Mix L Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.391 {
iface MIXER
name 'Mix L Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.392 {
iface MIXER
name 'Mix L Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.393 {
iface MIXER
name 'Mix L Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.394 {
iface MIXER
name 'Mix L Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.395 {
iface MIXER
name 'Mix L Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.396 {
iface MIXER
name 'Mix L Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.397 {
iface MIXER
name 'Mix L Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.398 {
iface MIXER
name 'Mix L Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.399 {
iface MIXER
name 'Mix L Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.400 {
iface MIXER
name 'Mix L Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.401 {
iface MIXER
name 'Mix L Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.402 {
iface MIXER
name 'Mix L Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.403 {
iface MIXER
name 'Mix L Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.404 {
iface MIXER
name 'Mix L Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.405 {
iface MIXER
name 'Mix L Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.406 {
iface MIXER
name 'Mix L Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.407 {
iface MIXER
name 'Mix L Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.408 {
iface MIXER
name 'Mix L Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.409 {
iface MIXER
name 'Mix L Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.410 {
iface MIXER
name 'Mix L Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.411 {
iface MIXER
name 'Mix L Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.412 {
iface MIXER
name 'Mix L Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.413 {
iface MIXER
name 'Mix L Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.414 {
iface MIXER
name 'Mix L Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.415 {
iface MIXER
name 'Analogue 1 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.416 {
iface MIXER
name 'Analogue 2 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.417 {
iface MIXER
name 'Analogue 3 Playback Enum'
value 'PCM 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.418 {
iface MIXER
name 'Analogue 4 Playback Enum'
value 'PCM 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.419 {
iface MIXER
name 'Analogue 5 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.420 {
iface MIXER
name 'Analogue 6 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.421 {
iface MIXER
name 'Analogue 7 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.422 {
iface MIXER
name 'Analogue 8 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.423 {
iface MIXER
name 'S/PDIF 1 Playback Enum'
value 'PCM 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.424 {
iface MIXER
name 'S/PDIF 2 Playback Enum'
value 'PCM 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.425 {
iface MIXER
name 'ADAT 1 Playback Enum'
value 'PCM 7'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.426 {
iface MIXER
name 'ADAT 2 Playback Enum'
value 'PCM 8'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.427 {
iface MIXER
name 'ADAT 3 Playback Enum'
value 'PCM 9'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.428 {
iface MIXER
name 'ADAT 4 Playback Enum'
value 'PCM 10'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.429 {
iface MIXER
name 'ADAT 5 Playback Enum'
value 'PCM 11'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.430 {
iface MIXER
name 'ADAT 6 Playback Enum'
value 'PCM 12'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.431 {
iface MIXER
name 'ADAT 7 Playback Enum'
value 'PCM 13'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.432 {
iface MIXER
name 'ADAT 8 Playback Enum'
value 'PCM 14'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.433 {
iface MIXER
name 'PCM 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.434 {
iface MIXER
name 'PCM 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.435 {
iface MIXER
name 'PCM 3 Capture Enum'
value 'Analogue 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.436 {
iface MIXER
name 'PCM 4 Capture Enum'
value 'Analogue 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.437 {
iface MIXER
name 'PCM 5 Capture Enum'
value 'Analogue 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.438 {
iface MIXER
name 'PCM 6 Capture Enum'
value 'Analogue 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.439 {
iface MIXER
name 'PCM 7 Capture Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.440 {
iface MIXER
name 'PCM 8 Capture Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.441 {
iface MIXER
name 'PCM 9 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.442 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.443 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'ADAT 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.444 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'ADAT 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.445 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.446 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.447 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.448 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.449 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 7'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.450 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 8'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.451 {
iface MIXER
name 'Mixer 1 Capture Enum'
value 'PCM 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.452 {
iface MIXER
name 'Mixer 2 Capture Enum'
value 'PCM 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.453 {
iface MIXER
name 'Mixer 3 Capture Enum'
value 'PCM 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.454 {
iface MIXER
name 'Mixer 4 Capture Enum'
value 'PCM 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.455 {
iface MIXER
name 'Mixer 5 Capture Enum'
value 'PCM 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.456 {
iface MIXER
name 'Mixer 6 Capture Enum'
value 'PCM 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.457 {
iface MIXER
name 'Mixer 7 Capture Enum'
value 'PCM 7'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.458 {
iface MIXER
name 'Mixer 8 Capture Enum'
value 'PCM 8'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.459 {
iface MIXER
name 'Mixer 9 Capture Enum'
value 'PCM 9'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.460 {
iface MIXER
name 'Mixer 10 Capture Enum'
value 'PCM 10'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.461 {
iface MIXER
name 'Mixer 11 Capture Enum'
value 'PCM 11'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.462 {
iface MIXER
name 'Mixer 12 Capture Enum'
value 'PCM 12'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.463 {
iface MIXER
name 'Mixer 13 Capture Enum'
value 'PCM 13'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.464 {
iface MIXER
name 'Mixer 14 Capture Enum'
value 'PCM 14'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.465 {
iface MIXER
name 'Mixer 15 Capture Enum'
value 'PCM 15'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.466 {
iface MIXER
name 'Mixer 16 Capture Enum'
value 'PCM 16'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.467 {
iface MIXER
name 'Mixer 17 Capture Enum'
value 'PCM 17'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.468 {
iface MIXER
name 'Mixer 18 Capture Enum'
value 'PCM 18'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.469 {
iface MIXER
name 'Mixer 19 Capture Enum'
value 'Analogue 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.470 {
iface MIXER
name 'Mixer 20 Capture Enum'
value 'Analogue 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.471 {
iface MIXER
name 'Mixer 21 Capture Enum'
value 'Analogue 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.472 {
iface MIXER
name 'Mixer 22 Capture Enum'
value 'Analogue 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.473 {
iface MIXER
name 'Mixer 23 Capture Enum'
value 'Analogue 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.474 {
iface MIXER
name 'Mixer 24 Capture Enum'
value 'Analogue 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.475 {
iface MIXER
name 'Mixer 25 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.476 {
iface MIXER
name 'Mixer 26 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.477 {
iface MIXER
name 'Mixer 27 Capture Enum'
value 'ADAT 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.478 {
iface MIXER
name 'Mixer 28 Capture Enum'
value 'ADAT 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.479 {
iface MIXER
name 'Mixer 29 Capture Enum'
value 'ADAT 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.480 {
iface MIXER
name 'Mixer 30 Capture Enum'
value 'ADAT 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.481 {
iface MIXER
name 'Mixer 31 Capture Enum'
value 'ADAT 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.482 {
iface MIXER
name 'Mixer 32 Capture Enum'
value 'ADAT 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.483 {
iface MIXER
name 'Mixer 33 Capture Enum'
value 'ADAT 7'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.484 {
iface MIXER
name 'Mixer 34 Capture Enum'
value 'ADAT 8'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'S/PDIF 1'
item.8 'S/PDIF 2'
item.9 'ADAT 1'
item.10 'ADAT 2'
item.11 'ADAT 3'
item.12 'ADAT 4'
item.13 'ADAT 5'
item.14 'ADAT 6'
item.15 'ADAT 7'
item.16 'ADAT 8'
item.17 'PCM 1'
item.18 'PCM 2'
item.19 'PCM 3'
item.20 'PCM 4'
item.21 'PCM 5'
item.22 'PCM 6'
item.23 'PCM 7'
item.24 'PCM 8'
item.25 'PCM 9'
item.26 'PCM 10'
item.27 'PCM 11'
item.28 'PCM 12'
item.29 'PCM 13'
item.30 'PCM 14'
item.31 'PCM 15'
item.32 'PCM 16'
item.33 'PCM 17'
item.34 'PCM 18'
item.35 'Mix A'
item.36 'Mix B'
item.37 'Mix C'
item.38 'Mix D'
item.39 'Mix E'
item.40 'Mix F'
item.41 'Mix G'
item.42 'Mix H'
item.43 'Mix I'
item.44 'Mix J'
item.45 'Mix K'
item.46 'Mix L'
}
}
control.485 {
iface MIXER
name 'Line In 1 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.486 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.487 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.488 {
iface MIXER
name 'Line In 1 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.489 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.490 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.491 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.492 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.493 {
iface MIXER
name 'Line In 2 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.494 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.495 {
iface MIXER
name 'Line In 2 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.496 {
iface MIXER
name 'Line In 2 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.497 {
iface MIXER
name 'Line In 2 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.498 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.499 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.500 {
iface MIXER
name 'Line In 2 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.501 {
iface MIXER
name 'Line In 1 Mute Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.502 {
iface MIXER
name 'Line In 2 Mute Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.503 {
iface MIXER
name 'Analogue 1 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.504 {
iface MIXER
name 'Analogue 2 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.505 {
iface MIXER
name 'Analogue 3 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.506 {
iface MIXER
name 'Analogue 4 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.507 {
iface MIXER
name 'Analogue 5 Playback Volume'
value -30
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -3000
}
}
control.508 {
iface MIXER
name 'Analogue 6 Playback Volume'
value -30
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -3000
}
}
control.509 {
iface MIXER
name 'Analogue 7 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.510 {
iface MIXER
name 'Analogue 8 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.511 {
iface MIXER
name 'Line 1 Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.512 {
iface MIXER
name 'Line 2 Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.513 {
iface MIXER
name 'Line 3 Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.514 {
iface MIXER
name 'Line 4 Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.515 {
iface MIXER
name 'Line 5 Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.516 {
iface MIXER
name 'Line 6 Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.517 {
iface MIXER
name 'Line 7 Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.518 {
iface MIXER
name 'Line 8 Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.519 {
iface MIXER
name 'Main Group Output 1 Playback Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.520 {
iface MIXER
name 'Main Group Output 2 Playback Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.521 {
iface MIXER
name 'Main Group Output 3 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.522 {
iface MIXER
name 'Main Group Output 4 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.523 {
iface MIXER
name 'Main Group Output 5 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.524 {
iface MIXER
name 'Main Group Output 6 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.525 {
iface MIXER
name 'Main Group Output 7 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.526 {
iface MIXER
name 'Main Group Output 8 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.527 {
iface MIXER
name 'Main Group Output 1 Source Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.528 {
iface MIXER
name 'Main Group Output 2 Source Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.529 {
iface MIXER
name 'Main Group Output 3 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.530 {
iface MIXER
name 'Main Group Output 4 Source Playback Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.531 {
iface MIXER
name 'Main Group Output 5 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.532 {
iface MIXER
name 'Main Group Output 6 Source Playback Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.533 {
iface MIXER
name 'Main Group Output 7 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.534 {
iface MIXER
name 'Main Group Output 8 Source Playback Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.535 {
iface MIXER
name 'Main Group Output 1 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.536 {
iface MIXER
name 'Main Group Output 2 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.537 {
iface MIXER
name 'Main Group Output 3 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.538 {
iface MIXER
name 'Main Group Output 4 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.539 {
iface MIXER
name 'Main Group Output 5 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.540 {
iface MIXER
name 'Main Group Output 6 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.541 {
iface MIXER
name 'Main Group Output 7 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.542 {
iface MIXER
name 'Main Group Output 8 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.543 {
iface MIXER
name 'Alt Group Output 1 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.544 {
iface MIXER
name 'Alt Group Output 2 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.545 {
iface MIXER
name 'Alt Group Output 3 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.546 {
iface MIXER
name 'Alt Group Output 4 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.547 {
iface MIXER
name 'Alt Group Output 5 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.548 {
iface MIXER
name 'Alt Group Output 6 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.549 {
iface MIXER
name 'Alt Group Output 7 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.550 {
iface MIXER
name 'Alt Group Output 8 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.551 {
iface MIXER
name 'Alt Group Output 1 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.552 {
iface MIXER
name 'Alt Group Output 2 Source Playback Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.553 {
iface MIXER
name 'Alt Group Output 3 Source Playback Enum'
value 'PCM 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.554 {
iface MIXER
name 'Alt Group Output 4 Source Playback Enum'
value 'PCM 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.555 {
iface MIXER
name 'Alt Group Output 5 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.556 {
iface MIXER
name 'Alt Group Output 6 Source Playback Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.557 {
iface MIXER
name 'Alt Group Output 7 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.558 {
iface MIXER
name 'Alt Group Output 8 Source Playback Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'S/PDIF 1'
item.25 'S/PDIF 2'
item.26 'ADAT 1'
item.27 'ADAT 2'
item.28 'ADAT 3'
item.29 'ADAT 4'
item.30 'ADAT 5'
item.31 'ADAT 6'
item.32 'ADAT 7'
item.33 'ADAT 8'
item.34 'Mix A'
item.35 'Mix B'
item.36 'Mix C'
item.37 'Mix D'
item.38 'Mix E'
item.39 'Mix F'
item.40 'Mix G'
item.41 'Mix H'
item.42 'Mix I'
item.43 'Mix J'
item.44 'Mix K'
item.45 'Mix L'
}
}
control.559 {
iface MIXER
name 'Alt Group Output 1 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.560 {
iface MIXER
name 'Alt Group Output 2 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.561 {
iface MIXER
name 'Alt Group Output 3 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.562 {
iface MIXER
name 'Alt Group Output 4 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.563 {
iface MIXER
name 'Alt Group Output 5 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.564 {
iface MIXER
name 'Alt Group Output 6 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.565 {
iface MIXER
name 'Alt Group Output 7 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.566 {
iface MIXER
name 'Alt Group Output 8 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.567 {
iface CARD
name 'Firmware Version'
value.0 2
value.1 0
value.2 2464
value.3 0
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
tlv '53434b54000000206e75722f7063662f7265732d2d72657663662f302e302d706b636f7300000000'
}
}
control.568 {
iface MIXER
name Name
value '536361726c657474203136693136203474682047656e2d353900000000000000'
comment {
access 'read write user'
type BYTES
count 32
}
}
control.569 {
iface CARD
name 'ESP Firmware Version'
value.0 1
value.1 0
value.2 0
value.3 364
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
}
}
control.570 {
iface MIXER
name 'Input Select Capture Enum'
value 'Input 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'Input 1'
item.1 'Input 2'
}
}
control.571 {
iface MIXER
name 'Master Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.572 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.573 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.574 {
iface MIXER
name 'Speaker Switching Alt Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.575 {
iface MIXER
name 'Digital I/O Mode Capture Enum'
value ADAT
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 ADAT
item.1 'Optical S/PDIF'
}
}
control.576 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.577 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 18i16.conf 0000664 0000000 0000000 00000057332 15212330051 0022743 0 ustar 00root root 0000000 0000000 [device]
serial=S8ES000430004A
model=Scarlett 18i16 4th Gen
[controls]
Clock Source Clock Source=Internal
Mix A Input 01 Playback Volume=8192
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix A Input 19 Playback Volume=0
Mix A Input 20 Playback Volume=0
Mix A Input 21 Playback Volume=0
Mix A Input 22 Playback Volume=0
Mix A Input 23 Playback Volume=0
Mix A Input 24 Playback Volume=0
Mix A Input 25 Playback Volume=0
Mix A Input 26 Playback Volume=0
Mix A Input 27 Playback Volume=0
Mix A Input 28 Playback Volume=0
Mix A Input 29 Playback Volume=0
Mix A Input 30 Playback Volume=0
Mix A Input 31 Playback Volume=0
Mix A Input 32 Playback Volume=0
Mix A Input 33 Playback Volume=0
Mix A Input 34 Playback Volume=0
Mix A Input 35 Playback Volume=0
Mix A Input 36 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=8192
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix B Input 19 Playback Volume=0
Mix B Input 20 Playback Volume=0
Mix B Input 21 Playback Volume=0
Mix B Input 22 Playback Volume=0
Mix B Input 23 Playback Volume=0
Mix B Input 24 Playback Volume=0
Mix B Input 25 Playback Volume=0
Mix B Input 26 Playback Volume=0
Mix B Input 27 Playback Volume=0
Mix B Input 28 Playback Volume=0
Mix B Input 29 Playback Volume=0
Mix B Input 30 Playback Volume=0
Mix B Input 31 Playback Volume=0
Mix B Input 32 Playback Volume=0
Mix B Input 33 Playback Volume=0
Mix B Input 34 Playback Volume=0
Mix B Input 35 Playback Volume=0
Mix B Input 36 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=8192
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix C Input 19 Playback Volume=0
Mix C Input 20 Playback Volume=0
Mix C Input 21 Playback Volume=0
Mix C Input 22 Playback Volume=0
Mix C Input 23 Playback Volume=0
Mix C Input 24 Playback Volume=0
Mix C Input 25 Playback Volume=0
Mix C Input 26 Playback Volume=0
Mix C Input 27 Playback Volume=0
Mix C Input 28 Playback Volume=0
Mix C Input 29 Playback Volume=0
Mix C Input 30 Playback Volume=0
Mix C Input 31 Playback Volume=0
Mix C Input 32 Playback Volume=0
Mix C Input 33 Playback Volume=0
Mix C Input 34 Playback Volume=0
Mix C Input 35 Playback Volume=0
Mix C Input 36 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=8192
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix D Input 19 Playback Volume=0
Mix D Input 20 Playback Volume=0
Mix D Input 21 Playback Volume=0
Mix D Input 22 Playback Volume=0
Mix D Input 23 Playback Volume=0
Mix D Input 24 Playback Volume=0
Mix D Input 25 Playback Volume=0
Mix D Input 26 Playback Volume=0
Mix D Input 27 Playback Volume=0
Mix D Input 28 Playback Volume=0
Mix D Input 29 Playback Volume=0
Mix D Input 30 Playback Volume=0
Mix D Input 31 Playback Volume=0
Mix D Input 32 Playback Volume=0
Mix D Input 33 Playback Volume=0
Mix D Input 34 Playback Volume=0
Mix D Input 35 Playback Volume=0
Mix D Input 36 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=8192
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix E Input 19 Playback Volume=0
Mix E Input 20 Playback Volume=0
Mix E Input 21 Playback Volume=0
Mix E Input 22 Playback Volume=0
Mix E Input 23 Playback Volume=0
Mix E Input 24 Playback Volume=0
Mix E Input 25 Playback Volume=0
Mix E Input 26 Playback Volume=0
Mix E Input 27 Playback Volume=0
Mix E Input 28 Playback Volume=0
Mix E Input 29 Playback Volume=0
Mix E Input 30 Playback Volume=0
Mix E Input 31 Playback Volume=0
Mix E Input 32 Playback Volume=0
Mix E Input 33 Playback Volume=0
Mix E Input 34 Playback Volume=0
Mix E Input 35 Playback Volume=0
Mix E Input 36 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=8192
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix F Input 19 Playback Volume=0
Mix F Input 20 Playback Volume=0
Mix F Input 21 Playback Volume=0
Mix F Input 22 Playback Volume=0
Mix F Input 23 Playback Volume=0
Mix F Input 24 Playback Volume=0
Mix F Input 25 Playback Volume=0
Mix F Input 26 Playback Volume=0
Mix F Input 27 Playback Volume=0
Mix F Input 28 Playback Volume=0
Mix F Input 29 Playback Volume=0
Mix F Input 30 Playback Volume=0
Mix F Input 31 Playback Volume=0
Mix F Input 32 Playback Volume=0
Mix F Input 33 Playback Volume=0
Mix F Input 34 Playback Volume=0
Mix F Input 35 Playback Volume=0
Mix F Input 36 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=8192
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix G Input 19 Playback Volume=0
Mix G Input 20 Playback Volume=0
Mix G Input 21 Playback Volume=0
Mix G Input 22 Playback Volume=0
Mix G Input 23 Playback Volume=0
Mix G Input 24 Playback Volume=0
Mix G Input 25 Playback Volume=0
Mix G Input 26 Playback Volume=0
Mix G Input 27 Playback Volume=0
Mix G Input 28 Playback Volume=0
Mix G Input 29 Playback Volume=0
Mix G Input 30 Playback Volume=0
Mix G Input 31 Playback Volume=0
Mix G Input 32 Playback Volume=0
Mix G Input 33 Playback Volume=0
Mix G Input 34 Playback Volume=0
Mix G Input 35 Playback Volume=0
Mix G Input 36 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=8192
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix H Input 19 Playback Volume=0
Mix H Input 20 Playback Volume=0
Mix H Input 21 Playback Volume=0
Mix H Input 22 Playback Volume=0
Mix H Input 23 Playback Volume=0
Mix H Input 24 Playback Volume=0
Mix H Input 25 Playback Volume=0
Mix H Input 26 Playback Volume=0
Mix H Input 27 Playback Volume=0
Mix H Input 28 Playback Volume=0
Mix H Input 29 Playback Volume=0
Mix H Input 30 Playback Volume=0
Mix H Input 31 Playback Volume=0
Mix H Input 32 Playback Volume=0
Mix H Input 33 Playback Volume=0
Mix H Input 34 Playback Volume=0
Mix H Input 35 Playback Volume=0
Mix H Input 36 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=8192
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix I Input 19 Playback Volume=0
Mix I Input 20 Playback Volume=0
Mix I Input 21 Playback Volume=0
Mix I Input 22 Playback Volume=0
Mix I Input 23 Playback Volume=0
Mix I Input 24 Playback Volume=0
Mix I Input 25 Playback Volume=0
Mix I Input 26 Playback Volume=0
Mix I Input 27 Playback Volume=0
Mix I Input 28 Playback Volume=0
Mix I Input 29 Playback Volume=0
Mix I Input 30 Playback Volume=0
Mix I Input 31 Playback Volume=0
Mix I Input 32 Playback Volume=0
Mix I Input 33 Playback Volume=0
Mix I Input 34 Playback Volume=0
Mix I Input 35 Playback Volume=0
Mix I Input 36 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=8192
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Mix J Input 19 Playback Volume=0
Mix J Input 20 Playback Volume=0
Mix J Input 21 Playback Volume=0
Mix J Input 22 Playback Volume=0
Mix J Input 23 Playback Volume=0
Mix J Input 24 Playback Volume=0
Mix J Input 25 Playback Volume=0
Mix J Input 26 Playback Volume=0
Mix J Input 27 Playback Volume=0
Mix J Input 28 Playback Volume=0
Mix J Input 29 Playback Volume=0
Mix J Input 30 Playback Volume=0
Mix J Input 31 Playback Volume=0
Mix J Input 32 Playback Volume=0
Mix J Input 33 Playback Volume=0
Mix J Input 34 Playback Volume=0
Mix J Input 35 Playback Volume=0
Mix J Input 36 Playback Volume=0
Mix K Input 01 Playback Volume=0
Mix K Input 02 Playback Volume=0
Mix K Input 03 Playback Volume=0
Mix K Input 04 Playback Volume=0
Mix K Input 05 Playback Volume=0
Mix K Input 06 Playback Volume=0
Mix K Input 07 Playback Volume=0
Mix K Input 08 Playback Volume=0
Mix K Input 09 Playback Volume=0
Mix K Input 10 Playback Volume=0
Mix K Input 11 Playback Volume=0
Mix K Input 12 Playback Volume=0
Mix K Input 13 Playback Volume=0
Mix K Input 14 Playback Volume=0
Mix K Input 15 Playback Volume=0
Mix K Input 16 Playback Volume=0
Mix K Input 17 Playback Volume=0
Mix K Input 18 Playback Volume=0
Mix K Input 19 Playback Volume=0
Mix K Input 20 Playback Volume=0
Mix K Input 21 Playback Volume=0
Mix K Input 22 Playback Volume=0
Mix K Input 23 Playback Volume=0
Mix K Input 24 Playback Volume=0
Mix K Input 25 Playback Volume=0
Mix K Input 26 Playback Volume=0
Mix K Input 27 Playback Volume=0
Mix K Input 28 Playback Volume=0
Mix K Input 29 Playback Volume=0
Mix K Input 30 Playback Volume=0
Mix K Input 31 Playback Volume=0
Mix K Input 32 Playback Volume=0
Mix K Input 33 Playback Volume=0
Mix K Input 34 Playback Volume=0
Mix K Input 35 Playback Volume=0
Mix K Input 36 Playback Volume=0
Mix L Input 01 Playback Volume=0
Mix L Input 02 Playback Volume=0
Mix L Input 03 Playback Volume=0
Mix L Input 04 Playback Volume=0
Mix L Input 05 Playback Volume=0
Mix L Input 06 Playback Volume=0
Mix L Input 07 Playback Volume=0
Mix L Input 08 Playback Volume=0
Mix L Input 09 Playback Volume=0
Mix L Input 10 Playback Volume=0
Mix L Input 11 Playback Volume=0
Mix L Input 12 Playback Volume=0
Mix L Input 13 Playback Volume=0
Mix L Input 14 Playback Volume=0
Mix L Input 15 Playback Volume=0
Mix L Input 16 Playback Volume=0
Mix L Input 17 Playback Volume=0
Mix L Input 18 Playback Volume=0
Mix L Input 19 Playback Volume=0
Mix L Input 20 Playback Volume=0
Mix L Input 21 Playback Volume=0
Mix L Input 22 Playback Volume=0
Mix L Input 23 Playback Volume=0
Mix L Input 24 Playback Volume=0
Mix L Input 25 Playback Volume=0
Mix L Input 26 Playback Volume=0
Mix L Input 27 Playback Volume=0
Mix L Input 28 Playback Volume=0
Mix L Input 29 Playback Volume=0
Mix L Input 30 Playback Volume=0
Mix L Input 31 Playback Volume=0
Mix L Input 32 Playback Volume=0
Mix L Input 33 Playback Volume=0
Mix L Input 34 Playback Volume=0
Mix L Input 35 Playback Volume=0
Mix L Input 36 Playback Volume=0
Analogue 1 Playback Enum=Mix A
Analogue 2 Playback Enum=Mix B
Analogue 3 Playback Enum=PCM 3
Analogue 4 Playback Enum=PCM 4
Analogue 5 Playback Enum=Mix A
Analogue 6 Playback Enum=Mix B
Analogue 7 Playback Enum=Mix A
Analogue 8 Playback Enum=Mix B
S/PDIF 1 Playback Enum=PCM 5
S/PDIF 2 Playback Enum=PCM 6
ADAT 1 Playback Enum=PCM 7
ADAT 2 Playback Enum=PCM 8
ADAT 3 Playback Enum=PCM 9
ADAT 4 Playback Enum=PCM 10
ADAT 5 Playback Enum=PCM 11
ADAT 6 Playback Enum=PCM 12
ADAT 7 Playback Enum=PCM 13
ADAT 8 Playback Enum=PCM 14
PCM 1 Capture Enum=Analogue 1
PCM 2 Capture Enum=Analogue 2
PCM 3 Capture Enum=Analogue 3
PCM 4 Capture Enum=Analogue 4
PCM 5 Capture Enum=Analogue 5
PCM 6 Capture Enum=Analogue 6
PCM 7 Capture Enum=Analogue 7
PCM 8 Capture Enum=Analogue 8
PCM 9 Capture Enum=PCM 1
PCM 10 Capture Enum=PCM 2
PCM 11 Capture Enum=S/PDIF 1
PCM 12 Capture Enum=S/PDIF 2
PCM 13 Capture Enum=ADAT 1
PCM 14 Capture Enum=ADAT 2
PCM 15 Capture Enum=ADAT 3
PCM 16 Capture Enum=ADAT 4
PCM 17 Capture Enum=ADAT 5
PCM 18 Capture Enum=ADAT 6
PCM 19 Capture Enum=ADAT 7
PCM 20 Capture Enum=ADAT 8
Line In 1 Air Capture Enum=Off
Line In 1 Autogain Capture Switch=false
Line In 1 Autogain Status Capture Enum=Root
Line In 1 Link Capture Switch=false
Line In 1 Safe Capture Switch=false
Line In 1 Level Capture Enum=Line
Line In 1 Phantom Power Capture Switch=false
Line In 1 Gain Capture Volume=0
Line In 2 Air Capture Enum=Off
Line In 2 Autogain Capture Switch=false
Line In 2 Autogain Status Capture Enum=Root
Line In 2 Link Capture Switch=false
Line In 2 Safe Capture Switch=false
Line In 2 Level Capture Enum=Line
Line In 2 Phantom Power Capture Switch=false
Line In 2 Gain Capture Volume=0
Line In 3 Air Capture Enum=Off
Line In 3 Autogain Capture Switch=false
Line In 3 Autogain Status Capture Enum=Root
Line In 3 Link Capture Switch=false
Line In 3 Safe Capture Switch=false
Line In 3 Phantom Power Capture Switch=false
Line In 3 Gain Capture Volume=0
Line In 4 Air Capture Enum=Off
Line In 4 Autogain Capture Switch=false
Line In 4 Autogain Status Capture Enum=Root
Line In 4 Link Capture Switch=false
Line In 4 Safe Capture Switch=false
Line In 4 Phantom Power Capture Switch=false
Line In 4 Gain Capture Volume=5
Analogue 1 Playback Volume=-127
Analogue 2 Playback Volume=-127
Analogue 3 Playback Volume=0
Analogue 4 Playback Volume=0
Analogue 5 Playback Volume=-127
Analogue 6 Playback Volume=-127
Analogue 7 Playback Volume=-127
Analogue 8 Playback Volume=-127
Main Group Output 1 Playback Switch=true
Main Group Output 2 Playback Switch=true
Main Group Output 3 Playback Switch=false
Main Group Output 4 Playback Switch=false
Main Group Output 5 Playback Switch=false
Main Group Output 6 Playback Switch=false
Main Group Output 7 Playback Switch=false
Main Group Output 8 Playback Switch=false
Main Group Output 1 Source Playback Enum=Mix A
Main Group Output 2 Source Playback Enum=Mix B
Main Group Output 3 Source Playback Enum=PCM 1
Main Group Output 4 Source Playback Enum=PCM 1
Main Group Output 5 Source Playback Enum=PCM 1
Main Group Output 6 Source Playback Enum=PCM 1
Main Group Output 7 Source Playback Enum=PCM 1
Main Group Output 8 Source Playback Enum=PCM 1
Main Group Output 1 Trim Playback Volume=0
Main Group Output 2 Trim Playback Volume=0
Main Group Output 3 Trim Playback Volume=0
Main Group Output 4 Trim Playback Volume=0
Main Group Output 5 Trim Playback Volume=0
Main Group Output 6 Trim Playback Volume=0
Main Group Output 7 Trim Playback Volume=0
Main Group Output 8 Trim Playback Volume=0
Alt Group Output 1 Playback Switch=false
Alt Group Output 2 Playback Switch=false
Alt Group Output 3 Playback Switch=false
Alt Group Output 4 Playback Switch=false
Alt Group Output 5 Playback Switch=false
Alt Group Output 6 Playback Switch=false
Alt Group Output 7 Playback Switch=false
Alt Group Output 8 Playback Switch=false
Alt Group Output 1 Source Playback Enum=PCM 1
Alt Group Output 2 Source Playback Enum=PCM 1
Alt Group Output 3 Source Playback Enum=PCM 3
Alt Group Output 4 Source Playback Enum=PCM 4
Alt Group Output 5 Source Playback Enum=PCM 1
Alt Group Output 6 Source Playback Enum=PCM 1
Alt Group Output 7 Source Playback Enum=PCM 1
Alt Group Output 8 Source Playback Enum=PCM 1
Alt Group Output 1 Trim Playback Volume=0
Alt Group Output 2 Trim Playback Volume=0
Alt Group Output 3 Trim Playback Volume=0
Alt Group Output 4 Trim Playback Volume=0
Alt Group Output 5 Trim Playback Volume=0
Alt Group Output 6 Trim Playback Volume=0
Alt Group Output 7 Trim Playback Volume=0
Alt Group Output 8 Trim Playback Volume=0
Name=Scarlett 18i16 4th Gen-4A
Input Select Capture Enum=Input 1
Master Playback Volume=-127
Mute Playback Switch=false
Dim Playback Switch=false
Speaker Switching Playback Switch=false
Speaker Switching Alt Playback Switch=false
Digital I/O Mode Capture Enum=S/PDIF RCA
Standalone Switch=true
Phantom Power Persistence Capture Switch=false
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
Analogue In 7 Name=
Analogue In 8 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
PCM Out 7 Name=
PCM Out 8 Name=
PCM Out 9 Name=
PCM Out 10 Name=
PCM Out 11 Name=
PCM Out 12 Name=
PCM Out 13 Name=
PCM Out 14 Name=
PCM Out 15 Name=
PCM Out 16 Name=
PCM Out 17 Name=
PCM Out 18 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
Mixer Out 11 Name=
Mixer Out 12 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
Analogue Out 7 Name=
Analogue Out 8 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
ADAT Out 1 Name=
ADAT Out 2 Name=
ADAT Out 3 Name=
ADAT Out 4 Name=
ADAT Out 5 Name=
ADAT Out 6 Name=
ADAT Out 7 Name=
ADAT Out 8 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
PCM In 15 Name=
PCM In 16 Name=
PCM In 17 Name=
PCM In 18 Name=
PCM In 19 Name=
PCM In 20 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
Mixer In 19 Name=
Mixer In 20 Name=
Mixer In 21 Name=
Mixer In 22 Name=
Mixer In 23 Name=
Mixer In 24 Name=
Mixer In 25 Name=
Mixer In 26 Name=
Mixer In 27 Name=
Mixer In 28 Name=
Mixer In 29 Name=
Mixer In 30 Name=
Mixer In 31 Name=
Mixer In 32 Name=
Mixer In 33 Name=
Mixer In 34 Name=
Mixer In 35 Name=
Mixer In 36 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
Analogue In 7 Switch=true
Analogue In 8 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
PCM Out 7 Switch=true
PCM Out 8 Switch=true
PCM Out 9 Switch=true
PCM Out 10 Switch=true
PCM Out 11 Switch=true
PCM Out 12 Switch=true
PCM Out 13 Switch=true
PCM Out 14 Switch=true
PCM Out 15 Switch=true
PCM Out 16 Switch=true
PCM Out 17 Switch=true
PCM Out 18 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
Mixer Out 11 Switch=true
Mixer Out 12 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
Analogue Out 7 Switch=true
Analogue Out 8 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
ADAT Out 1 Switch=true
ADAT Out 2 Switch=true
ADAT Out 3 Switch=true
ADAT Out 4 Switch=true
ADAT Out 5 Switch=true
ADAT Out 6 Switch=true
ADAT Out 7 Switch=true
ADAT Out 8 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
PCM In 15 Switch=true
PCM In 16 Switch=true
PCM In 17 Switch=true
PCM In 18 Switch=true
PCM In 19 Switch=true
PCM In 20 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
Mixer In 19 Switch=true
Mixer In 20 Switch=true
Mixer In 21 Switch=true
Mixer In 22 Switch=true
Mixer In 23 Switch=true
Mixer In 24 Switch=true
Mixer In 25 Switch=true
Mixer In 26 Switch=true
Mixer In 27 Switch=true
Mixer In 28 Switch=true
Mixer In 29 Switch=true
Mixer In 30 Switch=true
Mixer In 31 Switch=true
Mixer In 32 Switch=true
Mixer In 33 Switch=true
Mixer In 34 Switch=true
Mixer In 35 Switch=true
Mixer In 36 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 18i16.state 0000664 0000000 0000000 00000730474 15212330051 0023143 0 ustar 00root root 0000000 0000000 state.Gen {
control.1 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.2 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'ADAT Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 ADAT
}
}
control.5 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.6 {
iface PCM
name 'Level Meter'
value.0 1
value.1 1
value.2 1
value.3 1
value.4 1
value.5 1
value.6 1
value.7 1
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
value.44 0
value.45 0
value.46 0
value.47 0
value.48 0
value.49 0
value.50 0
value.51 0
value.52 0
value.53 0
value.54 0
value.55 0
comment {
access 'read volatile'
type INTEGER
count 56
range '0 - 4095 (step 1)'
}
}
control.7 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.8 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.9 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.10 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.11 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.12 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.13 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.14 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.15 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.16 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.17 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.18 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.19 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.20 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.21 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.22 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.23 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.24 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.25 {
iface MIXER
name 'Mix A Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.26 {
iface MIXER
name 'Mix A Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.27 {
iface MIXER
name 'Mix A Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.28 {
iface MIXER
name 'Mix A Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.29 {
iface MIXER
name 'Mix A Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.30 {
iface MIXER
name 'Mix A Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.31 {
iface MIXER
name 'Mix A Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.32 {
iface MIXER
name 'Mix A Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.33 {
iface MIXER
name 'Mix A Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.34 {
iface MIXER
name 'Mix A Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.35 {
iface MIXER
name 'Mix A Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.36 {
iface MIXER
name 'Mix A Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.37 {
iface MIXER
name 'Mix A Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.38 {
iface MIXER
name 'Mix A Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.39 {
iface MIXER
name 'Mix A Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.40 {
iface MIXER
name 'Mix A Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.41 {
iface MIXER
name 'Mix A Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.42 {
iface MIXER
name 'Mix A Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.43 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.44 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.45 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.46 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.47 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.48 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.49 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.50 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.51 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.52 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.53 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.54 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.55 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.56 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.57 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.58 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.59 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.60 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.61 {
iface MIXER
name 'Mix B Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.62 {
iface MIXER
name 'Mix B Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.63 {
iface MIXER
name 'Mix B Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.64 {
iface MIXER
name 'Mix B Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.65 {
iface MIXER
name 'Mix B Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.66 {
iface MIXER
name 'Mix B Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.67 {
iface MIXER
name 'Mix B Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.68 {
iface MIXER
name 'Mix B Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.69 {
iface MIXER
name 'Mix B Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.70 {
iface MIXER
name 'Mix B Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.71 {
iface MIXER
name 'Mix B Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.72 {
iface MIXER
name 'Mix B Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.73 {
iface MIXER
name 'Mix B Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.74 {
iface MIXER
name 'Mix B Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.75 {
iface MIXER
name 'Mix B Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.76 {
iface MIXER
name 'Mix B Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.77 {
iface MIXER
name 'Mix B Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.78 {
iface MIXER
name 'Mix B Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.79 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.80 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.81 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.82 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.83 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.84 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.85 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.86 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.87 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.88 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.89 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.90 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.91 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.92 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.93 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.94 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.95 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.96 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.97 {
iface MIXER
name 'Mix C Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.98 {
iface MIXER
name 'Mix C Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.99 {
iface MIXER
name 'Mix C Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.100 {
iface MIXER
name 'Mix C Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.101 {
iface MIXER
name 'Mix C Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.102 {
iface MIXER
name 'Mix C Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.103 {
iface MIXER
name 'Mix C Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.104 {
iface MIXER
name 'Mix C Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.105 {
iface MIXER
name 'Mix C Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.106 {
iface MIXER
name 'Mix C Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.107 {
iface MIXER
name 'Mix C Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.108 {
iface MIXER
name 'Mix C Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.109 {
iface MIXER
name 'Mix C Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.110 {
iface MIXER
name 'Mix C Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.111 {
iface MIXER
name 'Mix C Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.112 {
iface MIXER
name 'Mix C Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.113 {
iface MIXER
name 'Mix C Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.114 {
iface MIXER
name 'Mix C Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.115 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.116 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.117 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.118 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.119 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.120 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.121 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.122 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.123 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.124 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.125 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.126 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.127 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.128 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.129 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.130 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.131 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.132 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.133 {
iface MIXER
name 'Mix D Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.134 {
iface MIXER
name 'Mix D Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.135 {
iface MIXER
name 'Mix D Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.136 {
iface MIXER
name 'Mix D Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.137 {
iface MIXER
name 'Mix D Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.138 {
iface MIXER
name 'Mix D Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.139 {
iface MIXER
name 'Mix D Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.140 {
iface MIXER
name 'Mix D Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.141 {
iface MIXER
name 'Mix D Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.142 {
iface MIXER
name 'Mix D Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.143 {
iface MIXER
name 'Mix D Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.144 {
iface MIXER
name 'Mix D Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.145 {
iface MIXER
name 'Mix D Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.146 {
iface MIXER
name 'Mix D Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.147 {
iface MIXER
name 'Mix D Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.148 {
iface MIXER
name 'Mix D Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.149 {
iface MIXER
name 'Mix D Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.150 {
iface MIXER
name 'Mix D Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.151 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.152 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.153 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.154 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.155 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.156 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.157 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.158 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.159 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.160 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.161 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.162 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.163 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.164 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.165 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.166 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.167 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.168 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.169 {
iface MIXER
name 'Mix E Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.170 {
iface MIXER
name 'Mix E Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.171 {
iface MIXER
name 'Mix E Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.172 {
iface MIXER
name 'Mix E Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.173 {
iface MIXER
name 'Mix E Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.174 {
iface MIXER
name 'Mix E Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.175 {
iface MIXER
name 'Mix E Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.176 {
iface MIXER
name 'Mix E Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.177 {
iface MIXER
name 'Mix E Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.178 {
iface MIXER
name 'Mix E Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.179 {
iface MIXER
name 'Mix E Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.180 {
iface MIXER
name 'Mix E Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.181 {
iface MIXER
name 'Mix E Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.182 {
iface MIXER
name 'Mix E Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.183 {
iface MIXER
name 'Mix E Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.184 {
iface MIXER
name 'Mix E Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.185 {
iface MIXER
name 'Mix E Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.186 {
iface MIXER
name 'Mix E Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.187 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.188 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.189 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.190 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.191 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.192 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.193 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.194 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.195 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.196 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.197 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.198 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.199 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.200 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.201 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.202 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.203 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.204 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.205 {
iface MIXER
name 'Mix F Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.206 {
iface MIXER
name 'Mix F Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.207 {
iface MIXER
name 'Mix F Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.208 {
iface MIXER
name 'Mix F Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.209 {
iface MIXER
name 'Mix F Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.210 {
iface MIXER
name 'Mix F Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.211 {
iface MIXER
name 'Mix F Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.212 {
iface MIXER
name 'Mix F Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.213 {
iface MIXER
name 'Mix F Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.214 {
iface MIXER
name 'Mix F Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.215 {
iface MIXER
name 'Mix F Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.216 {
iface MIXER
name 'Mix F Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.217 {
iface MIXER
name 'Mix F Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.218 {
iface MIXER
name 'Mix F Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.219 {
iface MIXER
name 'Mix F Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.220 {
iface MIXER
name 'Mix F Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.221 {
iface MIXER
name 'Mix F Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.222 {
iface MIXER
name 'Mix F Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.223 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.224 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.225 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.226 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.227 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.228 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.229 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.230 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.231 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.232 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.233 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.234 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.235 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.236 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.237 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.238 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.239 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.240 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.241 {
iface MIXER
name 'Mix G Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.242 {
iface MIXER
name 'Mix G Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.243 {
iface MIXER
name 'Mix G Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.244 {
iface MIXER
name 'Mix G Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.245 {
iface MIXER
name 'Mix G Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.246 {
iface MIXER
name 'Mix G Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.247 {
iface MIXER
name 'Mix G Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.248 {
iface MIXER
name 'Mix G Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.249 {
iface MIXER
name 'Mix G Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.250 {
iface MIXER
name 'Mix G Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.251 {
iface MIXER
name 'Mix G Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.252 {
iface MIXER
name 'Mix G Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.253 {
iface MIXER
name 'Mix G Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.254 {
iface MIXER
name 'Mix G Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.255 {
iface MIXER
name 'Mix G Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.256 {
iface MIXER
name 'Mix G Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.257 {
iface MIXER
name 'Mix G Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.258 {
iface MIXER
name 'Mix G Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.259 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.260 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.261 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.262 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.263 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.264 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.265 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.266 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.267 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.268 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.269 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.270 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.271 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.272 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.273 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.274 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.275 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.276 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.277 {
iface MIXER
name 'Mix H Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.278 {
iface MIXER
name 'Mix H Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.279 {
iface MIXER
name 'Mix H Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.280 {
iface MIXER
name 'Mix H Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.281 {
iface MIXER
name 'Mix H Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.282 {
iface MIXER
name 'Mix H Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.283 {
iface MIXER
name 'Mix H Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.284 {
iface MIXER
name 'Mix H Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.285 {
iface MIXER
name 'Mix H Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.286 {
iface MIXER
name 'Mix H Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.287 {
iface MIXER
name 'Mix H Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.288 {
iface MIXER
name 'Mix H Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.289 {
iface MIXER
name 'Mix H Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.290 {
iface MIXER
name 'Mix H Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.291 {
iface MIXER
name 'Mix H Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.292 {
iface MIXER
name 'Mix H Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.293 {
iface MIXER
name 'Mix H Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.294 {
iface MIXER
name 'Mix H Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.295 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.296 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.297 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.298 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.299 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.300 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.301 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.302 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.303 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.304 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.305 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.306 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.307 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.308 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.309 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.310 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.311 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.312 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.313 {
iface MIXER
name 'Mix I Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.314 {
iface MIXER
name 'Mix I Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.315 {
iface MIXER
name 'Mix I Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.316 {
iface MIXER
name 'Mix I Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.317 {
iface MIXER
name 'Mix I Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.318 {
iface MIXER
name 'Mix I Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.319 {
iface MIXER
name 'Mix I Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.320 {
iface MIXER
name 'Mix I Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.321 {
iface MIXER
name 'Mix I Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.322 {
iface MIXER
name 'Mix I Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.323 {
iface MIXER
name 'Mix I Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.324 {
iface MIXER
name 'Mix I Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.325 {
iface MIXER
name 'Mix I Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.326 {
iface MIXER
name 'Mix I Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.327 {
iface MIXER
name 'Mix I Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.328 {
iface MIXER
name 'Mix I Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.329 {
iface MIXER
name 'Mix I Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.330 {
iface MIXER
name 'Mix I Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.331 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.332 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.333 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.334 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.335 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.336 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.337 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.338 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.339 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.340 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.341 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.342 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.343 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.344 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.345 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.346 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.347 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.348 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.349 {
iface MIXER
name 'Mix J Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.350 {
iface MIXER
name 'Mix J Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.351 {
iface MIXER
name 'Mix J Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.352 {
iface MIXER
name 'Mix J Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.353 {
iface MIXER
name 'Mix J Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.354 {
iface MIXER
name 'Mix J Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.355 {
iface MIXER
name 'Mix J Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.356 {
iface MIXER
name 'Mix J Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.357 {
iface MIXER
name 'Mix J Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.358 {
iface MIXER
name 'Mix J Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.359 {
iface MIXER
name 'Mix J Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.360 {
iface MIXER
name 'Mix J Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.361 {
iface MIXER
name 'Mix J Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.362 {
iface MIXER
name 'Mix J Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.363 {
iface MIXER
name 'Mix J Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.364 {
iface MIXER
name 'Mix J Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.365 {
iface MIXER
name 'Mix J Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.366 {
iface MIXER
name 'Mix J Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.367 {
iface MIXER
name 'Mix K Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.368 {
iface MIXER
name 'Mix K Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.369 {
iface MIXER
name 'Mix K Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.370 {
iface MIXER
name 'Mix K Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.371 {
iface MIXER
name 'Mix K Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.372 {
iface MIXER
name 'Mix K Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.373 {
iface MIXER
name 'Mix K Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.374 {
iface MIXER
name 'Mix K Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.375 {
iface MIXER
name 'Mix K Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.376 {
iface MIXER
name 'Mix K Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.377 {
iface MIXER
name 'Mix K Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.378 {
iface MIXER
name 'Mix K Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.379 {
iface MIXER
name 'Mix K Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.380 {
iface MIXER
name 'Mix K Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.381 {
iface MIXER
name 'Mix K Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.382 {
iface MIXER
name 'Mix K Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.383 {
iface MIXER
name 'Mix K Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.384 {
iface MIXER
name 'Mix K Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.385 {
iface MIXER
name 'Mix K Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.386 {
iface MIXER
name 'Mix K Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.387 {
iface MIXER
name 'Mix K Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.388 {
iface MIXER
name 'Mix K Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.389 {
iface MIXER
name 'Mix K Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.390 {
iface MIXER
name 'Mix K Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.391 {
iface MIXER
name 'Mix K Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.392 {
iface MIXER
name 'Mix K Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.393 {
iface MIXER
name 'Mix K Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.394 {
iface MIXER
name 'Mix K Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.395 {
iface MIXER
name 'Mix K Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.396 {
iface MIXER
name 'Mix K Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.397 {
iface MIXER
name 'Mix K Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.398 {
iface MIXER
name 'Mix K Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.399 {
iface MIXER
name 'Mix K Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.400 {
iface MIXER
name 'Mix K Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.401 {
iface MIXER
name 'Mix K Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.402 {
iface MIXER
name 'Mix K Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.403 {
iface MIXER
name 'Mix L Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.404 {
iface MIXER
name 'Mix L Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.405 {
iface MIXER
name 'Mix L Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.406 {
iface MIXER
name 'Mix L Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.407 {
iface MIXER
name 'Mix L Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.408 {
iface MIXER
name 'Mix L Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.409 {
iface MIXER
name 'Mix L Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.410 {
iface MIXER
name 'Mix L Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.411 {
iface MIXER
name 'Mix L Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.412 {
iface MIXER
name 'Mix L Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.413 {
iface MIXER
name 'Mix L Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.414 {
iface MIXER
name 'Mix L Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.415 {
iface MIXER
name 'Mix L Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.416 {
iface MIXER
name 'Mix L Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.417 {
iface MIXER
name 'Mix L Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.418 {
iface MIXER
name 'Mix L Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.419 {
iface MIXER
name 'Mix L Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.420 {
iface MIXER
name 'Mix L Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.421 {
iface MIXER
name 'Mix L Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.422 {
iface MIXER
name 'Mix L Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.423 {
iface MIXER
name 'Mix L Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.424 {
iface MIXER
name 'Mix L Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.425 {
iface MIXER
name 'Mix L Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.426 {
iface MIXER
name 'Mix L Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.427 {
iface MIXER
name 'Mix L Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.428 {
iface MIXER
name 'Mix L Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.429 {
iface MIXER
name 'Mix L Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.430 {
iface MIXER
name 'Mix L Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.431 {
iface MIXER
name 'Mix L Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.432 {
iface MIXER
name 'Mix L Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.433 {
iface MIXER
name 'Mix L Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.434 {
iface MIXER
name 'Mix L Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.435 {
iface MIXER
name 'Mix L Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.436 {
iface MIXER
name 'Mix L Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.437 {
iface MIXER
name 'Mix L Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.438 {
iface MIXER
name 'Mix L Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.439 {
iface MIXER
name 'Analogue 1 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.440 {
iface MIXER
name 'Analogue 2 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.441 {
iface MIXER
name 'Analogue 3 Playback Enum'
value 'PCM 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.442 {
iface MIXER
name 'Analogue 4 Playback Enum'
value 'PCM 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.443 {
iface MIXER
name 'Analogue 5 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.444 {
iface MIXER
name 'Analogue 6 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.445 {
iface MIXER
name 'Analogue 7 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.446 {
iface MIXER
name 'Analogue 8 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.447 {
iface MIXER
name 'S/PDIF 1 Playback Enum'
value 'PCM 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.448 {
iface MIXER
name 'S/PDIF 2 Playback Enum'
value 'PCM 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.449 {
iface MIXER
name 'ADAT 1 Playback Enum'
value 'PCM 7'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.450 {
iface MIXER
name 'ADAT 2 Playback Enum'
value 'PCM 8'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.451 {
iface MIXER
name 'ADAT 3 Playback Enum'
value 'PCM 9'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.452 {
iface MIXER
name 'ADAT 4 Playback Enum'
value 'PCM 10'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.453 {
iface MIXER
name 'ADAT 5 Playback Enum'
value 'PCM 11'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.454 {
iface MIXER
name 'ADAT 6 Playback Enum'
value 'PCM 12'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.455 {
iface MIXER
name 'ADAT 7 Playback Enum'
value 'PCM 13'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.456 {
iface MIXER
name 'ADAT 8 Playback Enum'
value 'PCM 14'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.457 {
iface MIXER
name 'PCM 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.458 {
iface MIXER
name 'PCM 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.459 {
iface MIXER
name 'PCM 3 Capture Enum'
value 'Analogue 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.460 {
iface MIXER
name 'PCM 4 Capture Enum'
value 'Analogue 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.461 {
iface MIXER
name 'PCM 5 Capture Enum'
value 'Analogue 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.462 {
iface MIXER
name 'PCM 6 Capture Enum'
value 'Analogue 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.463 {
iface MIXER
name 'PCM 7 Capture Enum'
value 'Analogue 7'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.464 {
iface MIXER
name 'PCM 8 Capture Enum'
value 'Analogue 8'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.465 {
iface MIXER
name 'PCM 9 Capture Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.466 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.467 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.468 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.469 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.470 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.471 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.472 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.473 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.474 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.475 {
iface MIXER
name 'PCM 19 Capture Enum'
value 'ADAT 7'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.476 {
iface MIXER
name 'PCM 20 Capture Enum'
value 'ADAT 8'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.477 {
iface MIXER
name 'Mixer 1 Capture Enum'
value 'PCM 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.478 {
iface MIXER
name 'Mixer 2 Capture Enum'
value 'PCM 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.479 {
iface MIXER
name 'Mixer 3 Capture Enum'
value 'PCM 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.480 {
iface MIXER
name 'Mixer 4 Capture Enum'
value 'PCM 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.481 {
iface MIXER
name 'Mixer 5 Capture Enum'
value 'PCM 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.482 {
iface MIXER
name 'Mixer 6 Capture Enum'
value 'PCM 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.483 {
iface MIXER
name 'Mixer 7 Capture Enum'
value 'PCM 7'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.484 {
iface MIXER
name 'Mixer 8 Capture Enum'
value 'PCM 8'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.485 {
iface MIXER
name 'Mixer 9 Capture Enum'
value 'PCM 9'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.486 {
iface MIXER
name 'Mixer 10 Capture Enum'
value 'PCM 10'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.487 {
iface MIXER
name 'Mixer 11 Capture Enum'
value 'PCM 11'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.488 {
iface MIXER
name 'Mixer 12 Capture Enum'
value 'PCM 12'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.489 {
iface MIXER
name 'Mixer 13 Capture Enum'
value 'PCM 13'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.490 {
iface MIXER
name 'Mixer 14 Capture Enum'
value 'PCM 14'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.491 {
iface MIXER
name 'Mixer 15 Capture Enum'
value 'PCM 15'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.492 {
iface MIXER
name 'Mixer 16 Capture Enum'
value 'PCM 16'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.493 {
iface MIXER
name 'Mixer 17 Capture Enum'
value 'PCM 17'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.494 {
iface MIXER
name 'Mixer 18 Capture Enum'
value 'PCM 18'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.495 {
iface MIXER
name 'Mixer 19 Capture Enum'
value 'Analogue 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.496 {
iface MIXER
name 'Mixer 20 Capture Enum'
value 'Analogue 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.497 {
iface MIXER
name 'Mixer 21 Capture Enum'
value 'Analogue 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.498 {
iface MIXER
name 'Mixer 22 Capture Enum'
value 'Analogue 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.499 {
iface MIXER
name 'Mixer 23 Capture Enum'
value 'Analogue 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.500 {
iface MIXER
name 'Mixer 24 Capture Enum'
value 'Analogue 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.501 {
iface MIXER
name 'Mixer 25 Capture Enum'
value 'Analogue 7'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.502 {
iface MIXER
name 'Mixer 26 Capture Enum'
value 'Analogue 8'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.503 {
iface MIXER
name 'Mixer 27 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.504 {
iface MIXER
name 'Mixer 28 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.505 {
iface MIXER
name 'Mixer 29 Capture Enum'
value 'ADAT 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.506 {
iface MIXER
name 'Mixer 30 Capture Enum'
value 'ADAT 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.507 {
iface MIXER
name 'Mixer 31 Capture Enum'
value 'ADAT 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.508 {
iface MIXER
name 'Mixer 32 Capture Enum'
value 'ADAT 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.509 {
iface MIXER
name 'Mixer 33 Capture Enum'
value 'ADAT 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.510 {
iface MIXER
name 'Mixer 34 Capture Enum'
value 'ADAT 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.511 {
iface MIXER
name 'Mixer 35 Capture Enum'
value 'ADAT 7'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.512 {
iface MIXER
name 'Mixer 36 Capture Enum'
value 'ADAT 8'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
item.23 'PCM 5'
item.24 'PCM 6'
item.25 'PCM 7'
item.26 'PCM 8'
item.27 'PCM 9'
item.28 'PCM 10'
item.29 'PCM 11'
item.30 'PCM 12'
item.31 'PCM 13'
item.32 'PCM 14'
item.33 'PCM 15'
item.34 'PCM 16'
item.35 'PCM 17'
item.36 'PCM 18'
item.37 'Mix A'
item.38 'Mix B'
item.39 'Mix C'
item.40 'Mix D'
item.41 'Mix E'
item.42 'Mix F'
item.43 'Mix G'
item.44 'Mix H'
item.45 'Mix I'
item.46 'Mix J'
item.47 'Mix K'
item.48 'Mix L'
}
}
control.513 {
iface MIXER
name 'Line In 1 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.514 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.515 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.516 {
iface MIXER
name 'Line In 1 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.517 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.518 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.519 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.520 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.521 {
iface MIXER
name 'Line In 2 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.522 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.523 {
iface MIXER
name 'Line In 2 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.524 {
iface MIXER
name 'Line In 2 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.525 {
iface MIXER
name 'Line In 2 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.526 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.527 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.528 {
iface MIXER
name 'Line In 2 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.529 {
iface MIXER
name 'Line In 3 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.530 {
iface MIXER
name 'Line In 3 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.531 {
iface MIXER
name 'Line In 3 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.532 {
iface MIXER
name 'Line In 3 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.533 {
iface MIXER
name 'Line In 3 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.534 {
iface MIXER
name 'Line In 3 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.535 {
iface MIXER
name 'Line In 3 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.536 {
iface MIXER
name 'Line In 4 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.537 {
iface MIXER
name 'Line In 4 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.538 {
iface MIXER
name 'Line In 4 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.539 {
iface MIXER
name 'Line In 4 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.540 {
iface MIXER
name 'Line In 4 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.541 {
iface MIXER
name 'Line In 4 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.542 {
iface MIXER
name 'Line In 4 Gain Capture Volume'
value 5
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 492
}
}
control.543 {
iface MIXER
name 'Analogue 1 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.544 {
iface MIXER
name 'Analogue 2 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.545 {
iface MIXER
name 'Analogue 3 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.546 {
iface MIXER
name 'Analogue 4 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.547 {
iface MIXER
name 'Analogue 5 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.548 {
iface MIXER
name 'Analogue 6 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.549 {
iface MIXER
name 'Analogue 7 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.550 {
iface MIXER
name 'Analogue 8 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.551 {
iface MIXER
name 'Main Group Output 1 Playback Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.552 {
iface MIXER
name 'Main Group Output 2 Playback Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.553 {
iface MIXER
name 'Main Group Output 3 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.554 {
iface MIXER
name 'Main Group Output 4 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.555 {
iface MIXER
name 'Main Group Output 5 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.556 {
iface MIXER
name 'Main Group Output 6 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.557 {
iface MIXER
name 'Main Group Output 7 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.558 {
iface MIXER
name 'Main Group Output 8 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.559 {
iface MIXER
name 'Main Group Output 1 Source Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.560 {
iface MIXER
name 'Main Group Output 2 Source Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.561 {
iface MIXER
name 'Main Group Output 3 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.562 {
iface MIXER
name 'Main Group Output 4 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.563 {
iface MIXER
name 'Main Group Output 5 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.564 {
iface MIXER
name 'Main Group Output 6 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.565 {
iface MIXER
name 'Main Group Output 7 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.566 {
iface MIXER
name 'Main Group Output 8 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.567 {
iface MIXER
name 'Main Group Output 1 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.568 {
iface MIXER
name 'Main Group Output 2 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.569 {
iface MIXER
name 'Main Group Output 3 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.570 {
iface MIXER
name 'Main Group Output 4 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.571 {
iface MIXER
name 'Main Group Output 5 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.572 {
iface MIXER
name 'Main Group Output 6 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.573 {
iface MIXER
name 'Main Group Output 7 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.574 {
iface MIXER
name 'Main Group Output 8 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.575 {
iface MIXER
name 'Alt Group Output 1 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.576 {
iface MIXER
name 'Alt Group Output 2 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.577 {
iface MIXER
name 'Alt Group Output 3 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.578 {
iface MIXER
name 'Alt Group Output 4 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.579 {
iface MIXER
name 'Alt Group Output 5 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.580 {
iface MIXER
name 'Alt Group Output 6 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.581 {
iface MIXER
name 'Alt Group Output 7 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.582 {
iface MIXER
name 'Alt Group Output 8 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.583 {
iface MIXER
name 'Alt Group Output 1 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.584 {
iface MIXER
name 'Alt Group Output 2 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.585 {
iface MIXER
name 'Alt Group Output 3 Source Playback Enum'
value 'PCM 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.586 {
iface MIXER
name 'Alt Group Output 4 Source Playback Enum'
value 'PCM 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.587 {
iface MIXER
name 'Alt Group Output 5 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.588 {
iface MIXER
name 'Alt Group Output 6 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.589 {
iface MIXER
name 'Alt Group Output 7 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.590 {
iface MIXER
name 'Alt Group Output 8 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'Analogue 1'
item.19 'Analogue 2'
item.20 'Analogue 3'
item.21 'Analogue 4'
item.22 'Analogue 5'
item.23 'Analogue 6'
item.24 'Analogue 7'
item.25 'Analogue 8'
item.26 'S/PDIF 1'
item.27 'S/PDIF 2'
item.28 'ADAT 1'
item.29 'ADAT 2'
item.30 'ADAT 3'
item.31 'ADAT 4'
item.32 'ADAT 5'
item.33 'ADAT 6'
item.34 'ADAT 7'
item.35 'ADAT 8'
item.36 'Mix A'
item.37 'Mix B'
item.38 'Mix C'
item.39 'Mix D'
item.40 'Mix E'
item.41 'Mix F'
item.42 'Mix G'
item.43 'Mix H'
item.44 'Mix I'
item.45 'Mix J'
item.46 'Mix K'
item.47 'Mix L'
}
}
control.591 {
iface MIXER
name 'Alt Group Output 1 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.592 {
iface MIXER
name 'Alt Group Output 2 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.593 {
iface MIXER
name 'Alt Group Output 3 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.594 {
iface MIXER
name 'Alt Group Output 4 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.595 {
iface MIXER
name 'Alt Group Output 5 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.596 {
iface MIXER
name 'Alt Group Output 6 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.597 {
iface MIXER
name 'Alt Group Output 7 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.598 {
iface MIXER
name 'Alt Group Output 8 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.599 {
iface CARD
name 'Firmware Version'
value.0 2
value.1 0
value.2 2464
value.3 0
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
tlv '53434b54000000186e75722f6573752f2f302f722d7063666f732e3000006b63'
}
}
control.600 {
iface MIXER
name Name
value '536361726c657474203138693136203474682047656e2d344100000000000000'
comment {
access 'read write user'
type BYTES
count 32
}
}
control.601 {
iface CARD
name 'ESP Firmware Version'
value.0 1
value.1 0
value.2 0
value.3 364
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
}
}
control.602 {
iface MIXER
name 'Input Select Capture Enum'
value 'Input 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'Input 1'
item.1 'Input 2'
item.2 'Input 3'
item.3 'Input 4'
}
}
control.603 {
iface MIXER
name 'Master Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.604 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.605 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.606 {
iface MIXER
name 'Speaker Switching Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.607 {
iface MIXER
name 'Speaker Switching Alt Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.608 {
iface MIXER
name 'Digital I/O Mode Capture Enum'
value 'S/PDIF RCA'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'S/PDIF RCA'
item.1 'S/PDIF Optical'
}
}
control.609 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.610 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 18i20.conf 0000664 0000000 0000000 00000110463 15212330051 0022731 0 ustar 00root root 0000000 0000000 [device]
serial=S0ES0003800046
model=Scarlett 18i20 4th Gen
[controls]
Clock Source Clock Source=Internal
Mix A Input 01 Playback Volume=8192
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=0
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix A Input 13 Playback Volume=0
Mix A Input 14 Playback Volume=0
Mix A Input 15 Playback Volume=0
Mix A Input 16 Playback Volume=0
Mix A Input 17 Playback Volume=0
Mix A Input 18 Playback Volume=0
Mix A Input 19 Playback Volume=0
Mix A Input 20 Playback Volume=0
Mix A Input 21 Playback Volume=0
Mix A Input 22 Playback Volume=0
Mix A Input 23 Playback Volume=0
Mix A Input 24 Playback Volume=0
Mix A Input 25 Playback Volume=0
Mix A Input 26 Playback Volume=0
Mix A Input 27 Playback Volume=0
Mix A Input 28 Playback Volume=0
Mix A Input 29 Playback Volume=0
Mix A Input 30 Playback Volume=0
Mix A Input 31 Playback Volume=0
Mix A Input 32 Playback Volume=0
Mix A Input 33 Playback Volume=0
Mix A Input 34 Playback Volume=0
Mix A Input 35 Playback Volume=0
Mix A Input 36 Playback Volume=0
Mix A Input 37 Playback Volume=0
Mix A Input 38 Playback Volume=0
Mix A Input 39 Playback Volume=0
Mix A Input 40 Playback Volume=0
Mix A Input 41 Playback Volume=0
Mix A Input 42 Playback Volume=0
Mix A Input 43 Playback Volume=0
Mix A Input 44 Playback Volume=0
Mix A Input 45 Playback Volume=0
Mix A Input 46 Playback Volume=0
Mix A Input 47 Playback Volume=0
Mix A Input 48 Playback Volume=0
Mix A Input 49 Playback Volume=0
Mix A Input 50 Playback Volume=0
Mix A Input 51 Playback Volume=0
Mix A Input 52 Playback Volume=0
Mix A Input 53 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=8192
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=0
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix B Input 13 Playback Volume=0
Mix B Input 14 Playback Volume=0
Mix B Input 15 Playback Volume=0
Mix B Input 16 Playback Volume=0
Mix B Input 17 Playback Volume=0
Mix B Input 18 Playback Volume=0
Mix B Input 19 Playback Volume=0
Mix B Input 20 Playback Volume=0
Mix B Input 21 Playback Volume=0
Mix B Input 22 Playback Volume=0
Mix B Input 23 Playback Volume=0
Mix B Input 24 Playback Volume=0
Mix B Input 25 Playback Volume=0
Mix B Input 26 Playback Volume=0
Mix B Input 27 Playback Volume=0
Mix B Input 28 Playback Volume=0
Mix B Input 29 Playback Volume=0
Mix B Input 30 Playback Volume=0
Mix B Input 31 Playback Volume=0
Mix B Input 32 Playback Volume=0
Mix B Input 33 Playback Volume=0
Mix B Input 34 Playback Volume=0
Mix B Input 35 Playback Volume=0
Mix B Input 36 Playback Volume=0
Mix B Input 37 Playback Volume=0
Mix B Input 38 Playback Volume=0
Mix B Input 39 Playback Volume=0
Mix B Input 40 Playback Volume=0
Mix B Input 41 Playback Volume=0
Mix B Input 42 Playback Volume=0
Mix B Input 43 Playback Volume=0
Mix B Input 44 Playback Volume=0
Mix B Input 45 Playback Volume=0
Mix B Input 46 Playback Volume=0
Mix B Input 47 Playback Volume=0
Mix B Input 48 Playback Volume=0
Mix B Input 49 Playback Volume=0
Mix B Input 50 Playback Volume=0
Mix B Input 51 Playback Volume=0
Mix B Input 52 Playback Volume=0
Mix B Input 53 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=8192
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix C Input 13 Playback Volume=0
Mix C Input 14 Playback Volume=0
Mix C Input 15 Playback Volume=0
Mix C Input 16 Playback Volume=0
Mix C Input 17 Playback Volume=0
Mix C Input 18 Playback Volume=0
Mix C Input 19 Playback Volume=0
Mix C Input 20 Playback Volume=0
Mix C Input 21 Playback Volume=0
Mix C Input 22 Playback Volume=0
Mix C Input 23 Playback Volume=0
Mix C Input 24 Playback Volume=0
Mix C Input 25 Playback Volume=0
Mix C Input 26 Playback Volume=0
Mix C Input 27 Playback Volume=0
Mix C Input 28 Playback Volume=0
Mix C Input 29 Playback Volume=0
Mix C Input 30 Playback Volume=0
Mix C Input 31 Playback Volume=0
Mix C Input 32 Playback Volume=0
Mix C Input 33 Playback Volume=0
Mix C Input 34 Playback Volume=0
Mix C Input 35 Playback Volume=0
Mix C Input 36 Playback Volume=0
Mix C Input 37 Playback Volume=0
Mix C Input 38 Playback Volume=0
Mix C Input 39 Playback Volume=0
Mix C Input 40 Playback Volume=0
Mix C Input 41 Playback Volume=0
Mix C Input 42 Playback Volume=0
Mix C Input 43 Playback Volume=0
Mix C Input 44 Playback Volume=0
Mix C Input 45 Playback Volume=0
Mix C Input 46 Playback Volume=0
Mix C Input 47 Playback Volume=0
Mix C Input 48 Playback Volume=0
Mix C Input 49 Playback Volume=0
Mix C Input 50 Playback Volume=0
Mix C Input 51 Playback Volume=0
Mix C Input 52 Playback Volume=0
Mix C Input 53 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=8192
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix D Input 13 Playback Volume=0
Mix D Input 14 Playback Volume=0
Mix D Input 15 Playback Volume=0
Mix D Input 16 Playback Volume=0
Mix D Input 17 Playback Volume=0
Mix D Input 18 Playback Volume=0
Mix D Input 19 Playback Volume=0
Mix D Input 20 Playback Volume=0
Mix D Input 21 Playback Volume=0
Mix D Input 22 Playback Volume=0
Mix D Input 23 Playback Volume=0
Mix D Input 24 Playback Volume=0
Mix D Input 25 Playback Volume=0
Mix D Input 26 Playback Volume=0
Mix D Input 27 Playback Volume=0
Mix D Input 28 Playback Volume=0
Mix D Input 29 Playback Volume=0
Mix D Input 30 Playback Volume=0
Mix D Input 31 Playback Volume=0
Mix D Input 32 Playback Volume=0
Mix D Input 33 Playback Volume=0
Mix D Input 34 Playback Volume=0
Mix D Input 35 Playback Volume=0
Mix D Input 36 Playback Volume=0
Mix D Input 37 Playback Volume=0
Mix D Input 38 Playback Volume=0
Mix D Input 39 Playback Volume=0
Mix D Input 40 Playback Volume=0
Mix D Input 41 Playback Volume=0
Mix D Input 42 Playback Volume=0
Mix D Input 43 Playback Volume=0
Mix D Input 44 Playback Volume=0
Mix D Input 45 Playback Volume=0
Mix D Input 46 Playback Volume=0
Mix D Input 47 Playback Volume=0
Mix D Input 48 Playback Volume=0
Mix D Input 49 Playback Volume=0
Mix D Input 50 Playback Volume=0
Mix D Input 51 Playback Volume=0
Mix D Input 52 Playback Volume=0
Mix D Input 53 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=8192
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix E Input 13 Playback Volume=0
Mix E Input 14 Playback Volume=0
Mix E Input 15 Playback Volume=0
Mix E Input 16 Playback Volume=0
Mix E Input 17 Playback Volume=0
Mix E Input 18 Playback Volume=0
Mix E Input 19 Playback Volume=0
Mix E Input 20 Playback Volume=0
Mix E Input 21 Playback Volume=0
Mix E Input 22 Playback Volume=0
Mix E Input 23 Playback Volume=0
Mix E Input 24 Playback Volume=0
Mix E Input 25 Playback Volume=0
Mix E Input 26 Playback Volume=0
Mix E Input 27 Playback Volume=0
Mix E Input 28 Playback Volume=0
Mix E Input 29 Playback Volume=0
Mix E Input 30 Playback Volume=0
Mix E Input 31 Playback Volume=0
Mix E Input 32 Playback Volume=0
Mix E Input 33 Playback Volume=0
Mix E Input 34 Playback Volume=0
Mix E Input 35 Playback Volume=0
Mix E Input 36 Playback Volume=0
Mix E Input 37 Playback Volume=0
Mix E Input 38 Playback Volume=0
Mix E Input 39 Playback Volume=0
Mix E Input 40 Playback Volume=0
Mix E Input 41 Playback Volume=0
Mix E Input 42 Playback Volume=0
Mix E Input 43 Playback Volume=0
Mix E Input 44 Playback Volume=0
Mix E Input 45 Playback Volume=0
Mix E Input 46 Playback Volume=0
Mix E Input 47 Playback Volume=0
Mix E Input 48 Playback Volume=0
Mix E Input 49 Playback Volume=0
Mix E Input 50 Playback Volume=0
Mix E Input 51 Playback Volume=0
Mix E Input 52 Playback Volume=0
Mix E Input 53 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=8192
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix F Input 13 Playback Volume=0
Mix F Input 14 Playback Volume=0
Mix F Input 15 Playback Volume=0
Mix F Input 16 Playback Volume=0
Mix F Input 17 Playback Volume=0
Mix F Input 18 Playback Volume=0
Mix F Input 19 Playback Volume=0
Mix F Input 20 Playback Volume=0
Mix F Input 21 Playback Volume=0
Mix F Input 22 Playback Volume=0
Mix F Input 23 Playback Volume=0
Mix F Input 24 Playback Volume=0
Mix F Input 25 Playback Volume=0
Mix F Input 26 Playback Volume=0
Mix F Input 27 Playback Volume=0
Mix F Input 28 Playback Volume=0
Mix F Input 29 Playback Volume=0
Mix F Input 30 Playback Volume=0
Mix F Input 31 Playback Volume=0
Mix F Input 32 Playback Volume=0
Mix F Input 33 Playback Volume=0
Mix F Input 34 Playback Volume=0
Mix F Input 35 Playback Volume=0
Mix F Input 36 Playback Volume=0
Mix F Input 37 Playback Volume=0
Mix F Input 38 Playback Volume=0
Mix F Input 39 Playback Volume=0
Mix F Input 40 Playback Volume=0
Mix F Input 41 Playback Volume=0
Mix F Input 42 Playback Volume=0
Mix F Input 43 Playback Volume=0
Mix F Input 44 Playback Volume=0
Mix F Input 45 Playback Volume=0
Mix F Input 46 Playback Volume=0
Mix F Input 47 Playback Volume=0
Mix F Input 48 Playback Volume=0
Mix F Input 49 Playback Volume=0
Mix F Input 50 Playback Volume=0
Mix F Input 51 Playback Volume=0
Mix F Input 52 Playback Volume=0
Mix F Input 53 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=8192
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=0
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix G Input 13 Playback Volume=0
Mix G Input 14 Playback Volume=0
Mix G Input 15 Playback Volume=0
Mix G Input 16 Playback Volume=0
Mix G Input 17 Playback Volume=0
Mix G Input 18 Playback Volume=0
Mix G Input 19 Playback Volume=0
Mix G Input 20 Playback Volume=0
Mix G Input 21 Playback Volume=0
Mix G Input 22 Playback Volume=0
Mix G Input 23 Playback Volume=0
Mix G Input 24 Playback Volume=0
Mix G Input 25 Playback Volume=0
Mix G Input 26 Playback Volume=0
Mix G Input 27 Playback Volume=0
Mix G Input 28 Playback Volume=0
Mix G Input 29 Playback Volume=0
Mix G Input 30 Playback Volume=0
Mix G Input 31 Playback Volume=0
Mix G Input 32 Playback Volume=0
Mix G Input 33 Playback Volume=0
Mix G Input 34 Playback Volume=0
Mix G Input 35 Playback Volume=0
Mix G Input 36 Playback Volume=0
Mix G Input 37 Playback Volume=0
Mix G Input 38 Playback Volume=0
Mix G Input 39 Playback Volume=0
Mix G Input 40 Playback Volume=0
Mix G Input 41 Playback Volume=0
Mix G Input 42 Playback Volume=0
Mix G Input 43 Playback Volume=0
Mix G Input 44 Playback Volume=0
Mix G Input 45 Playback Volume=0
Mix G Input 46 Playback Volume=0
Mix G Input 47 Playback Volume=0
Mix G Input 48 Playback Volume=0
Mix G Input 49 Playback Volume=0
Mix G Input 50 Playback Volume=0
Mix G Input 51 Playback Volume=0
Mix G Input 52 Playback Volume=0
Mix G Input 53 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=8192
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=0
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix H Input 13 Playback Volume=0
Mix H Input 14 Playback Volume=0
Mix H Input 15 Playback Volume=0
Mix H Input 16 Playback Volume=0
Mix H Input 17 Playback Volume=0
Mix H Input 18 Playback Volume=0
Mix H Input 19 Playback Volume=0
Mix H Input 20 Playback Volume=0
Mix H Input 21 Playback Volume=0
Mix H Input 22 Playback Volume=0
Mix H Input 23 Playback Volume=0
Mix H Input 24 Playback Volume=0
Mix H Input 25 Playback Volume=0
Mix H Input 26 Playback Volume=0
Mix H Input 27 Playback Volume=0
Mix H Input 28 Playback Volume=0
Mix H Input 29 Playback Volume=0
Mix H Input 30 Playback Volume=0
Mix H Input 31 Playback Volume=0
Mix H Input 32 Playback Volume=0
Mix H Input 33 Playback Volume=0
Mix H Input 34 Playback Volume=0
Mix H Input 35 Playback Volume=0
Mix H Input 36 Playback Volume=0
Mix H Input 37 Playback Volume=0
Mix H Input 38 Playback Volume=0
Mix H Input 39 Playback Volume=0
Mix H Input 40 Playback Volume=0
Mix H Input 41 Playback Volume=0
Mix H Input 42 Playback Volume=0
Mix H Input 43 Playback Volume=0
Mix H Input 44 Playback Volume=0
Mix H Input 45 Playback Volume=0
Mix H Input 46 Playback Volume=0
Mix H Input 47 Playback Volume=0
Mix H Input 48 Playback Volume=0
Mix H Input 49 Playback Volume=0
Mix H Input 50 Playback Volume=0
Mix H Input 51 Playback Volume=0
Mix H Input 52 Playback Volume=0
Mix H Input 53 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=8192
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=0
Mix I Input 12 Playback Volume=0
Mix I Input 13 Playback Volume=0
Mix I Input 14 Playback Volume=0
Mix I Input 15 Playback Volume=0
Mix I Input 16 Playback Volume=0
Mix I Input 17 Playback Volume=0
Mix I Input 18 Playback Volume=0
Mix I Input 19 Playback Volume=0
Mix I Input 20 Playback Volume=0
Mix I Input 21 Playback Volume=0
Mix I Input 22 Playback Volume=0
Mix I Input 23 Playback Volume=0
Mix I Input 24 Playback Volume=0
Mix I Input 25 Playback Volume=0
Mix I Input 26 Playback Volume=0
Mix I Input 27 Playback Volume=0
Mix I Input 28 Playback Volume=0
Mix I Input 29 Playback Volume=0
Mix I Input 30 Playback Volume=0
Mix I Input 31 Playback Volume=0
Mix I Input 32 Playback Volume=0
Mix I Input 33 Playback Volume=0
Mix I Input 34 Playback Volume=0
Mix I Input 35 Playback Volume=0
Mix I Input 36 Playback Volume=0
Mix I Input 37 Playback Volume=0
Mix I Input 38 Playback Volume=0
Mix I Input 39 Playback Volume=0
Mix I Input 40 Playback Volume=0
Mix I Input 41 Playback Volume=0
Mix I Input 42 Playback Volume=0
Mix I Input 43 Playback Volume=0
Mix I Input 44 Playback Volume=0
Mix I Input 45 Playback Volume=0
Mix I Input 46 Playback Volume=0
Mix I Input 47 Playback Volume=0
Mix I Input 48 Playback Volume=0
Mix I Input 49 Playback Volume=0
Mix I Input 50 Playback Volume=0
Mix I Input 51 Playback Volume=0
Mix I Input 52 Playback Volume=0
Mix I Input 53 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=8192
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=0
Mix J Input 13 Playback Volume=0
Mix J Input 14 Playback Volume=0
Mix J Input 15 Playback Volume=0
Mix J Input 16 Playback Volume=0
Mix J Input 17 Playback Volume=0
Mix J Input 18 Playback Volume=0
Mix J Input 19 Playback Volume=0
Mix J Input 20 Playback Volume=0
Mix J Input 21 Playback Volume=0
Mix J Input 22 Playback Volume=0
Mix J Input 23 Playback Volume=0
Mix J Input 24 Playback Volume=0
Mix J Input 25 Playback Volume=0
Mix J Input 26 Playback Volume=0
Mix J Input 27 Playback Volume=0
Mix J Input 28 Playback Volume=0
Mix J Input 29 Playback Volume=0
Mix J Input 30 Playback Volume=0
Mix J Input 31 Playback Volume=0
Mix J Input 32 Playback Volume=0
Mix J Input 33 Playback Volume=0
Mix J Input 34 Playback Volume=0
Mix J Input 35 Playback Volume=0
Mix J Input 36 Playback Volume=0
Mix J Input 37 Playback Volume=0
Mix J Input 38 Playback Volume=0
Mix J Input 39 Playback Volume=0
Mix J Input 40 Playback Volume=0
Mix J Input 41 Playback Volume=0
Mix J Input 42 Playback Volume=0
Mix J Input 43 Playback Volume=0
Mix J Input 44 Playback Volume=0
Mix J Input 45 Playback Volume=0
Mix J Input 46 Playback Volume=0
Mix J Input 47 Playback Volume=0
Mix J Input 48 Playback Volume=0
Mix J Input 49 Playback Volume=0
Mix J Input 50 Playback Volume=0
Mix J Input 51 Playback Volume=0
Mix J Input 52 Playback Volume=0
Mix J Input 53 Playback Volume=0
Mix K Input 01 Playback Volume=0
Mix K Input 02 Playback Volume=0
Mix K Input 03 Playback Volume=0
Mix K Input 04 Playback Volume=0
Mix K Input 05 Playback Volume=0
Mix K Input 06 Playback Volume=0
Mix K Input 07 Playback Volume=0
Mix K Input 08 Playback Volume=0
Mix K Input 09 Playback Volume=0
Mix K Input 10 Playback Volume=0
Mix K Input 11 Playback Volume=0
Mix K Input 12 Playback Volume=0
Mix K Input 13 Playback Volume=0
Mix K Input 14 Playback Volume=0
Mix K Input 15 Playback Volume=0
Mix K Input 16 Playback Volume=0
Mix K Input 17 Playback Volume=0
Mix K Input 18 Playback Volume=0
Mix K Input 19 Playback Volume=0
Mix K Input 20 Playback Volume=0
Mix K Input 21 Playback Volume=0
Mix K Input 22 Playback Volume=0
Mix K Input 23 Playback Volume=0
Mix K Input 24 Playback Volume=0
Mix K Input 25 Playback Volume=0
Mix K Input 26 Playback Volume=0
Mix K Input 27 Playback Volume=0
Mix K Input 28 Playback Volume=0
Mix K Input 29 Playback Volume=0
Mix K Input 30 Playback Volume=0
Mix K Input 31 Playback Volume=0
Mix K Input 32 Playback Volume=0
Mix K Input 33 Playback Volume=0
Mix K Input 34 Playback Volume=0
Mix K Input 35 Playback Volume=0
Mix K Input 36 Playback Volume=0
Mix K Input 37 Playback Volume=0
Mix K Input 38 Playback Volume=0
Mix K Input 39 Playback Volume=0
Mix K Input 40 Playback Volume=0
Mix K Input 41 Playback Volume=0
Mix K Input 42 Playback Volume=0
Mix K Input 43 Playback Volume=0
Mix K Input 44 Playback Volume=0
Mix K Input 45 Playback Volume=0
Mix K Input 46 Playback Volume=0
Mix K Input 47 Playback Volume=0
Mix K Input 48 Playback Volume=0
Mix K Input 49 Playback Volume=0
Mix K Input 50 Playback Volume=0
Mix K Input 51 Playback Volume=0
Mix K Input 52 Playback Volume=0
Mix K Input 53 Playback Volume=0
Mix L Input 01 Playback Volume=0
Mix L Input 02 Playback Volume=0
Mix L Input 03 Playback Volume=0
Mix L Input 04 Playback Volume=0
Mix L Input 05 Playback Volume=0
Mix L Input 06 Playback Volume=0
Mix L Input 07 Playback Volume=0
Mix L Input 08 Playback Volume=0
Mix L Input 09 Playback Volume=0
Mix L Input 10 Playback Volume=0
Mix L Input 11 Playback Volume=0
Mix L Input 12 Playback Volume=0
Mix L Input 13 Playback Volume=0
Mix L Input 14 Playback Volume=0
Mix L Input 15 Playback Volume=0
Mix L Input 16 Playback Volume=0
Mix L Input 17 Playback Volume=0
Mix L Input 18 Playback Volume=0
Mix L Input 19 Playback Volume=0
Mix L Input 20 Playback Volume=0
Mix L Input 21 Playback Volume=0
Mix L Input 22 Playback Volume=0
Mix L Input 23 Playback Volume=0
Mix L Input 24 Playback Volume=0
Mix L Input 25 Playback Volume=0
Mix L Input 26 Playback Volume=0
Mix L Input 27 Playback Volume=0
Mix L Input 28 Playback Volume=0
Mix L Input 29 Playback Volume=0
Mix L Input 30 Playback Volume=0
Mix L Input 31 Playback Volume=0
Mix L Input 32 Playback Volume=0
Mix L Input 33 Playback Volume=0
Mix L Input 34 Playback Volume=0
Mix L Input 35 Playback Volume=0
Mix L Input 36 Playback Volume=0
Mix L Input 37 Playback Volume=0
Mix L Input 38 Playback Volume=0
Mix L Input 39 Playback Volume=0
Mix L Input 40 Playback Volume=0
Mix L Input 41 Playback Volume=0
Mix L Input 42 Playback Volume=0
Mix L Input 43 Playback Volume=0
Mix L Input 44 Playback Volume=0
Mix L Input 45 Playback Volume=0
Mix L Input 46 Playback Volume=0
Mix L Input 47 Playback Volume=0
Mix L Input 48 Playback Volume=0
Mix L Input 49 Playback Volume=0
Mix L Input 50 Playback Volume=0
Mix L Input 51 Playback Volume=0
Mix L Input 52 Playback Volume=0
Mix L Input 53 Playback Volume=0
Analogue 1 Playback Enum=Mix A
Analogue 2 Playback Enum=Mix B
Analogue 3 Playback Enum=PCM 3
Analogue 4 Playback Enum=PCM 4
Analogue 5 Playback Enum=PCM 5
Analogue 6 Playback Enum=PCM 6
Analogue 7 Playback Enum=PCM 7
Analogue 8 Playback Enum=PCM 8
Analogue 9 Playback Enum=PCM 9
Analogue 10 Playback Enum=PCM 10
Analogue 11 Playback Enum=Mix A
Analogue 12 Playback Enum=Mix B
Analogue 13 Playback Enum=Mix A
Analogue 14 Playback Enum=Mix B
S/PDIF 1 Playback Enum=PCM 11
S/PDIF 2 Playback Enum=PCM 12
ADAT 1 Playback Enum=PCM 13
ADAT 2 Playback Enum=PCM 14
ADAT 3 Playback Enum=PCM 15
ADAT 4 Playback Enum=PCM 16
ADAT 5 Playback Enum=PCM 17
ADAT 6 Playback Enum=PCM 18
ADAT 7 Playback Enum=PCM 19
ADAT 8 Playback Enum=PCM 20
ADAT 9 Playback Enum=PCM 21
ADAT 10 Playback Enum=PCM 22
ADAT 11 Playback Enum=PCM 23
ADAT 12 Playback Enum=PCM 24
ADAT 13 Playback Enum=PCM 25
ADAT 14 Playback Enum=PCM 26
ADAT 15 Playback Enum=PCM 1
ADAT 16 Playback Enum=PCM 2
PCM 1 Capture Enum=Analogue 1
PCM 2 Capture Enum=Analogue 2
PCM 3 Capture Enum=Analogue 3
PCM 4 Capture Enum=Analogue 4
PCM 5 Capture Enum=Analogue 5
PCM 6 Capture Enum=Analogue 6
PCM 7 Capture Enum=Analogue 7
PCM 8 Capture Enum=Analogue 8
PCM 9 Capture Enum=PCM 1
PCM 10 Capture Enum=PCM 2
PCM 11 Capture Enum=S/PDIF 1
PCM 12 Capture Enum=S/PDIF 2
PCM 13 Capture Enum=ADAT 1
PCM 14 Capture Enum=ADAT 2
PCM 15 Capture Enum=ADAT 3
PCM 16 Capture Enum=ADAT 4
PCM 17 Capture Enum=ADAT 5
PCM 18 Capture Enum=ADAT 6
PCM 19 Capture Enum=ADAT 7
PCM 20 Capture Enum=ADAT 8
PCM 21 Capture Enum=Off
PCM 22 Capture Enum=Off
PCM 23 Capture Enum=Off
PCM 24 Capture Enum=Off
PCM 25 Capture Enum=Off
PCM 26 Capture Enum=Off
Line In 1 Air Capture Enum=Off
Line In 1 Autogain Capture Switch=false
Line In 1 Autogain Status Capture Enum=Root
Line In 1 Link Capture Switch=false
Line In 1 Safe Capture Switch=false
Line In 1 Level Capture Enum=Line
Line In 1 Phantom Power Capture Switch=false
Line In 1 Gain Capture Volume=3
Line In 2 Air Capture Enum=Off
Line In 2 Autogain Capture Switch=false
Line In 2 Autogain Status Capture Enum=Root
Line In 2 Link Capture Switch=false
Line In 2 Safe Capture Switch=false
Line In 2 Level Capture Enum=Line
Line In 2 Phantom Power Capture Switch=false
Line In 2 Gain Capture Volume=0
Line In 3 Air Capture Enum=Off
Line In 3 Autogain Capture Switch=false
Line In 3 Autogain Status Capture Enum=Root
Line In 3 Link Capture Switch=false
Line In 3 Safe Capture Switch=false
Line In 3 Phantom Power Capture Switch=false
Line In 3 Gain Capture Volume=0
Line In 4 Air Capture Enum=Off
Line In 4 Autogain Capture Switch=false
Line In 4 Autogain Status Capture Enum=Root
Line In 4 Link Capture Switch=false
Line In 4 Safe Capture Switch=false
Line In 4 Phantom Power Capture Switch=false
Line In 4 Gain Capture Volume=0
Line In 5 Air Capture Enum=Off
Line In 5 Autogain Capture Switch=false
Line In 5 Autogain Status Capture Enum=Root
Line In 5 Link Capture Switch=false
Line In 5 Safe Capture Switch=false
Line In 5 Phantom Power Capture Switch=false
Line In 5 Gain Capture Volume=0
Line In 6 Air Capture Enum=Off
Line In 6 Autogain Capture Switch=false
Line In 6 Autogain Status Capture Enum=Root
Line In 6 Link Capture Switch=false
Line In 6 Safe Capture Switch=false
Line In 6 Phantom Power Capture Switch=false
Line In 6 Gain Capture Volume=0
Line In 7 Air Capture Enum=Off
Line In 7 Autogain Capture Switch=false
Line In 7 Autogain Status Capture Enum=Root
Line In 7 Link Capture Switch=false
Line In 7 Safe Capture Switch=false
Line In 7 Phantom Power Capture Switch=false
Line In 7 Gain Capture Volume=0
Line In 8 Air Capture Enum=Off
Line In 8 Autogain Capture Switch=false
Line In 8 Autogain Status Capture Enum=Root
Line In 8 Link Capture Switch=false
Line In 8 Safe Capture Switch=false
Line In 8 Phantom Power Capture Switch=false
Line In 8 Gain Capture Volume=0
Analogue 1 Playback Volume=-127
Analogue 2 Playback Volume=-127
Analogue 3 Playback Volume=0
Analogue 4 Playback Volume=0
Analogue 5 Playback Volume=0
Analogue 6 Playback Volume=0
Analogue 7 Playback Volume=0
Analogue 8 Playback Volume=0
Analogue 9 Playback Volume=0
Analogue 10 Playback Volume=0
Analogue 11 Playback Volume=-127
Analogue 12 Playback Volume=-127
Analogue 13 Playback Volume=-127
Analogue 14 Playback Volume=-127
Main Group Output 1 Playback Switch=true
Main Group Output 2 Playback Switch=true
Main Group Output 3 Playback Switch=false
Main Group Output 4 Playback Switch=false
Main Group Output 5 Playback Switch=false
Main Group Output 6 Playback Switch=false
Main Group Output 7 Playback Switch=false
Main Group Output 8 Playback Switch=false
Main Group Output 9 Playback Switch=false
Main Group Output 10 Playback Switch=false
Main Group Output 11 Playback Switch=false
Main Group Output 12 Playback Switch=false
Main Group Output 13 Playback Switch=false
Main Group Output 14 Playback Switch=false
Main Group Output 1 Source Playback Enum=Mix A
Main Group Output 2 Source Playback Enum=Mix B
Main Group Output 3 Source Playback Enum=PCM 1
Main Group Output 4 Source Playback Enum=PCM 1
Main Group Output 5 Source Playback Enum=PCM 1
Main Group Output 6 Source Playback Enum=PCM 1
Main Group Output 7 Source Playback Enum=PCM 1
Main Group Output 8 Source Playback Enum=PCM 1
Main Group Output 9 Source Playback Enum=PCM 1
Main Group Output 10 Source Playback Enum=PCM 1
Main Group Output 11 Source Playback Enum=PCM 1
Main Group Output 12 Source Playback Enum=PCM 1
Main Group Output 13 Source Playback Enum=PCM 1
Main Group Output 14 Source Playback Enum=PCM 1
Main Group Output 1 Trim Playback Volume=0
Main Group Output 2 Trim Playback Volume=0
Main Group Output 3 Trim Playback Volume=0
Main Group Output 4 Trim Playback Volume=0
Main Group Output 5 Trim Playback Volume=0
Main Group Output 6 Trim Playback Volume=0
Main Group Output 7 Trim Playback Volume=0
Main Group Output 8 Trim Playback Volume=0
Main Group Output 9 Trim Playback Volume=0
Main Group Output 10 Trim Playback Volume=0
Main Group Output 11 Trim Playback Volume=0
Main Group Output 12 Trim Playback Volume=0
Main Group Output 13 Trim Playback Volume=0
Main Group Output 14 Trim Playback Volume=0
Alt Group Output 1 Playback Switch=false
Alt Group Output 2 Playback Switch=false
Alt Group Output 3 Playback Switch=false
Alt Group Output 4 Playback Switch=false
Alt Group Output 5 Playback Switch=false
Alt Group Output 6 Playback Switch=false
Alt Group Output 7 Playback Switch=false
Alt Group Output 8 Playback Switch=false
Alt Group Output 9 Playback Switch=false
Alt Group Output 10 Playback Switch=false
Alt Group Output 11 Playback Switch=false
Alt Group Output 12 Playback Switch=false
Alt Group Output 13 Playback Switch=false
Alt Group Output 14 Playback Switch=false
Alt Group Output 1 Source Playback Enum=PCM 1
Alt Group Output 2 Source Playback Enum=PCM 1
Alt Group Output 3 Source Playback Enum=PCM 3
Alt Group Output 4 Source Playback Enum=PCM 4
Alt Group Output 5 Source Playback Enum=PCM 1
Alt Group Output 6 Source Playback Enum=PCM 1
Alt Group Output 7 Source Playback Enum=PCM 1
Alt Group Output 8 Source Playback Enum=PCM 1
Alt Group Output 9 Source Playback Enum=PCM 1
Alt Group Output 10 Source Playback Enum=PCM 1
Alt Group Output 11 Source Playback Enum=PCM 1
Alt Group Output 12 Source Playback Enum=PCM 1
Alt Group Output 13 Source Playback Enum=PCM 1
Alt Group Output 14 Source Playback Enum=PCM 1
Alt Group Output 1 Trim Playback Volume=0
Alt Group Output 2 Trim Playback Volume=0
Alt Group Output 3 Trim Playback Volume=0
Alt Group Output 4 Trim Playback Volume=0
Alt Group Output 5 Trim Playback Volume=0
Alt Group Output 6 Trim Playback Volume=0
Alt Group Output 7 Trim Playback Volume=0
Alt Group Output 8 Trim Playback Volume=0
Alt Group Output 9 Trim Playback Volume=0
Alt Group Output 10 Trim Playback Volume=0
Alt Group Output 11 Trim Playback Volume=0
Alt Group Output 12 Trim Playback Volume=0
Alt Group Output 13 Trim Playback Volume=0
Alt Group Output 14 Trim Playback Volume=0
Name=Scarlett 18i20 4th Gen-46
Input Select Capture Enum=Input 1
Master Playback Volume=-127
Mute Playback Switch=false
Dim Playback Switch=false
Speaker Switching Alt Playback Switch=false
Talkback Enable Playback Switch=false
Talk Playback Switch=false
Talkback Mix A Playback Switch=false
Talkback Mix B Playback Switch=false
Talkback Mix C Playback Switch=false
Talkback Mix D Playback Switch=false
Talkback Mix E Playback Switch=false
Talkback Mix F Playback Switch=false
Talkback Mix G Playback Switch=false
Talkback Mix H Playback Switch=false
Talkback Mix I Playback Switch=false
Talkback Mix J Playback Switch=false
Talkback Mix K Playback Switch=false
Talkback Mix L Playback Switch=false
Output Playback Switch=false
Digital I/O Mode Capture Enum=S/PDIF RCA
Standalone Switch=true
Phantom Power Persistence Capture Switch=false
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
Analogue In 7 Name=
Analogue In 8 Name=
Analogue In 9 Name=
S/PDIF In 1 Name=
S/PDIF In 2 Name=
ADAT In 1 Name=
ADAT In 2 Name=
ADAT In 3 Name=
ADAT In 4 Name=
ADAT In 5 Name=
ADAT In 6 Name=
ADAT In 7 Name=
ADAT In 8 Name=
ADAT In 9 Name=
ADAT In 10 Name=
ADAT In 11 Name=
ADAT In 12 Name=
ADAT In 13 Name=
ADAT In 14 Name=
ADAT In 15 Name=
ADAT In 16 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
PCM Out 7 Name=
PCM Out 8 Name=
PCM Out 9 Name=
PCM Out 10 Name=
PCM Out 11 Name=
PCM Out 12 Name=
PCM Out 13 Name=
PCM Out 14 Name=
PCM Out 15 Name=
PCM Out 16 Name=
PCM Out 17 Name=
PCM Out 18 Name=
PCM Out 19 Name=
PCM Out 20 Name=
PCM Out 21 Name=
PCM Out 22 Name=
PCM Out 23 Name=
PCM Out 24 Name=
PCM Out 25 Name=
PCM Out 26 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
Mixer Out 11 Name=
Mixer Out 12 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
Analogue Out 7 Name=
Analogue Out 8 Name=
Analogue Out 9 Name=
Analogue Out 10 Name=
Analogue Out 11 Name=
Analogue Out 12 Name=
Analogue Out 13 Name=
Analogue Out 14 Name=
S/PDIF Out 1 Name=
S/PDIF Out 2 Name=
ADAT Out 1 Name=
ADAT Out 2 Name=
ADAT Out 3 Name=
ADAT Out 4 Name=
ADAT Out 5 Name=
ADAT Out 6 Name=
ADAT Out 7 Name=
ADAT Out 8 Name=
ADAT Out 9 Name=
ADAT Out 10 Name=
ADAT Out 11 Name=
ADAT Out 12 Name=
ADAT Out 13 Name=
ADAT Out 14 Name=
ADAT Out 15 Name=
ADAT Out 16 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
PCM In 15 Name=
PCM In 16 Name=
PCM In 17 Name=
PCM In 18 Name=
PCM In 19 Name=
PCM In 20 Name=
PCM In 21 Name=
PCM In 22 Name=
PCM In 23 Name=
PCM In 24 Name=
PCM In 25 Name=
PCM In 26 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
Mixer In 13 Name=
Mixer In 14 Name=
Mixer In 15 Name=
Mixer In 16 Name=
Mixer In 17 Name=
Mixer In 18 Name=
Mixer In 19 Name=
Mixer In 20 Name=
Mixer In 21 Name=
Mixer In 22 Name=
Mixer In 23 Name=
Mixer In 24 Name=
Mixer In 25 Name=
Mixer In 26 Name=
Mixer In 27 Name=
Mixer In 28 Name=
Mixer In 29 Name=
Mixer In 30 Name=
Mixer In 31 Name=
Mixer In 32 Name=
Mixer In 33 Name=
Mixer In 34 Name=
Mixer In 35 Name=
Mixer In 36 Name=
Mixer In 37 Name=
Mixer In 38 Name=
Mixer In 39 Name=
Mixer In 40 Name=
Mixer In 41 Name=
Mixer In 42 Name=
Mixer In 43 Name=
Mixer In 44 Name=
Mixer In 45 Name=
Mixer In 46 Name=
Mixer In 47 Name=
Mixer In 48 Name=
Mixer In 49 Name=
Mixer In 50 Name=
Mixer In 51 Name=
Mixer In 52 Name=
Mixer In 53 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
Analogue In 7 Switch=true
Analogue In 8 Switch=true
Analogue In 9 Switch=true
S/PDIF In 1 Switch=true
S/PDIF In 2 Switch=true
ADAT In 1 Switch=true
ADAT In 2 Switch=true
ADAT In 3 Switch=true
ADAT In 4 Switch=true
ADAT In 5 Switch=true
ADAT In 6 Switch=true
ADAT In 7 Switch=true
ADAT In 8 Switch=true
ADAT In 9 Switch=true
ADAT In 10 Switch=true
ADAT In 11 Switch=true
ADAT In 12 Switch=true
ADAT In 13 Switch=true
ADAT In 14 Switch=true
ADAT In 15 Switch=true
ADAT In 16 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
PCM Out 7 Switch=true
PCM Out 8 Switch=true
PCM Out 9 Switch=true
PCM Out 10 Switch=true
PCM Out 11 Switch=true
PCM Out 12 Switch=true
PCM Out 13 Switch=true
PCM Out 14 Switch=true
PCM Out 15 Switch=true
PCM Out 16 Switch=true
PCM Out 17 Switch=true
PCM Out 18 Switch=true
PCM Out 19 Switch=true
PCM Out 20 Switch=true
PCM Out 21 Switch=true
PCM Out 22 Switch=true
PCM Out 23 Switch=true
PCM Out 24 Switch=true
PCM Out 25 Switch=true
PCM Out 26 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
Mixer Out 11 Switch=true
Mixer Out 12 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
Analogue Out 7 Switch=true
Analogue Out 8 Switch=true
Analogue Out 9 Switch=true
Analogue Out 10 Switch=true
Analogue Out 11 Switch=true
Analogue Out 12 Switch=true
Analogue Out 13 Switch=true
Analogue Out 14 Switch=true
S/PDIF Out 1 Switch=true
S/PDIF Out 2 Switch=true
ADAT Out 1 Switch=true
ADAT Out 2 Switch=true
ADAT Out 3 Switch=true
ADAT Out 4 Switch=true
ADAT Out 5 Switch=true
ADAT Out 6 Switch=true
ADAT Out 7 Switch=true
ADAT Out 8 Switch=true
ADAT Out 9 Switch=true
ADAT Out 10 Switch=true
ADAT Out 11 Switch=true
ADAT Out 12 Switch=true
ADAT Out 13 Switch=true
ADAT Out 14 Switch=true
ADAT Out 15 Switch=true
ADAT Out 16 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
PCM In 15 Switch=true
PCM In 16 Switch=true
PCM In 17 Switch=true
PCM In 18 Switch=true
PCM In 19 Switch=true
PCM In 20 Switch=true
PCM In 21 Switch=true
PCM In 22 Switch=true
PCM In 23 Switch=true
PCM In 24 Switch=true
PCM In 25 Switch=true
PCM In 26 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
Mixer In 13 Switch=true
Mixer In 14 Switch=true
Mixer In 15 Switch=true
Mixer In 16 Switch=true
Mixer In 17 Switch=true
Mixer In 18 Switch=true
Mixer In 19 Switch=true
Mixer In 20 Switch=true
Mixer In 21 Switch=true
Mixer In 22 Switch=true
Mixer In 23 Switch=true
Mixer In 24 Switch=true
Mixer In 25 Switch=true
Mixer In 26 Switch=true
Mixer In 27 Switch=true
Mixer In 28 Switch=true
Mixer In 29 Switch=true
Mixer In 30 Switch=true
Mixer In 31 Switch=true
Mixer In 32 Switch=true
Mixer In 33 Switch=true
Mixer In 34 Switch=true
Mixer In 35 Switch=true
Mixer In 36 Switch=true
Mixer In 37 Switch=true
Mixer In 38 Switch=true
Mixer In 39 Switch=true
Mixer In 40 Switch=true
Mixer In 41 Switch=true
Mixer In 42 Switch=true
Mixer In 43 Switch=true
Mixer In 44 Switch=true
Mixer In 45 Switch=true
Mixer In 46 Switch=true
Mixer In 47 Switch=true
Mixer In 48 Switch=true
Mixer In 49 Switch=true
Mixer In 50 Switch=true
Mixer In 51 Switch=true
Mixer In 52 Switch=true
Mixer In 53 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 18i20.state 0000664 0000000 0000000 00001460403 15212330051 0023127 0 ustar 00root root 0000000 0000000 state.Gen {
control.1 {
iface CARD
name 'Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.2 {
iface CARD
name 'S/PDIF Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.3 {
iface CARD
name 'ADAT Port 1 Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'ADAT Port 2 Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.5 {
iface MIXER
name 'Clock Source Clock Source'
value Internal
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Internal
item.1 S/PDIF
item.2 'ADAT Port 1'
item.3 'ADAT Port 2'
}
}
control.6 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.7 {
iface PCM
name 'Level Meter'
value.0 1
value.1 1
value.2 1
value.3 1
value.4 1
value.5 1
value.6 1
value.7 1
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
value.34 0
value.35 0
value.36 0
value.37 0
value.38 0
value.39 0
value.40 0
value.41 0
value.42 0
value.43 0
value.44 0
value.45 0
value.46 0
value.47 0
value.48 0
value.49 0
value.50 0
value.51 0
value.52 0
value.53 0
value.54 0
value.55 0
value.56 0
value.57 0
value.58 0
value.59 0
value.60 0
value.61 0
value.62 0
value.63 0
value.64 0
value.65 0
value.66 0
value.67 0
value.68 0
value.69 0
value.70 0
value.71 0
value.72 0
value.73 0
value.74 0
value.75 0
value.76 0
value.77 0
value.78 0
comment {
access 'read volatile'
type INTEGER
count 79
range '0 - 4095 (step 1)'
}
}
control.8 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.9 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.10 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.11 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.12 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.13 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.14 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.15 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.16 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.17 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.18 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.19 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.20 {
iface MIXER
name 'Mix A Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.21 {
iface MIXER
name 'Mix A Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.22 {
iface MIXER
name 'Mix A Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.23 {
iface MIXER
name 'Mix A Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.24 {
iface MIXER
name 'Mix A Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.25 {
iface MIXER
name 'Mix A Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.26 {
iface MIXER
name 'Mix A Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.27 {
iface MIXER
name 'Mix A Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.28 {
iface MIXER
name 'Mix A Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.29 {
iface MIXER
name 'Mix A Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.30 {
iface MIXER
name 'Mix A Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.31 {
iface MIXER
name 'Mix A Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.32 {
iface MIXER
name 'Mix A Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.33 {
iface MIXER
name 'Mix A Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.34 {
iface MIXER
name 'Mix A Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.35 {
iface MIXER
name 'Mix A Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.36 {
iface MIXER
name 'Mix A Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.37 {
iface MIXER
name 'Mix A Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.38 {
iface MIXER
name 'Mix A Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.39 {
iface MIXER
name 'Mix A Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.40 {
iface MIXER
name 'Mix A Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.41 {
iface MIXER
name 'Mix A Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.42 {
iface MIXER
name 'Mix A Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.43 {
iface MIXER
name 'Mix A Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.44 {
iface MIXER
name 'Mix A Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.45 {
iface MIXER
name 'Mix A Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.46 {
iface MIXER
name 'Mix A Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.47 {
iface MIXER
name 'Mix A Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.48 {
iface MIXER
name 'Mix A Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.49 {
iface MIXER
name 'Mix A Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.50 {
iface MIXER
name 'Mix A Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.51 {
iface MIXER
name 'Mix A Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.52 {
iface MIXER
name 'Mix A Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.53 {
iface MIXER
name 'Mix A Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.54 {
iface MIXER
name 'Mix A Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.55 {
iface MIXER
name 'Mix A Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.56 {
iface MIXER
name 'Mix A Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.57 {
iface MIXER
name 'Mix A Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.58 {
iface MIXER
name 'Mix A Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.59 {
iface MIXER
name 'Mix A Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.60 {
iface MIXER
name 'Mix A Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.61 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.62 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.63 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.64 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.65 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.66 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.67 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.68 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.69 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.70 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.71 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.72 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.73 {
iface MIXER
name 'Mix B Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.74 {
iface MIXER
name 'Mix B Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.75 {
iface MIXER
name 'Mix B Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.76 {
iface MIXER
name 'Mix B Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.77 {
iface MIXER
name 'Mix B Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.78 {
iface MIXER
name 'Mix B Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.79 {
iface MIXER
name 'Mix B Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.80 {
iface MIXER
name 'Mix B Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.81 {
iface MIXER
name 'Mix B Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.82 {
iface MIXER
name 'Mix B Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.83 {
iface MIXER
name 'Mix B Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.84 {
iface MIXER
name 'Mix B Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.85 {
iface MIXER
name 'Mix B Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.86 {
iface MIXER
name 'Mix B Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.87 {
iface MIXER
name 'Mix B Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.88 {
iface MIXER
name 'Mix B Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.89 {
iface MIXER
name 'Mix B Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.90 {
iface MIXER
name 'Mix B Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.91 {
iface MIXER
name 'Mix B Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.92 {
iface MIXER
name 'Mix B Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.93 {
iface MIXER
name 'Mix B Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.94 {
iface MIXER
name 'Mix B Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.95 {
iface MIXER
name 'Mix B Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.96 {
iface MIXER
name 'Mix B Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.97 {
iface MIXER
name 'Mix B Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.98 {
iface MIXER
name 'Mix B Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.99 {
iface MIXER
name 'Mix B Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.100 {
iface MIXER
name 'Mix B Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.101 {
iface MIXER
name 'Mix B Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.102 {
iface MIXER
name 'Mix B Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.103 {
iface MIXER
name 'Mix B Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.104 {
iface MIXER
name 'Mix B Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.105 {
iface MIXER
name 'Mix B Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.106 {
iface MIXER
name 'Mix B Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.107 {
iface MIXER
name 'Mix B Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.108 {
iface MIXER
name 'Mix B Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.109 {
iface MIXER
name 'Mix B Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.110 {
iface MIXER
name 'Mix B Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.111 {
iface MIXER
name 'Mix B Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.112 {
iface MIXER
name 'Mix B Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.113 {
iface MIXER
name 'Mix B Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.114 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.115 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.116 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.117 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.118 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.119 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.120 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.121 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.122 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.123 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.124 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.125 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.126 {
iface MIXER
name 'Mix C Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.127 {
iface MIXER
name 'Mix C Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.128 {
iface MIXER
name 'Mix C Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.129 {
iface MIXER
name 'Mix C Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.130 {
iface MIXER
name 'Mix C Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.131 {
iface MIXER
name 'Mix C Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.132 {
iface MIXER
name 'Mix C Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.133 {
iface MIXER
name 'Mix C Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.134 {
iface MIXER
name 'Mix C Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.135 {
iface MIXER
name 'Mix C Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.136 {
iface MIXER
name 'Mix C Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.137 {
iface MIXER
name 'Mix C Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.138 {
iface MIXER
name 'Mix C Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.139 {
iface MIXER
name 'Mix C Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.140 {
iface MIXER
name 'Mix C Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.141 {
iface MIXER
name 'Mix C Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.142 {
iface MIXER
name 'Mix C Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.143 {
iface MIXER
name 'Mix C Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.144 {
iface MIXER
name 'Mix C Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.145 {
iface MIXER
name 'Mix C Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.146 {
iface MIXER
name 'Mix C Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.147 {
iface MIXER
name 'Mix C Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.148 {
iface MIXER
name 'Mix C Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.149 {
iface MIXER
name 'Mix C Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.150 {
iface MIXER
name 'Mix C Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.151 {
iface MIXER
name 'Mix C Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.152 {
iface MIXER
name 'Mix C Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.153 {
iface MIXER
name 'Mix C Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.154 {
iface MIXER
name 'Mix C Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.155 {
iface MIXER
name 'Mix C Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.156 {
iface MIXER
name 'Mix C Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.157 {
iface MIXER
name 'Mix C Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.158 {
iface MIXER
name 'Mix C Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.159 {
iface MIXER
name 'Mix C Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.160 {
iface MIXER
name 'Mix C Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.161 {
iface MIXER
name 'Mix C Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.162 {
iface MIXER
name 'Mix C Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.163 {
iface MIXER
name 'Mix C Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.164 {
iface MIXER
name 'Mix C Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.165 {
iface MIXER
name 'Mix C Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.166 {
iface MIXER
name 'Mix C Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.167 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.168 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.169 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.170 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.171 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.172 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.173 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.174 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.175 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.176 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.177 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.178 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.179 {
iface MIXER
name 'Mix D Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.180 {
iface MIXER
name 'Mix D Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.181 {
iface MIXER
name 'Mix D Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.182 {
iface MIXER
name 'Mix D Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.183 {
iface MIXER
name 'Mix D Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.184 {
iface MIXER
name 'Mix D Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.185 {
iface MIXER
name 'Mix D Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.186 {
iface MIXER
name 'Mix D Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.187 {
iface MIXER
name 'Mix D Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.188 {
iface MIXER
name 'Mix D Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.189 {
iface MIXER
name 'Mix D Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.190 {
iface MIXER
name 'Mix D Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.191 {
iface MIXER
name 'Mix D Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.192 {
iface MIXER
name 'Mix D Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.193 {
iface MIXER
name 'Mix D Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.194 {
iface MIXER
name 'Mix D Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.195 {
iface MIXER
name 'Mix D Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.196 {
iface MIXER
name 'Mix D Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.197 {
iface MIXER
name 'Mix D Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.198 {
iface MIXER
name 'Mix D Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.199 {
iface MIXER
name 'Mix D Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.200 {
iface MIXER
name 'Mix D Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.201 {
iface MIXER
name 'Mix D Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.202 {
iface MIXER
name 'Mix D Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.203 {
iface MIXER
name 'Mix D Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.204 {
iface MIXER
name 'Mix D Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.205 {
iface MIXER
name 'Mix D Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.206 {
iface MIXER
name 'Mix D Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.207 {
iface MIXER
name 'Mix D Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.208 {
iface MIXER
name 'Mix D Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.209 {
iface MIXER
name 'Mix D Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.210 {
iface MIXER
name 'Mix D Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.211 {
iface MIXER
name 'Mix D Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.212 {
iface MIXER
name 'Mix D Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.213 {
iface MIXER
name 'Mix D Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.214 {
iface MIXER
name 'Mix D Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.215 {
iface MIXER
name 'Mix D Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.216 {
iface MIXER
name 'Mix D Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.217 {
iface MIXER
name 'Mix D Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.218 {
iface MIXER
name 'Mix D Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.219 {
iface MIXER
name 'Mix D Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.220 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.221 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.222 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.223 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.224 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.225 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.226 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.227 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.228 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.229 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.230 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.231 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.232 {
iface MIXER
name 'Mix E Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.233 {
iface MIXER
name 'Mix E Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.234 {
iface MIXER
name 'Mix E Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.235 {
iface MIXER
name 'Mix E Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.236 {
iface MIXER
name 'Mix E Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.237 {
iface MIXER
name 'Mix E Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.238 {
iface MIXER
name 'Mix E Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.239 {
iface MIXER
name 'Mix E Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.240 {
iface MIXER
name 'Mix E Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.241 {
iface MIXER
name 'Mix E Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.242 {
iface MIXER
name 'Mix E Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.243 {
iface MIXER
name 'Mix E Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.244 {
iface MIXER
name 'Mix E Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.245 {
iface MIXER
name 'Mix E Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.246 {
iface MIXER
name 'Mix E Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.247 {
iface MIXER
name 'Mix E Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.248 {
iface MIXER
name 'Mix E Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.249 {
iface MIXER
name 'Mix E Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.250 {
iface MIXER
name 'Mix E Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.251 {
iface MIXER
name 'Mix E Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.252 {
iface MIXER
name 'Mix E Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.253 {
iface MIXER
name 'Mix E Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.254 {
iface MIXER
name 'Mix E Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.255 {
iface MIXER
name 'Mix E Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.256 {
iface MIXER
name 'Mix E Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.257 {
iface MIXER
name 'Mix E Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.258 {
iface MIXER
name 'Mix E Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.259 {
iface MIXER
name 'Mix E Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.260 {
iface MIXER
name 'Mix E Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.261 {
iface MIXER
name 'Mix E Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.262 {
iface MIXER
name 'Mix E Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.263 {
iface MIXER
name 'Mix E Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.264 {
iface MIXER
name 'Mix E Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.265 {
iface MIXER
name 'Mix E Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.266 {
iface MIXER
name 'Mix E Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.267 {
iface MIXER
name 'Mix E Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.268 {
iface MIXER
name 'Mix E Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.269 {
iface MIXER
name 'Mix E Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.270 {
iface MIXER
name 'Mix E Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.271 {
iface MIXER
name 'Mix E Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.272 {
iface MIXER
name 'Mix E Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.273 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.274 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.275 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.276 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.277 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.278 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.279 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.280 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.281 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.282 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.283 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.284 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.285 {
iface MIXER
name 'Mix F Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.286 {
iface MIXER
name 'Mix F Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.287 {
iface MIXER
name 'Mix F Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.288 {
iface MIXER
name 'Mix F Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.289 {
iface MIXER
name 'Mix F Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.290 {
iface MIXER
name 'Mix F Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.291 {
iface MIXER
name 'Mix F Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.292 {
iface MIXER
name 'Mix F Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.293 {
iface MIXER
name 'Mix F Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.294 {
iface MIXER
name 'Mix F Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.295 {
iface MIXER
name 'Mix F Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.296 {
iface MIXER
name 'Mix F Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.297 {
iface MIXER
name 'Mix F Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.298 {
iface MIXER
name 'Mix F Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.299 {
iface MIXER
name 'Mix F Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.300 {
iface MIXER
name 'Mix F Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.301 {
iface MIXER
name 'Mix F Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.302 {
iface MIXER
name 'Mix F Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.303 {
iface MIXER
name 'Mix F Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.304 {
iface MIXER
name 'Mix F Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.305 {
iface MIXER
name 'Mix F Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.306 {
iface MIXER
name 'Mix F Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.307 {
iface MIXER
name 'Mix F Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.308 {
iface MIXER
name 'Mix F Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.309 {
iface MIXER
name 'Mix F Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.310 {
iface MIXER
name 'Mix F Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.311 {
iface MIXER
name 'Mix F Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.312 {
iface MIXER
name 'Mix F Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.313 {
iface MIXER
name 'Mix F Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.314 {
iface MIXER
name 'Mix F Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.315 {
iface MIXER
name 'Mix F Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.316 {
iface MIXER
name 'Mix F Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.317 {
iface MIXER
name 'Mix F Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.318 {
iface MIXER
name 'Mix F Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.319 {
iface MIXER
name 'Mix F Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.320 {
iface MIXER
name 'Mix F Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.321 {
iface MIXER
name 'Mix F Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.322 {
iface MIXER
name 'Mix F Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.323 {
iface MIXER
name 'Mix F Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.324 {
iface MIXER
name 'Mix F Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.325 {
iface MIXER
name 'Mix F Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.326 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.327 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.328 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.329 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.330 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.331 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.332 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.333 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.334 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.335 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.336 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.337 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.338 {
iface MIXER
name 'Mix G Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.339 {
iface MIXER
name 'Mix G Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.340 {
iface MIXER
name 'Mix G Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.341 {
iface MIXER
name 'Mix G Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.342 {
iface MIXER
name 'Mix G Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.343 {
iface MIXER
name 'Mix G Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.344 {
iface MIXER
name 'Mix G Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.345 {
iface MIXER
name 'Mix G Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.346 {
iface MIXER
name 'Mix G Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.347 {
iface MIXER
name 'Mix G Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.348 {
iface MIXER
name 'Mix G Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.349 {
iface MIXER
name 'Mix G Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.350 {
iface MIXER
name 'Mix G Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.351 {
iface MIXER
name 'Mix G Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.352 {
iface MIXER
name 'Mix G Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.353 {
iface MIXER
name 'Mix G Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.354 {
iface MIXER
name 'Mix G Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.355 {
iface MIXER
name 'Mix G Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.356 {
iface MIXER
name 'Mix G Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.357 {
iface MIXER
name 'Mix G Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.358 {
iface MIXER
name 'Mix G Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.359 {
iface MIXER
name 'Mix G Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.360 {
iface MIXER
name 'Mix G Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.361 {
iface MIXER
name 'Mix G Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.362 {
iface MIXER
name 'Mix G Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.363 {
iface MIXER
name 'Mix G Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.364 {
iface MIXER
name 'Mix G Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.365 {
iface MIXER
name 'Mix G Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.366 {
iface MIXER
name 'Mix G Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.367 {
iface MIXER
name 'Mix G Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.368 {
iface MIXER
name 'Mix G Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.369 {
iface MIXER
name 'Mix G Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.370 {
iface MIXER
name 'Mix G Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.371 {
iface MIXER
name 'Mix G Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.372 {
iface MIXER
name 'Mix G Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.373 {
iface MIXER
name 'Mix G Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.374 {
iface MIXER
name 'Mix G Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.375 {
iface MIXER
name 'Mix G Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.376 {
iface MIXER
name 'Mix G Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.377 {
iface MIXER
name 'Mix G Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.378 {
iface MIXER
name 'Mix G Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.379 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.380 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.381 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.382 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.383 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.384 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.385 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.386 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.387 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.388 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.389 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.390 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.391 {
iface MIXER
name 'Mix H Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.392 {
iface MIXER
name 'Mix H Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.393 {
iface MIXER
name 'Mix H Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.394 {
iface MIXER
name 'Mix H Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.395 {
iface MIXER
name 'Mix H Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.396 {
iface MIXER
name 'Mix H Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.397 {
iface MIXER
name 'Mix H Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.398 {
iface MIXER
name 'Mix H Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.399 {
iface MIXER
name 'Mix H Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.400 {
iface MIXER
name 'Mix H Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.401 {
iface MIXER
name 'Mix H Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.402 {
iface MIXER
name 'Mix H Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.403 {
iface MIXER
name 'Mix H Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.404 {
iface MIXER
name 'Mix H Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.405 {
iface MIXER
name 'Mix H Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.406 {
iface MIXER
name 'Mix H Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.407 {
iface MIXER
name 'Mix H Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.408 {
iface MIXER
name 'Mix H Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.409 {
iface MIXER
name 'Mix H Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.410 {
iface MIXER
name 'Mix H Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.411 {
iface MIXER
name 'Mix H Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.412 {
iface MIXER
name 'Mix H Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.413 {
iface MIXER
name 'Mix H Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.414 {
iface MIXER
name 'Mix H Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.415 {
iface MIXER
name 'Mix H Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.416 {
iface MIXER
name 'Mix H Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.417 {
iface MIXER
name 'Mix H Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.418 {
iface MIXER
name 'Mix H Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.419 {
iface MIXER
name 'Mix H Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.420 {
iface MIXER
name 'Mix H Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.421 {
iface MIXER
name 'Mix H Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.422 {
iface MIXER
name 'Mix H Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.423 {
iface MIXER
name 'Mix H Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.424 {
iface MIXER
name 'Mix H Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.425 {
iface MIXER
name 'Mix H Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.426 {
iface MIXER
name 'Mix H Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.427 {
iface MIXER
name 'Mix H Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.428 {
iface MIXER
name 'Mix H Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.429 {
iface MIXER
name 'Mix H Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.430 {
iface MIXER
name 'Mix H Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.431 {
iface MIXER
name 'Mix H Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.432 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.433 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.434 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.435 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.436 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.437 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.438 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.439 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.440 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.441 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.442 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.443 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.444 {
iface MIXER
name 'Mix I Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.445 {
iface MIXER
name 'Mix I Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.446 {
iface MIXER
name 'Mix I Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.447 {
iface MIXER
name 'Mix I Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.448 {
iface MIXER
name 'Mix I Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.449 {
iface MIXER
name 'Mix I Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.450 {
iface MIXER
name 'Mix I Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.451 {
iface MIXER
name 'Mix I Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.452 {
iface MIXER
name 'Mix I Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.453 {
iface MIXER
name 'Mix I Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.454 {
iface MIXER
name 'Mix I Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.455 {
iface MIXER
name 'Mix I Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.456 {
iface MIXER
name 'Mix I Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.457 {
iface MIXER
name 'Mix I Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.458 {
iface MIXER
name 'Mix I Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.459 {
iface MIXER
name 'Mix I Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.460 {
iface MIXER
name 'Mix I Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.461 {
iface MIXER
name 'Mix I Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.462 {
iface MIXER
name 'Mix I Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.463 {
iface MIXER
name 'Mix I Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.464 {
iface MIXER
name 'Mix I Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.465 {
iface MIXER
name 'Mix I Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.466 {
iface MIXER
name 'Mix I Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.467 {
iface MIXER
name 'Mix I Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.468 {
iface MIXER
name 'Mix I Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.469 {
iface MIXER
name 'Mix I Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.470 {
iface MIXER
name 'Mix I Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.471 {
iface MIXER
name 'Mix I Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.472 {
iface MIXER
name 'Mix I Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.473 {
iface MIXER
name 'Mix I Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.474 {
iface MIXER
name 'Mix I Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.475 {
iface MIXER
name 'Mix I Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.476 {
iface MIXER
name 'Mix I Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.477 {
iface MIXER
name 'Mix I Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.478 {
iface MIXER
name 'Mix I Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.479 {
iface MIXER
name 'Mix I Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.480 {
iface MIXER
name 'Mix I Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.481 {
iface MIXER
name 'Mix I Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.482 {
iface MIXER
name 'Mix I Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.483 {
iface MIXER
name 'Mix I Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.484 {
iface MIXER
name 'Mix I Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.485 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.486 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.487 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.488 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.489 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.490 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.491 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.492 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.493 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.494 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 8192
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 0
}
}
control.495 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.496 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.497 {
iface MIXER
name 'Mix J Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.498 {
iface MIXER
name 'Mix J Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.499 {
iface MIXER
name 'Mix J Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.500 {
iface MIXER
name 'Mix J Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.501 {
iface MIXER
name 'Mix J Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.502 {
iface MIXER
name 'Mix J Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.503 {
iface MIXER
name 'Mix J Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.504 {
iface MIXER
name 'Mix J Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.505 {
iface MIXER
name 'Mix J Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.506 {
iface MIXER
name 'Mix J Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.507 {
iface MIXER
name 'Mix J Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.508 {
iface MIXER
name 'Mix J Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.509 {
iface MIXER
name 'Mix J Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.510 {
iface MIXER
name 'Mix J Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.511 {
iface MIXER
name 'Mix J Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.512 {
iface MIXER
name 'Mix J Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.513 {
iface MIXER
name 'Mix J Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.514 {
iface MIXER
name 'Mix J Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.515 {
iface MIXER
name 'Mix J Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.516 {
iface MIXER
name 'Mix J Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.517 {
iface MIXER
name 'Mix J Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.518 {
iface MIXER
name 'Mix J Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.519 {
iface MIXER
name 'Mix J Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.520 {
iface MIXER
name 'Mix J Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.521 {
iface MIXER
name 'Mix J Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.522 {
iface MIXER
name 'Mix J Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.523 {
iface MIXER
name 'Mix J Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.524 {
iface MIXER
name 'Mix J Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.525 {
iface MIXER
name 'Mix J Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.526 {
iface MIXER
name 'Mix J Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.527 {
iface MIXER
name 'Mix J Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.528 {
iface MIXER
name 'Mix J Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.529 {
iface MIXER
name 'Mix J Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.530 {
iface MIXER
name 'Mix J Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.531 {
iface MIXER
name 'Mix J Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.532 {
iface MIXER
name 'Mix J Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.533 {
iface MIXER
name 'Mix J Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.534 {
iface MIXER
name 'Mix J Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.535 {
iface MIXER
name 'Mix J Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.536 {
iface MIXER
name 'Mix J Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.537 {
iface MIXER
name 'Mix J Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.538 {
iface MIXER
name 'Mix K Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.539 {
iface MIXER
name 'Mix K Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.540 {
iface MIXER
name 'Mix K Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.541 {
iface MIXER
name 'Mix K Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.542 {
iface MIXER
name 'Mix K Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.543 {
iface MIXER
name 'Mix K Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.544 {
iface MIXER
name 'Mix K Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.545 {
iface MIXER
name 'Mix K Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.546 {
iface MIXER
name 'Mix K Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.547 {
iface MIXER
name 'Mix K Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.548 {
iface MIXER
name 'Mix K Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.549 {
iface MIXER
name 'Mix K Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.550 {
iface MIXER
name 'Mix K Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.551 {
iface MIXER
name 'Mix K Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.552 {
iface MIXER
name 'Mix K Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.553 {
iface MIXER
name 'Mix K Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.554 {
iface MIXER
name 'Mix K Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.555 {
iface MIXER
name 'Mix K Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.556 {
iface MIXER
name 'Mix K Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.557 {
iface MIXER
name 'Mix K Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.558 {
iface MIXER
name 'Mix K Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.559 {
iface MIXER
name 'Mix K Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.560 {
iface MIXER
name 'Mix K Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.561 {
iface MIXER
name 'Mix K Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.562 {
iface MIXER
name 'Mix K Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.563 {
iface MIXER
name 'Mix K Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.564 {
iface MIXER
name 'Mix K Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.565 {
iface MIXER
name 'Mix K Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.566 {
iface MIXER
name 'Mix K Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.567 {
iface MIXER
name 'Mix K Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.568 {
iface MIXER
name 'Mix K Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.569 {
iface MIXER
name 'Mix K Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.570 {
iface MIXER
name 'Mix K Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.571 {
iface MIXER
name 'Mix K Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.572 {
iface MIXER
name 'Mix K Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.573 {
iface MIXER
name 'Mix K Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.574 {
iface MIXER
name 'Mix K Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.575 {
iface MIXER
name 'Mix K Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.576 {
iface MIXER
name 'Mix K Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.577 {
iface MIXER
name 'Mix K Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.578 {
iface MIXER
name 'Mix K Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.579 {
iface MIXER
name 'Mix K Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.580 {
iface MIXER
name 'Mix K Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.581 {
iface MIXER
name 'Mix K Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.582 {
iface MIXER
name 'Mix K Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.583 {
iface MIXER
name 'Mix K Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.584 {
iface MIXER
name 'Mix K Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.585 {
iface MIXER
name 'Mix K Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.586 {
iface MIXER
name 'Mix K Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.587 {
iface MIXER
name 'Mix K Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.588 {
iface MIXER
name 'Mix K Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.589 {
iface MIXER
name 'Mix K Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.590 {
iface MIXER
name 'Mix K Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.591 {
iface MIXER
name 'Mix L Input 01 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.592 {
iface MIXER
name 'Mix L Input 02 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.593 {
iface MIXER
name 'Mix L Input 03 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.594 {
iface MIXER
name 'Mix L Input 04 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.595 {
iface MIXER
name 'Mix L Input 05 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.596 {
iface MIXER
name 'Mix L Input 06 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.597 {
iface MIXER
name 'Mix L Input 07 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.598 {
iface MIXER
name 'Mix L Input 08 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.599 {
iface MIXER
name 'Mix L Input 09 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.600 {
iface MIXER
name 'Mix L Input 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.601 {
iface MIXER
name 'Mix L Input 11 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.602 {
iface MIXER
name 'Mix L Input 12 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.603 {
iface MIXER
name 'Mix L Input 13 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.604 {
iface MIXER
name 'Mix L Input 14 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.605 {
iface MIXER
name 'Mix L Input 15 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.606 {
iface MIXER
name 'Mix L Input 16 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.607 {
iface MIXER
name 'Mix L Input 17 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.608 {
iface MIXER
name 'Mix L Input 18 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.609 {
iface MIXER
name 'Mix L Input 19 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.610 {
iface MIXER
name 'Mix L Input 20 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.611 {
iface MIXER
name 'Mix L Input 21 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.612 {
iface MIXER
name 'Mix L Input 22 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.613 {
iface MIXER
name 'Mix L Input 23 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.614 {
iface MIXER
name 'Mix L Input 24 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.615 {
iface MIXER
name 'Mix L Input 25 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.616 {
iface MIXER
name 'Mix L Input 26 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.617 {
iface MIXER
name 'Mix L Input 27 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.618 {
iface MIXER
name 'Mix L Input 28 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.619 {
iface MIXER
name 'Mix L Input 29 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.620 {
iface MIXER
name 'Mix L Input 30 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.621 {
iface MIXER
name 'Mix L Input 31 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.622 {
iface MIXER
name 'Mix L Input 32 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.623 {
iface MIXER
name 'Mix L Input 33 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.624 {
iface MIXER
name 'Mix L Input 34 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.625 {
iface MIXER
name 'Mix L Input 35 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.626 {
iface MIXER
name 'Mix L Input 36 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.627 {
iface MIXER
name 'Mix L Input 37 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.628 {
iface MIXER
name 'Mix L Input 38 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.629 {
iface MIXER
name 'Mix L Input 39 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.630 {
iface MIXER
name 'Mix L Input 40 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.631 {
iface MIXER
name 'Mix L Input 41 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.632 {
iface MIXER
name 'Mix L Input 42 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.633 {
iface MIXER
name 'Mix L Input 43 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.634 {
iface MIXER
name 'Mix L Input 44 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.635 {
iface MIXER
name 'Mix L Input 45 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.636 {
iface MIXER
name 'Mix L Input 46 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.637 {
iface MIXER
name 'Mix L Input 47 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.638 {
iface MIXER
name 'Mix L Input 48 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.639 {
iface MIXER
name 'Mix L Input 49 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.640 {
iface MIXER
name 'Mix L Input 50 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.641 {
iface MIXER
name 'Mix L Input 51 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.642 {
iface MIXER
name 'Mix L Input 52 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.643 {
iface MIXER
name 'Mix L Input 53 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 32613 (step 1)'
tlv '0000000200000008ff676981000004b0'
dbmin -9999999
dbmax 1200
dbvalue.0 -9999999
}
}
control.644 {
iface MIXER
name 'Analogue 1 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.645 {
iface MIXER
name 'Analogue 2 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.646 {
iface MIXER
name 'Analogue 3 Playback Enum'
value 'PCM 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.647 {
iface MIXER
name 'Analogue 4 Playback Enum'
value 'PCM 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.648 {
iface MIXER
name 'Analogue 5 Playback Enum'
value 'PCM 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.649 {
iface MIXER
name 'Analogue 6 Playback Enum'
value 'PCM 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.650 {
iface MIXER
name 'Analogue 7 Playback Enum'
value 'PCM 7'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.651 {
iface MIXER
name 'Analogue 8 Playback Enum'
value 'PCM 8'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.652 {
iface MIXER
name 'Analogue 9 Playback Enum'
value 'PCM 9'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.653 {
iface MIXER
name 'Analogue 10 Playback Enum'
value 'PCM 10'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.654 {
iface MIXER
name 'Analogue 11 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.655 {
iface MIXER
name 'Analogue 12 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.656 {
iface MIXER
name 'Analogue 13 Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.657 {
iface MIXER
name 'Analogue 14 Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.658 {
iface MIXER
name 'S/PDIF 1 Playback Enum'
value 'PCM 11'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.659 {
iface MIXER
name 'S/PDIF 2 Playback Enum'
value 'PCM 12'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.660 {
iface MIXER
name 'ADAT 1 Playback Enum'
value 'PCM 13'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.661 {
iface MIXER
name 'ADAT 2 Playback Enum'
value 'PCM 14'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.662 {
iface MIXER
name 'ADAT 3 Playback Enum'
value 'PCM 15'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.663 {
iface MIXER
name 'ADAT 4 Playback Enum'
value 'PCM 16'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.664 {
iface MIXER
name 'ADAT 5 Playback Enum'
value 'PCM 17'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.665 {
iface MIXER
name 'ADAT 6 Playback Enum'
value 'PCM 18'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.666 {
iface MIXER
name 'ADAT 7 Playback Enum'
value 'PCM 19'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.667 {
iface MIXER
name 'ADAT 8 Playback Enum'
value 'PCM 20'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.668 {
iface MIXER
name 'ADAT 9 Playback Enum'
value 'PCM 21'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.669 {
iface MIXER
name 'ADAT 10 Playback Enum'
value 'PCM 22'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.670 {
iface MIXER
name 'ADAT 11 Playback Enum'
value 'PCM 23'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.671 {
iface MIXER
name 'ADAT 12 Playback Enum'
value 'PCM 24'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.672 {
iface MIXER
name 'ADAT 13 Playback Enum'
value 'PCM 25'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.673 {
iface MIXER
name 'ADAT 14 Playback Enum'
value 'PCM 26'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.674 {
iface MIXER
name 'ADAT 15 Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.675 {
iface MIXER
name 'ADAT 16 Playback Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.676 {
iface MIXER
name 'PCM 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.677 {
iface MIXER
name 'PCM 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.678 {
iface MIXER
name 'PCM 3 Capture Enum'
value 'Analogue 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.679 {
iface MIXER
name 'PCM 4 Capture Enum'
value 'Analogue 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.680 {
iface MIXER
name 'PCM 5 Capture Enum'
value 'Analogue 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.681 {
iface MIXER
name 'PCM 6 Capture Enum'
value 'Analogue 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.682 {
iface MIXER
name 'PCM 7 Capture Enum'
value 'Analogue 7'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.683 {
iface MIXER
name 'PCM 8 Capture Enum'
value 'Analogue 8'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.684 {
iface MIXER
name 'PCM 9 Capture Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.685 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'PCM 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.686 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.687 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.688 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'ADAT 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.689 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'ADAT 2'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.690 {
iface MIXER
name 'PCM 15 Capture Enum'
value 'ADAT 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.691 {
iface MIXER
name 'PCM 16 Capture Enum'
value 'ADAT 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.692 {
iface MIXER
name 'PCM 17 Capture Enum'
value 'ADAT 5'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.693 {
iface MIXER
name 'PCM 18 Capture Enum'
value 'ADAT 6'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.694 {
iface MIXER
name 'PCM 19 Capture Enum'
value 'ADAT 7'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.695 {
iface MIXER
name 'PCM 20 Capture Enum'
value 'ADAT 8'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.696 {
iface MIXER
name 'PCM 21 Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.697 {
iface MIXER
name 'PCM 22 Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.698 {
iface MIXER
name 'PCM 23 Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.699 {
iface MIXER
name 'PCM 24 Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.700 {
iface MIXER
name 'PCM 25 Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.701 {
iface MIXER
name 'PCM 26 Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.702 {
iface MIXER
name 'Mixer 1 Capture Enum'
value 'PCM 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.703 {
iface MIXER
name 'Mixer 2 Capture Enum'
value 'PCM 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.704 {
iface MIXER
name 'Mixer 3 Capture Enum'
value 'PCM 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.705 {
iface MIXER
name 'Mixer 4 Capture Enum'
value 'PCM 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.706 {
iface MIXER
name 'Mixer 5 Capture Enum'
value 'PCM 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.707 {
iface MIXER
name 'Mixer 6 Capture Enum'
value 'PCM 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.708 {
iface MIXER
name 'Mixer 7 Capture Enum'
value 'PCM 7'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.709 {
iface MIXER
name 'Mixer 8 Capture Enum'
value 'PCM 8'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.710 {
iface MIXER
name 'Mixer 9 Capture Enum'
value 'PCM 9'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.711 {
iface MIXER
name 'Mixer 10 Capture Enum'
value 'PCM 10'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.712 {
iface MIXER
name 'Mixer 11 Capture Enum'
value 'PCM 11'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.713 {
iface MIXER
name 'Mixer 12 Capture Enum'
value 'PCM 12'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.714 {
iface MIXER
name 'Mixer 13 Capture Enum'
value 'PCM 13'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.715 {
iface MIXER
name 'Mixer 14 Capture Enum'
value 'PCM 14'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.716 {
iface MIXER
name 'Mixer 15 Capture Enum'
value 'PCM 15'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.717 {
iface MIXER
name 'Mixer 16 Capture Enum'
value 'PCM 16'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.718 {
iface MIXER
name 'Mixer 17 Capture Enum'
value 'PCM 17'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.719 {
iface MIXER
name 'Mixer 18 Capture Enum'
value 'PCM 18'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.720 {
iface MIXER
name 'Mixer 19 Capture Enum'
value 'PCM 19'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.721 {
iface MIXER
name 'Mixer 20 Capture Enum'
value 'PCM 20'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.722 {
iface MIXER
name 'Mixer 21 Capture Enum'
value 'PCM 21'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.723 {
iface MIXER
name 'Mixer 22 Capture Enum'
value 'PCM 22'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.724 {
iface MIXER
name 'Mixer 23 Capture Enum'
value 'PCM 23'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.725 {
iface MIXER
name 'Mixer 24 Capture Enum'
value 'PCM 24'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.726 {
iface MIXER
name 'Mixer 25 Capture Enum'
value 'PCM 25'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.727 {
iface MIXER
name 'Mixer 26 Capture Enum'
value 'PCM 26'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.728 {
iface MIXER
name 'Mixer 27 Capture Enum'
value 'Analogue 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.729 {
iface MIXER
name 'Mixer 28 Capture Enum'
value 'Analogue 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.730 {
iface MIXER
name 'Mixer 29 Capture Enum'
value 'Analogue 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.731 {
iface MIXER
name 'Mixer 30 Capture Enum'
value 'Analogue 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.732 {
iface MIXER
name 'Mixer 31 Capture Enum'
value 'Analogue 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.733 {
iface MIXER
name 'Mixer 32 Capture Enum'
value 'Analogue 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.734 {
iface MIXER
name 'Mixer 33 Capture Enum'
value 'Analogue 7'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.735 {
iface MIXER
name 'Mixer 34 Capture Enum'
value 'Analogue 8'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.736 {
iface MIXER
name 'Mixer 35 Capture Enum'
value 'Analogue 9'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.737 {
iface MIXER
name 'Mixer 36 Capture Enum'
value 'S/PDIF 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.738 {
iface MIXER
name 'Mixer 37 Capture Enum'
value 'S/PDIF 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.739 {
iface MIXER
name 'Mixer 38 Capture Enum'
value 'ADAT 1'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.740 {
iface MIXER
name 'Mixer 39 Capture Enum'
value 'ADAT 2'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.741 {
iface MIXER
name 'Mixer 40 Capture Enum'
value 'ADAT 3'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.742 {
iface MIXER
name 'Mixer 41 Capture Enum'
value 'ADAT 4'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.743 {
iface MIXER
name 'Mixer 42 Capture Enum'
value 'ADAT 5'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.744 {
iface MIXER
name 'Mixer 43 Capture Enum'
value 'ADAT 6'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.745 {
iface MIXER
name 'Mixer 44 Capture Enum'
value 'ADAT 7'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.746 {
iface MIXER
name 'Mixer 45 Capture Enum'
value 'ADAT 8'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.747 {
iface MIXER
name 'Mixer 46 Capture Enum'
value 'ADAT 9'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.748 {
iface MIXER
name 'Mixer 47 Capture Enum'
value 'ADAT 10'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.749 {
iface MIXER
name 'Mixer 48 Capture Enum'
value 'ADAT 11'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.750 {
iface MIXER
name 'Mixer 49 Capture Enum'
value 'ADAT 12'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.751 {
iface MIXER
name 'Mixer 50 Capture Enum'
value 'ADAT 13'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.752 {
iface MIXER
name 'Mixer 51 Capture Enum'
value 'ADAT 14'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.753 {
iface MIXER
name 'Mixer 52 Capture Enum'
value 'ADAT 15'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.754 {
iface MIXER
name 'Mixer 53 Capture Enum'
value 'ADAT 16'
comment {
access 'read write locked user'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'Analogue 9'
item.10 'S/PDIF 1'
item.11 'S/PDIF 2'
item.12 'ADAT 1'
item.13 'ADAT 2'
item.14 'ADAT 3'
item.15 'ADAT 4'
item.16 'ADAT 5'
item.17 'ADAT 6'
item.18 'ADAT 7'
item.19 'ADAT 8'
item.20 'ADAT 9'
item.21 'ADAT 10'
item.22 'ADAT 11'
item.23 'ADAT 12'
item.24 'ADAT 13'
item.25 'ADAT 14'
item.26 'ADAT 15'
item.27 'ADAT 16'
item.28 'PCM 1'
item.29 'PCM 2'
item.30 'PCM 3'
item.31 'PCM 4'
item.32 'PCM 5'
item.33 'PCM 6'
item.34 'PCM 7'
item.35 'PCM 8'
item.36 'PCM 9'
item.37 'PCM 10'
item.38 'PCM 11'
item.39 'PCM 12'
item.40 'PCM 13'
item.41 'PCM 14'
item.42 'PCM 15'
item.43 'PCM 16'
item.44 'PCM 17'
item.45 'PCM 18'
item.46 'PCM 19'
item.47 'PCM 20'
item.48 'PCM 21'
item.49 'PCM 22'
item.50 'PCM 23'
item.51 'PCM 24'
item.52 'PCM 25'
item.53 'PCM 26'
item.54 'Mix A'
item.55 'Mix B'
item.56 'Mix C'
item.57 'Mix D'
item.58 'Mix E'
item.59 'Mix F'
item.60 'Mix G'
item.61 'Mix H'
item.62 'Mix I'
item.63 'Mix J'
item.64 'Mix K'
item.65 'Mix L'
}
}
control.755 {
iface MIXER
name 'Line In 1 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.756 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.757 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.758 {
iface MIXER
name 'Line In 1 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.759 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.760 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.761 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.762 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 3
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 295
}
}
control.763 {
iface MIXER
name 'Line In 2 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.764 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.765 {
iface MIXER
name 'Line In 2 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.766 {
iface MIXER
name 'Line In 2 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.767 {
iface MIXER
name 'Line In 2 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.768 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.769 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.770 {
iface MIXER
name 'Line In 2 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.771 {
iface MIXER
name 'Line In 3 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.772 {
iface MIXER
name 'Line In 3 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.773 {
iface MIXER
name 'Line In 3 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.774 {
iface MIXER
name 'Line In 3 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.775 {
iface MIXER
name 'Line In 3 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.776 {
iface MIXER
name 'Line In 3 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.777 {
iface MIXER
name 'Line In 3 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.778 {
iface MIXER
name 'Line In 4 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.779 {
iface MIXER
name 'Line In 4 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.780 {
iface MIXER
name 'Line In 4 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.781 {
iface MIXER
name 'Line In 4 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.782 {
iface MIXER
name 'Line In 4 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.783 {
iface MIXER
name 'Line In 4 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.784 {
iface MIXER
name 'Line In 4 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.785 {
iface MIXER
name 'Line In 5 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.786 {
iface MIXER
name 'Line In 5 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.787 {
iface MIXER
name 'Line In 5 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.788 {
iface MIXER
name 'Line In 5 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.789 {
iface MIXER
name 'Line In 5 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.790 {
iface MIXER
name 'Line In 5 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.791 {
iface MIXER
name 'Line In 5 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.792 {
iface MIXER
name 'Line In 6 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.793 {
iface MIXER
name 'Line In 6 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.794 {
iface MIXER
name 'Line In 6 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.795 {
iface MIXER
name 'Line In 6 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.796 {
iface MIXER
name 'Line In 6 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.797 {
iface MIXER
name 'Line In 6 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.798 {
iface MIXER
name 'Line In 6 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.799 {
iface MIXER
name 'Line In 7 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.800 {
iface MIXER
name 'Line In 7 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.801 {
iface MIXER
name 'Line In 7 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.802 {
iface MIXER
name 'Line In 7 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.803 {
iface MIXER
name 'Line In 7 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.804 {
iface MIXER
name 'Line In 7 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.805 {
iface MIXER
name 'Line In 7 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.806 {
iface MIXER
name 'Line In 8 Air Capture Enum'
value Off
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.807 {
iface MIXER
name 'Line In 8 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.808 {
iface MIXER
name 'Line In 8 Autogain Status Capture Enum'
value Root
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 Success
item.1 DRover
item.2 MinGainLimit
item.3 DRunder
item.4 MaxGainLimit
item.5 Clipped
item.6 Cancelled
item.7 Root
}
}
control.809 {
iface MIXER
name 'Line In 8 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.810 {
iface MIXER
name 'Line In 8 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.811 {
iface MIXER
name 'Line In 8 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.812 {
iface MIXER
name 'Line In 8 Gain Capture Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 0
}
}
control.813 {
iface MIXER
name 'Analogue 1 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.814 {
iface MIXER
name 'Analogue 2 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.815 {
iface MIXER
name 'Analogue 3 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.816 {
iface MIXER
name 'Analogue 4 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.817 {
iface MIXER
name 'Analogue 5 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.818 {
iface MIXER
name 'Analogue 6 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.819 {
iface MIXER
name 'Analogue 7 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.820 {
iface MIXER
name 'Analogue 8 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.821 {
iface MIXER
name 'Analogue 9 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.822 {
iface MIXER
name 'Analogue 10 Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.823 {
iface MIXER
name 'Analogue 11 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.824 {
iface MIXER
name 'Analogue 12 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.825 {
iface MIXER
name 'Analogue 13 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.826 {
iface MIXER
name 'Analogue 14 Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.827 {
iface MIXER
name 'Main Group Output 1 Playback Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.828 {
iface MIXER
name 'Main Group Output 2 Playback Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.829 {
iface MIXER
name 'Main Group Output 3 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.830 {
iface MIXER
name 'Main Group Output 4 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.831 {
iface MIXER
name 'Main Group Output 5 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.832 {
iface MIXER
name 'Main Group Output 6 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.833 {
iface MIXER
name 'Main Group Output 7 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.834 {
iface MIXER
name 'Main Group Output 8 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.835 {
iface MIXER
name 'Main Group Output 9 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.836 {
iface MIXER
name 'Main Group Output 10 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.837 {
iface MIXER
name 'Main Group Output 11 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.838 {
iface MIXER
name 'Main Group Output 12 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.839 {
iface MIXER
name 'Main Group Output 13 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.840 {
iface MIXER
name 'Main Group Output 14 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.841 {
iface MIXER
name 'Main Group Output 1 Source Playback Enum'
value 'Mix A'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.842 {
iface MIXER
name 'Main Group Output 2 Source Playback Enum'
value 'Mix B'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.843 {
iface MIXER
name 'Main Group Output 3 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.844 {
iface MIXER
name 'Main Group Output 4 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.845 {
iface MIXER
name 'Main Group Output 5 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.846 {
iface MIXER
name 'Main Group Output 6 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.847 {
iface MIXER
name 'Main Group Output 7 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.848 {
iface MIXER
name 'Main Group Output 8 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.849 {
iface MIXER
name 'Main Group Output 9 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.850 {
iface MIXER
name 'Main Group Output 10 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.851 {
iface MIXER
name 'Main Group Output 11 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.852 {
iface MIXER
name 'Main Group Output 12 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.853 {
iface MIXER
name 'Main Group Output 13 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.854 {
iface MIXER
name 'Main Group Output 14 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.855 {
iface MIXER
name 'Main Group Output 1 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.856 {
iface MIXER
name 'Main Group Output 2 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.857 {
iface MIXER
name 'Main Group Output 3 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.858 {
iface MIXER
name 'Main Group Output 4 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.859 {
iface MIXER
name 'Main Group Output 5 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.860 {
iface MIXER
name 'Main Group Output 6 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.861 {
iface MIXER
name 'Main Group Output 7 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.862 {
iface MIXER
name 'Main Group Output 8 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.863 {
iface MIXER
name 'Main Group Output 9 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.864 {
iface MIXER
name 'Main Group Output 10 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.865 {
iface MIXER
name 'Main Group Output 11 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.866 {
iface MIXER
name 'Main Group Output 12 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.867 {
iface MIXER
name 'Main Group Output 13 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.868 {
iface MIXER
name 'Main Group Output 14 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.869 {
iface MIXER
name 'Alt Group Output 1 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.870 {
iface MIXER
name 'Alt Group Output 2 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.871 {
iface MIXER
name 'Alt Group Output 3 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.872 {
iface MIXER
name 'Alt Group Output 4 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.873 {
iface MIXER
name 'Alt Group Output 5 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.874 {
iface MIXER
name 'Alt Group Output 6 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.875 {
iface MIXER
name 'Alt Group Output 7 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.876 {
iface MIXER
name 'Alt Group Output 8 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.877 {
iface MIXER
name 'Alt Group Output 9 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.878 {
iface MIXER
name 'Alt Group Output 10 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.879 {
iface MIXER
name 'Alt Group Output 11 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.880 {
iface MIXER
name 'Alt Group Output 12 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.881 {
iface MIXER
name 'Alt Group Output 13 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.882 {
iface MIXER
name 'Alt Group Output 14 Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.883 {
iface MIXER
name 'Alt Group Output 1 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.884 {
iface MIXER
name 'Alt Group Output 2 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.885 {
iface MIXER
name 'Alt Group Output 3 Source Playback Enum'
value 'PCM 3'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.886 {
iface MIXER
name 'Alt Group Output 4 Source Playback Enum'
value 'PCM 4'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.887 {
iface MIXER
name 'Alt Group Output 5 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.888 {
iface MIXER
name 'Alt Group Output 6 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.889 {
iface MIXER
name 'Alt Group Output 7 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.890 {
iface MIXER
name 'Alt Group Output 8 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.891 {
iface MIXER
name 'Alt Group Output 9 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.892 {
iface MIXER
name 'Alt Group Output 10 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.893 {
iface MIXER
name 'Alt Group Output 11 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.894 {
iface MIXER
name 'Alt Group Output 12 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.895 {
iface MIXER
name 'Alt Group Output 13 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.896 {
iface MIXER
name 'Alt Group Output 14 Source Playback Enum'
value 'PCM 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'PCM 1'
item.1 'PCM 2'
item.2 'PCM 3'
item.3 'PCM 4'
item.4 'PCM 5'
item.5 'PCM 6'
item.6 'PCM 7'
item.7 'PCM 8'
item.8 'PCM 9'
item.9 'PCM 10'
item.10 'PCM 11'
item.11 'PCM 12'
item.12 'PCM 13'
item.13 'PCM 14'
item.14 'PCM 15'
item.15 'PCM 16'
item.16 'PCM 17'
item.17 'PCM 18'
item.18 'PCM 19'
item.19 'PCM 20'
item.20 'PCM 21'
item.21 'PCM 22'
item.22 'PCM 23'
item.23 'PCM 24'
item.24 'PCM 25'
item.25 'PCM 26'
item.26 'Analogue 1'
item.27 'Analogue 2'
item.28 'Analogue 3'
item.29 'Analogue 4'
item.30 'Analogue 5'
item.31 'Analogue 6'
item.32 'Analogue 7'
item.33 'Analogue 8'
item.34 'S/PDIF 1'
item.35 'S/PDIF 2'
item.36 'ADAT 1'
item.37 'ADAT 2'
item.38 'ADAT 3'
item.39 'ADAT 4'
item.40 'ADAT 5'
item.41 'ADAT 6'
item.42 'ADAT 7'
item.43 'ADAT 8'
item.44 'ADAT 9'
item.45 'ADAT 10'
item.46 'ADAT 11'
item.47 'ADAT 12'
item.48 'ADAT 13'
item.49 'ADAT 14'
item.50 'ADAT 15'
item.51 'ADAT 16'
item.52 'Mix A'
item.53 'Mix B'
item.54 'Mix C'
item.55 'Mix D'
item.56 'Mix E'
item.57 'Mix F'
item.58 'Mix G'
item.59 'Mix H'
item.60 'Mix I'
item.61 'Mix J'
item.62 'Mix K'
item.63 'Mix L'
}
}
control.897 {
iface MIXER
name 'Alt Group Output 1 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.898 {
iface MIXER
name 'Alt Group Output 2 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.899 {
iface MIXER
name 'Alt Group Output 3 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.900 {
iface MIXER
name 'Alt Group Output 4 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.901 {
iface MIXER
name 'Alt Group Output 5 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.902 {
iface MIXER
name 'Alt Group Output 6 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.903 {
iface MIXER
name 'Alt Group Output 7 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.904 {
iface MIXER
name 'Alt Group Output 8 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.905 {
iface MIXER
name 'Alt Group Output 9 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.906 {
iface MIXER
name 'Alt Group Output 10 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.907 {
iface MIXER
name 'Alt Group Output 11 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.908 {
iface MIXER
name 'Alt Group Output 12 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.909 {
iface MIXER
name 'Alt Group Output 13 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.910 {
iface MIXER
name 'Alt Group Output 14 Trim Playback Volume'
value 0
comment {
access 'read write user'
type INTEGER
count 1
range '-128 - 0 (step 1)'
tlv '0000000400000008ffffce0000000000'
dbmin -12800
dbmax 0
dbvalue.0 0
}
}
control.911 {
iface CARD
name 'Firmware Version'
value.0 2
value.1 0
value.2 2464
value.3 0
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
tlv '53434b54000000186e75722f6573752f2f302f722d7063666f732e3000006b63'
}
}
control.912 {
iface MIXER
name Name
value '536361726c657474203138693230203474682047656e2d343600000000000000'
comment {
access 'read write user'
type BYTES
count 32
}
}
control.913 {
iface CARD
name 'ESP Firmware Version'
value.0 1
value.1 0
value.2 0
value.3 364
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
}
}
control.914 {
iface MIXER
name 'Input Select Capture Enum'
value 'Input 1'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'Input 1'
item.1 'Input 2'
item.2 'Input 3'
item.3 'Input 4'
item.4 'Input 5'
item.5 'Input 6'
item.6 'Input 7'
item.7 'Input 8'
}
}
control.915 {
iface MIXER
name 'Master Playback Volume'
value -127
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.916 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.917 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.918 {
iface MIXER
name 'Speaker Switching Alt Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.919 {
iface MIXER
name 'Talkback Enable Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.920 {
iface MIXER
name 'Talk Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.921 {
iface MIXER
name 'Talkback Mix A Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.922 {
iface MIXER
name 'Talkback Mix B Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.923 {
iface MIXER
name 'Talkback Mix C Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.924 {
iface MIXER
name 'Talkback Mix D Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.925 {
iface MIXER
name 'Talkback Mix E Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.926 {
iface MIXER
name 'Talkback Mix F Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.927 {
iface MIXER
name 'Talkback Mix G Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.928 {
iface MIXER
name 'Talkback Mix H Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.929 {
iface MIXER
name 'Talkback Mix I Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.930 {
iface MIXER
name 'Talkback Mix J Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.931 {
iface MIXER
name 'Talkback Mix K Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.932 {
iface MIXER
name 'Talkback Mix L Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.933 {
iface MIXER
name 'Output Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.934 {
iface MIXER
name 'Digital I/O Mode Capture Enum'
value 'S/PDIF RCA'
comment {
access 'read write user'
type ENUMERATED
count 1
item.0 'S/PDIF RCA'
item.1 'S/PDIF Optical'
item.2 'Dual ADAT'
}
}
control.935 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.936 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 2i2.conf 0000664 0000000 0000000 00000006112 15212330051 0022555 0 ustar 00root root 0000000 0000000 [device]
serial=S2BJ2BX3506155
model=Scarlett 2i2 4th Gen
[controls]
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Air Capture Enum=Off
Line In 2 Air Capture Enum=Off
Line In 1-2 Phantom Power Capture Switch=false
Input Select Capture Enum=Input 1
Line In 1 Link Capture Switch=false
Line In 2 Link Capture Switch=false
Line In 1 Gain Capture Volume=9
Line In 1 Autogain Capture Switch=false
Line In 2 Gain Capture Volume=9
Line In 2 Autogain Capture Switch=false
Autogain Mean Target=-18
Autogain Peak Target=-12
Line In 1 Safe Capture Switch=false
Line In 2 Safe Capture Switch=false
Analogue Output 01 Playback Enum=Mix A
Analogue Output 02 Playback Enum=Mix B
Mixer Input 01 Capture Enum=PCM 1
Mixer Input 02 Capture Enum=PCM 2
Mixer Input 03 Capture Enum=DSP 1
Mixer Input 04 Capture Enum=DSP 2
DSP Input 1 Capture Enum=Analogue 1
DSP Input 2 Capture Enum=Analogue 2
PCM 01 Capture Enum=DSP 1
PCM 02 Capture Enum=DSP 2
PCM 03 Capture Enum=Mix C
PCM 04 Capture Enum=Mix D
Mix A Input 01 Playback Volume=160
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=160
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix C Input 01 Playback Volume=160
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=160
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Direct Monitor Playback Enum=Off
Monitor 1 Mix A Input 01 Playback Volume=150
Monitor 1 Mix A Input 02 Playback Volume=0
Monitor 1 Mix A Input 03 Playback Volume=154
Monitor 1 Mix A Input 04 Playback Volume=154
Monitor 1 Mix B Input 01 Playback Volume=0
Monitor 1 Mix B Input 02 Playback Volume=150
Monitor 1 Mix B Input 03 Playback Volume=154
Monitor 1 Mix B Input 04 Playback Volume=154
Monitor 2 Mix A Input 01 Playback Volume=150
Monitor 2 Mix A Input 02 Playback Volume=0
Monitor 2 Mix A Input 03 Playback Volume=160
Monitor 2 Mix A Input 04 Playback Volume=0
Monitor 2 Mix B Input 01 Playback Volume=0
Monitor 2 Mix B Input 02 Playback Volume=150
Monitor 2 Mix B Input 03 Playback Volume=0
Monitor 2 Mix B Input 04 Playback Volume=160
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
DSP Out 1 Name=
DSP Out 2 Name=
PCM Out 1 Name=
PCM Out 2 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
DSP Out 1 Switch=true
DSP Out 2 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
DSP In 1 Switch=true
DSP In 2 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 2i2.state 0000664 0000000 0000000 00000040355 15212330051 0022757 0 ustar 00root root 0000000 0000000 state.Gen {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
comment {
access 'read volatile'
type INTEGER
count 2
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
comment {
access 'read volatile'
type INTEGER
count 4
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 2128
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 2115
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.7 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.8 {
iface MIXER
name 'Line In 1 Air Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.9 {
iface MIXER
name 'Line In 2 Air Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.10 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.11 {
iface MIXER
name 'Input Select Capture Enum'
value 'Input 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'Input 1'
item.1 'Input 2'
}
}
control.12 {
iface MIXER
name 'Line In 1 Link Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.13 {
iface MIXER
name 'Line In 2 Link Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 9
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin 0
dbmax 6900
dbvalue.0 887
}
}
control.15 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value Success
comment {
access read
type ENUMERATED
count 1
item.0 Running
item.1 Success
item.2 SuccessDRover
item.3 WarnMinGainLimit
item.4 FailDRunder
item.5 FailMaxGainLimit
item.6 FailClipped
item.7 Cancelled
item.8 Invalid
}
}
control.17 {
iface MIXER
name 'Line In 2 Gain Capture Volume'
value 9
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin 0
dbmax 6900
dbvalue.0 887
}
}
control.18 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line In 2 Autogain Status Capture Enum'
value Success
comment {
access read
type ENUMERATED
count 1
item.0 Running
item.1 Success
item.2 SuccessDRover
item.3 WarnMinGainLimit
item.4 FailDRunder
item.5 FailMaxGainLimit
item.6 FailClipped
item.7 Cancelled
item.8 Invalid
}
}
control.20 {
iface CARD
name 'Autogain Mean Target'
value -18
comment {
access 'read write'
type INTEGER
count 1
range '-30 - 0 (step 1)'
dbmin -3000
dbmax 0
dbvalue.0 -1800
}
}
control.21 {
iface CARD
name 'Autogain Peak Target'
value -12
comment {
access 'read write'
type INTEGER
count 1
range '-30 - 0 (step 1)'
dbmin -3000
dbmax 0
dbvalue.0 -1200
}
}
control.22 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Line In 2 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.25 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.26 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.27 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.28 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.29 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.30 {
iface MIXER
name 'DSP Input 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.31 {
iface MIXER
name 'DSP Input 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.32 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.33 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.34 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.35 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'DSP 1'
item.8 'DSP 2'
item.9 'PCM 1'
item.10 'PCM 2'
}
}
control.36 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.37 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.38 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.39 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.40 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.41 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.42 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.43 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.44 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.45 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.46 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.47 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.48 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.49 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.50 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.51 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.52 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 1
value.5 1
value.6 1
value.7 1
value.8 1
value.9 1
value.10 0
value.11 0
comment {
access 'read volatile'
type INTEGER
count 12
range '0 - 4095 (step 1)'
}
}
control.53 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.54 {
iface MIXER
name 'Direct Monitor Playback Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Mono
item.2 Stereo
}
}
control.55 {
iface MIXER
name 'Monitor 1 Mix A Input 01 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -500
}
}
control.56 {
iface MIXER
name 'Monitor 1 Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.57 {
iface MIXER
name 'Monitor 1 Mix A Input 03 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.58 {
iface MIXER
name 'Monitor 1 Mix A Input 04 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.59 {
iface MIXER
name 'Monitor 1 Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Monitor 1 Mix B Input 02 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -500
}
}
control.61 {
iface MIXER
name 'Monitor 1 Mix B Input 03 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.62 {
iface MIXER
name 'Monitor 1 Mix B Input 04 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.63 {
iface MIXER
name 'Monitor 2 Mix A Input 01 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -500
}
}
control.64 {
iface MIXER
name 'Monitor 2 Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Monitor 2 Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.66 {
iface MIXER
name 'Monitor 2 Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Monitor 2 Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Monitor 2 Mix B Input 02 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -500
}
}
control.69 {
iface MIXER
name 'Monitor 2 Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Monitor 2 Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 4i4.conf 0000664 0000000 0000000 00000013564 15212330051 0022572 0 ustar 00root root 0000000 0000000 [device]
serial=S4RHWFJ3700480
model=Scarlett 4i4 4th Gen
[controls]
Line In 1 Level Capture Enum=Line
Line In 2 Level Capture Enum=Line
Line In 1 Air Capture Enum=Off
Line In 2 Air Capture Enum=Off
Line In 1 Phantom Power Capture Switch=false
Line In 2 Phantom Power Capture Switch=false
Input Select Capture Enum=Input 1
Line In 1 Link Capture Switch=false
Line In 2 Link Capture Switch=false
Line In 1 Gain Capture Volume=9
Line In 1 Autogain Capture Switch=false
Line In 2 Gain Capture Volume=9
Line In 2 Autogain Capture Switch=false
Autogain Mean Target=-18
Autogain Peak Target=-12
Line In 1 Safe Capture Switch=false
Line In 2 Safe Capture Switch=false
Analogue Output 01 Playback Enum=Mix A
Analogue Output 02 Playback Enum=Mix B
Analogue Output 03 Playback Enum=Mix C
Analogue Output 04 Playback Enum=Mix D
Analogue Output 05 Playback Enum=Mix A
Analogue Output 06 Playback Enum=Mix B
Mixer Input 01 Capture Enum=DSP 1
Mixer Input 02 Capture Enum=DSP 2
Mixer Input 03 Capture Enum=Analogue 3
Mixer Input 04 Capture Enum=Analogue 4
Mixer Input 05 Capture Enum=PCM 1
Mixer Input 06 Capture Enum=PCM 2
Mixer Input 07 Capture Enum=PCM 3
Mixer Input 08 Capture Enum=PCM 4
Mixer Input 09 Capture Enum=PCM 5
Mixer Input 10 Capture Enum=PCM 6
DSP Input 1 Capture Enum=Analogue 1
DSP Input 2 Capture Enum=Analogue 2
PCM 01 Capture Enum=DSP 1
PCM 02 Capture Enum=DSP 2
PCM 03 Capture Enum=Analogue 3
PCM 04 Capture Enum=Analogue 4
PCM 05 Capture Enum=Mix E
PCM 06 Capture Enum=Mix F
Mix A Input 01 Playback Volume=0
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=160
Mix A Input 06 Playback Volume=160
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=0
Mix A Input 10 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=0
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix B Input 05 Playback Volume=160
Mix B Input 06 Playback Volume=160
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=0
Mix C Input 01 Playback Volume=0
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=0
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=160
Mix C Input 08 Playback Volume=160
Mix C Input 09 Playback Volume=0
Mix C Input 10 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=0
Mix D Input 07 Playback Volume=160
Mix D Input 08 Playback Volume=160
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=160
Mix E Input 06 Playback Volume=160
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=0
Mix E Input 10 Playback Volume=0
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=160
Mix F Input 06 Playback Volume=160
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=0
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
DSP Out 1 Name=
DSP Out 2 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
PCM Out 5 Name=
PCM Out 6 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
DSP Out 1 Switch=true
DSP Out 2 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
PCM Out 5 Switch=true
PCM Out 6 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
DSP In 1 Switch=true
DSP In 2 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
Analogue In 1-2 Link=false
Analogue In 1-2 Name=
Analogue In 3-4 Link=true
Analogue In 3-4 Name=
Mixer Out 1-2 Link=false
Mixer Out 1-2 Name=
Mixer Out 3-4 Link=false
Mixer Out 3-4 Name=
Mixer Out 5-6 Link=false
Mixer Out 5-6 Name=
DSP Out 1-2 Link=false
DSP Out 1-2 Name=
PCM Out 1-2 Link=false
PCM Out 1-2 Name=
PCM Out 3-4 Link=false
PCM Out 3-4 Name=
PCM Out 5-6 Link=true
PCM Out 5-6 Name=
Analogue Out 1-2 Link=false
Analogue Out 1-2 Name=
Analogue Out 3-4 Link=false
Analogue Out 3-4 Name=
Analogue Out 5-6 Link=false
Analogue Out 5-6 Name=
Mixer In 1-2 Link=false
Mixer In 3-4 Link=true
Mixer In 5-6 Link=false
Mixer In 7-8 Link=false
Mixer In 9-10 Link=true
DSP In 1-2 Link=false
DSP In 1-2 Name=
PCM In 1-2 Link=false
PCM In 1-2 Name=
PCM In 3-4 Link=true
PCM In 3-4 Name=
PCM In 5-6 Link=false
PCM In 5-6 Name=
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 4i4.state 0000664 0000000 0000000 00000172366 15212330051 0022773 0 ustar 00root root 0000000 0000000 state.Gen {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access 'read volatile'
type INTEGER
count 6
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 3
value.1 4
value.2 7
value.3 8
value.4 5
value.5 6
comment {
access 'read volatile'
type INTEGER
count 6
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 2407
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 2089
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'Master HW Playback Volume'
value 127
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.7 {
iface MIXER
name 'Headphone Playback Volume'
value 127
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.8 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.9 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.10 {
iface MIXER
name 'Line In 1 Air Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.11 {
iface MIXER
name 'Line In 2 Air Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.12 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.13 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Input Select Capture Enum'
value 'Input 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'Input 1'
item.1 'Input 2'
}
}
control.15 {
iface MIXER
name 'Line In 1 Link Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface MIXER
name 'Line In 2 Link Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 9
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin 0
dbmax 6900
dbvalue.0 887
}
}
control.18 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value Invalid
comment {
access read
type ENUMERATED
count 1
item.0 Running
item.1 Success
item.2 SuccessDRover
item.3 WarnMinGainLimit
item.4 FailDRunder
item.5 FailMaxGainLimit
item.6 FailClipped
item.7 Cancelled
item.8 Invalid
}
}
control.20 {
iface MIXER
name 'Line In 2 Gain Capture Volume'
value 9
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin 0
dbmax 6900
dbvalue.0 887
}
}
control.21 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
iface MIXER
name 'Line In 2 Autogain Status Capture Enum'
value Invalid
comment {
access read
type ENUMERATED
count 1
item.0 Running
item.1 Success
item.2 SuccessDRover
item.3 WarnMinGainLimit
item.4 FailDRunder
item.5 FailMaxGainLimit
item.6 FailClipped
item.7 Cancelled
item.8 Invalid
}
}
control.23 {
iface CARD
name 'Autogain Mean Target'
value -18
comment {
access 'read write'
type INTEGER
count 1
range '-30 - 0 (step 1)'
dbmin -3000
dbmax 0
dbvalue.0 -1800
}
}
control.24 {
iface CARD
name 'Autogain Peak Target'
value -12
comment {
access 'read write'
type INTEGER
count 1
range '-30 - 0 (step 1)'
dbmin -3000
dbmax 0
dbvalue.0 -1200
}
}
control.25 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface MIXER
name 'Line In 2 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.27 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.28 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.29 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.30 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.31 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.32 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.33 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.34 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.35 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.36 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.37 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.38 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.39 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.40 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.41 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.42 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.43 {
iface MIXER
name 'DSP Input 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.44 {
iface MIXER
name 'DSP Input 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.45 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.46 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.47 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.48 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.49 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.50 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.51 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.53 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.54 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.55 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.56 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.57 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.58 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.59 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.61 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.62 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.64 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.66 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.67 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.78 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.89 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.96 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.107 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 4095
value.7 31
value.8 6
value.9 26
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 4095
value.17 31
value.18 4095
value.19 31
value.20 6
value.21 26
value.22 0
value.23 0
comment {
access 'read volatile'
type INTEGER
count 24
range '0 - 4095 (step 1)'
}
}
control.112 {
iface MIXER
name 'Sync Status'
value Unlocked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.113 {
iface CARD
name 'Power Status Card Enum'
value Bus
comment {
access read
type ENUMERATED
count 1
item.0 External
item.1 Bus
item.2 Fail
}
}
}
state.Gen_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access read
type INTEGER
count 6
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
comment {
access read
type INTEGER
count 6
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 2089
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 2089
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'MSD Mode Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Master HW Playback Volume'
value 88
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -3900
}
}
control.8 {
iface MIXER
name 'Headphone Playback Volume'
value 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
control.9 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.10 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.11 {
iface MIXER
name 'Line In 1 Air Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.12 {
iface MIXER
name 'Line In 2 Air Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.13 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.14 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.15 {
iface MIXER
name 'Input Select Capture Enum'
value 'Input 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 'Input 1'
item.1 'Input 2'
}
}
control.16 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 70
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin -7000
dbmax 0
dbvalue.0 0
}
}
control.17 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value Cancelled
comment {
access read
type ENUMERATED
count 1
item.0 Stopped
item.1 Running
item.2 Failed
item.3 Cancelled
item.4 Unknown
}
}
control.19 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
iface MIXER
name 'Line In 1-2 Link Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Line In 2 Gain Capture Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin -7000
dbmax 0
dbvalue.0 -7000
}
}
control.22 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Line In 2 Autogain Status Capture Enum'
value Stopped
comment {
access read
type ENUMERATED
count 1
item.0 Stopped
item.1 Running
item.2 Failed
item.3 Cancelled
item.4 Unknown
}
}
control.24 {
iface MIXER
name 'Line In 2 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.25 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.26 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.27 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.28 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.29 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.30 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.31 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.32 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.33 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.34 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.35 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.36 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.37 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.38 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.39 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value 'PCM 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.40 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value 'PCM 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.41 {
iface MIXER
name 'DSP Input 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.42 {
iface MIXER
name 'DSP Input 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.43 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.44 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.45 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.46 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.47 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.48 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Mix A'
item.6 'Mix B'
item.7 'Mix C'
item.8 'Mix D'
item.9 'Mix E'
item.10 'Mix F'
item.11 'DSP 1'
item.12 'DSP 2'
item.13 'PCM 1'
item.14 'PCM 2'
item.15 'PCM 3'
item.16 'PCM 4'
item.17 'PCM 5'
item.18 'PCM 6'
}
}
control.49 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.50 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.51 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.52 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.53 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.54 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.55 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.56 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.57 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.58 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.59 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.61 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.62 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.64 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.65 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.66 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.69 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.71 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.73 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.76 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.77 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.80 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.82 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.85 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.86 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.87 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.89 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.93 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.94 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.98 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
control.105 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -8000
}
}
control.109 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 14
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 14
value.17 0
value.18 14
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
comment {
access 'read volatile'
type INTEGER
count 24
range '0 - 4095 (step 1)'
}
}
control.110 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.111 {
iface CARD
name 'Power Status Card Enum'
value Bus
comment {
access read
type ENUMERATED
count 1
item.0 External
item.1 Bus
item.2 Fail
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 Solo.conf 0000664 0000000 0000000 00000005254 15212330051 0023103 0 ustar 00root root 0000000 0000000 [device]
serial=S1YD4BU34048B1
model=Scarlett Solo 4th Gen
[controls]
Line In 1 Level Capture Enum=Line
Line In 2 Air Capture Enum=Off
Line In 2 Phantom Power Capture Switch=false
PCM Input Capture Switch=Direct
Analogue Output 01 Playback Enum=Mix A
Analogue Output 02 Playback Enum=Mix B
Mixer Input 01 Capture Enum=PCM 1
Mixer Input 02 Capture Enum=PCM 2
Mixer Input 03 Capture Enum=DSP 1
Mixer Input 04 Capture Enum=DSP 2
DSP Input 1 Capture Enum=Analogue 1
DSP Input 2 Capture Enum=Analogue 2
PCM 01 Capture Enum=DSP 1
PCM 02 Capture Enum=DSP 2
PCM 03 Capture Enum=Mix C
PCM 04 Capture Enum=Mix D
Mix A Input 01 Playback Volume=160
Mix A Input 02 Playback Volume=0
Mix A Input 03 Playback Volume=0
Mix A Input 04 Playback Volume=0
Mix B Input 01 Playback Volume=0
Mix B Input 02 Playback Volume=160
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=0
Mix C Input 01 Playback Volume=160
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix D Input 01 Playback Volume=0
Mix D Input 02 Playback Volume=160
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix E Input 01 Playback Volume=0
Mix E Input 02 Playback Volume=0
Mix E Input 03 Playback Volume=154
Mix E Input 04 Playback Volume=154
Mix F Input 01 Playback Volume=0
Mix F Input 02 Playback Volume=0
Mix F Input 03 Playback Volume=154
Mix F Input 04 Playback Volume=154
Direct Monitor Playback Switch=false
Monitor Mix A Input 01 Playback Volume=150
Monitor Mix A Input 02 Playback Volume=0
Monitor Mix A Input 03 Playback Volume=154
Monitor Mix A Input 04 Playback Volume=154
Monitor Mix B Input 01 Playback Volume=0
Monitor Mix B Input 02 Playback Volume=150
Monitor Mix B Input 03 Playback Volume=154
Monitor Mix B Input 04 Playback Volume=154
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
DSP Out 1 Name=
DSP Out 2 Name=
PCM Out 1 Name=
PCM Out 2 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
DSP Out 1 Switch=true
DSP Out 2 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
DSP In 1 Switch=true
DSP In 2 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
alsa-scarlett-gui-1.0~beta9/demo/Scarlett Gen 4 Solo.state 0000664 0000000 0000000 00000033372 15212330051 0023300 0 ustar 00root root 0000000 0000000 state.Gen {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
comment {
access 'read volatile'
type INTEGER
count 2
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
comment {
access 'read volatile'
type INTEGER
count 4
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 2188
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 2115
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'Line In 1 Level Capture Enum'
value Line
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.7 {
iface MIXER
name 'Line In 2 Air Capture Enum'
value Off
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 Presence
item.2 'Presence + Drive'
}
}
control.8 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'PCM Input Capture Switch'
value Direct
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Direct
item.1 Mixer
}
}
control.10 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.11 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.12 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.13 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.14 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.15 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.16 {
iface MIXER
name 'DSP Input 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.17 {
iface MIXER
name 'DSP Input 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.18 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.19 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.20 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.21 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'DSP 1'
item.10 'DSP 2'
item.11 'PCM 1'
item.12 'PCM 2'
}
}
control.22 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.23 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.24 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.25 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.26 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.27 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.28 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.29 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.30 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.31 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.32 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.33 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.34 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.35 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.36 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.37 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.38 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.39 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.40 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.41 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.42 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.43 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.44 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.45 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.46 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 1
value.5 1
value.6 1
value.7 1
value.8 1
value.9 1
value.10 0
value.11 0
comment {
access 'read volatile'
type INTEGER
count 12
range '0 - 4095 (step 1)'
}
}
control.47 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.48 {
iface MIXER
name 'Direct Monitor Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.49 {
iface MIXER
name 'Monitor Mix A Input 01 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -500
}
}
control.50 {
iface MIXER
name 'Monitor Mix A Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.51 {
iface MIXER
name 'Monitor Mix A Input 03 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.52 {
iface MIXER
name 'Monitor Mix A Input 04 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.53 {
iface MIXER
name 'Monitor Mix B Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.54 {
iface MIXER
name 'Monitor Mix B Input 02 Playback Volume'
value 150
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -500
}
}
control.55 {
iface MIXER
name 'Monitor Mix B Input 03 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.56 {
iface MIXER
name 'Monitor Mix B Input 04 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Vocaster One.conf 0000664 0000000 0000000 00000014276 15212330051 0022103 0 ustar 00root root 0000000 0000000 [device]
serial=V1599RN2703509
model=Vocaster One USB
[controls]
Speaker Mute Playback Switch=false
Headphones Mute Playback Switch=false
Line In 1 DSP Capture Switch=true
Line In 1 Compressor Enable=true
Line In 1 Compressor Threshold=-22
Line In 1 Compressor Ratio=8
Line In 1 Compressor Knee Width=3
Line In 1 Compressor Attack=30
Line In 1 Compressor Release=30
Line In 1 Compressor Makeup Gain=5
Line In 1 Pre-Comp Filter Enable=true
Line In 1 PEQ Filter Enable=true
Line In 1 Pre-Comp Coefficients 1=265694923,-531389846,265694923,532986969,-264567952
Line In 1 Pre-Comp Coefficients 2=268435456,-536870912,268435456,535245642,-266826695
Line In 1 PEQ Coefficients 1=268940007,-533799575,264905304,533799575,-265409855
Line In 1 PEQ Coefficients 2=264329859,-480949433,220769668,480949433,-216664071
Line In 1 PEQ Coefficients 3=305086343,-305965130,115171522,248373882,-94231161
Line In 1 Mute Capture Switch=false
Line In 1 Phantom Power Capture Switch=false
Line In 1 Gain Capture Volume=9
Line In 1 Autogain Capture Switch=false
Autogain Hot Target=-18
Analogue Output 01 Playback Enum=Mix A
Analogue Output 02 Playback Enum=Mix B
Analogue Output 03 Playback Enum=Mix C
Analogue Output 04 Playback Enum=Mix D
Mixer Input 01 Capture Enum=DSP 1
Mixer Input 02 Capture Enum=Analogue 2
Mixer Input 03 Capture Enum=PCM 1
Mixer Input 04 Capture Enum=PCM 2
Mixer Input 05 Capture Enum=PCM 3
Mixer Input 06 Capture Enum=PCM 4
Mixer Input 07 Capture Enum=Mix A
Mixer Input 08 Capture Enum=Mix B
DSP Input 1 Capture Enum=Analogue 1
PCM 01 Capture Enum=Mix E
PCM 02 Capture Enum=Mix F
PCM 03 Capture Enum=Mix G
PCM 04 Capture Enum=Mix H
PCM 05 Capture Enum=DSP 1
PCM 06 Capture Enum=Analogue 2
PCM 07 Capture Enum=PCM 1
PCM 08 Capture Enum=PCM 2
PCM 09 Capture Enum=PCM 3
PCM 10 Capture Enum=PCM 4
Mix A Input 01 Playback Volume=154
Mix A Input 02 Playback Volume=154
Mix A Input 03 Playback Volume=160
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=160
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=0
Mix A Input 08 Playback Volume=0
Mix B Input 01 Playback Volume=154
Mix B Input 02 Playback Volume=154
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=160
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=160
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=0
Mix C Input 01 Playback Volume=154
Mix C Input 02 Playback Volume=0
Mix C Input 03 Playback Volume=160
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=160
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=0
Mix C Input 08 Playback Volume=0
Mix D Input 01 Playback Volume=154
Mix D Input 02 Playback Volume=0
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=160
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=160
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=0
Mix E Input 01 Playback Volume=154
Mix E Input 02 Playback Volume=154
Mix E Input 03 Playback Volume=0
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=160
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=0
Mix E Input 08 Playback Volume=0
Mix F Input 01 Playback Volume=154
Mix F Input 02 Playback Volume=154
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=0
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=160
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=0
Mix G Input 01 Playback Volume=0
Mix G Input 02 Playback Volume=0
Mix G Input 03 Playback Volume=0
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=0
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=160
Mix G Input 08 Playback Volume=0
Mix H Input 01 Playback Volume=0
Mix H Input 02 Playback Volume=0
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=0
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=0
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=160
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
DSP Out 1 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
DSP Out 1 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
DSP In 1 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
Line In 1 Pre-Comp Filter 1 Enable=1
Line In 1 Pre-Comp Filter 1 Type=Highpass
Line In 1 Pre-Comp Filter 1 Freq=599
Line In 1 Pre-Comp Filter 1 Q=541
Line In 1 Pre-Comp Filter 1 Gain=0
Line In 1 Pre-Comp Filter 2 Enable=1
Line In 1 Pre-Comp Filter 2 Type=Highpass
Line In 1 Pre-Comp Filter 2 Freq=600
Line In 1 Pre-Comp Filter 2 Q=1306
Line In 1 Pre-Comp Filter 2 Gain=0
Line In 1 PEQ Filter 1 Enable=1
Line In 1 PEQ Filter 1 Type=Peaking
Line In 1 PEQ Filter 1 Freq=1000
Line In 1 PEQ Filter 1 Q=1000
Line In 1 PEQ Filter 1 Gain=24
Line In 1 PEQ Filter 2 Enable=1
Line In 1 PEQ Filter 2 Type=Peaking
Line In 1 PEQ Filter 2 Freq=10000
Line In 1 PEQ Filter 2 Q=666
Line In 1 PEQ Filter 2 Gain=-15
Line In 1 PEQ Filter 3 Enable=1
Line In 1 PEQ Filter 3 Type=High Shelf
Line In 1 PEQ Filter 3 Freq=60000
Line In 1 PEQ Filter 3 Q=758
Line In 1 PEQ Filter 3 Gain=15
alsa-scarlett-gui-1.0~beta9/demo/Vocaster One.state 0000664 0000000 0000000 00000073741 15212330051 0022300 0 ustar 00root root 0000000 0000000 state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
comment {
access 'read volatile'
type INTEGER
count 4
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
comment {
access 'read volatile'
type INTEGER
count 10
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 1769
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 1769
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'Speaker Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Headphones Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Line In 1 DSP Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface CARD
name 'Line In 1 Compressor Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface CARD
name 'Line In 1 Compressor Threshold'
value -22
comment {
access 'read write'
type INTEGER
count 1
range '-40 - 0 (step 1)'
}
}
control.11 {
iface CARD
name 'Line In 1 Compressor Ratio'
value 8
comment {
access 'read write'
type INTEGER
count 1
range '2 - 100 (step 1)'
}
}
control.12 {
iface CARD
name 'Line In 1 Compressor Knee Width'
value 3
comment {
access 'read write'
type INTEGER
count 1
range '0 - 10 (step 1)'
}
}
control.13 {
iface CARD
name 'Line In 1 Compressor Attack'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 127 (step 1)'
}
}
control.14 {
iface CARD
name 'Line In 1 Compressor Release'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 127 (step 1)'
}
}
control.15 {
iface CARD
name 'Line In 1 Compressor Makeup Gain'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '0 - 24 (step 1)'
}
}
control.16 {
iface CARD
name 'Line In 1 Pre-Comp Filter Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface CARD
name 'Line In 1 PEQ Filter Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface CARD
name 'Line In 1 Pre-Comp Coefficients 1'
value.0 265694923
value.1 -531389846
value.2 265694923
value.3 532986969
value.4 -264567952
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.19 {
iface CARD
name 'Line In 1 Pre-Comp Coefficients 2'
value.0 268435456
value.1 -536870912
value.2 268435456
value.3 535245642
value.4 -266826695
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.20 {
iface CARD
name 'Line In 1 PEQ Coefficients 1'
value.0 268940007
value.1 -533799575
value.2 264905304
value.3 533799575
value.4 -265409855
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.21 {
iface CARD
name 'Line In 1 PEQ Coefficients 2'
value.0 264329859
value.1 -480949433
value.2 220769668
value.3 480949433
value.4 -216664071
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.22 {
iface CARD
name 'Line In 1 PEQ Coefficients 3'
value.0 305086343
value.1 -305965130
value.2 115171522
value.3 248373882
value.4 -94231161
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.23 {
iface MIXER
name 'Line In 1 Mute Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.25 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 9
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin 0
dbmax 7000
dbvalue.0 900
}
}
control.26 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.27 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value Success
comment {
access read
type ENUMERATED
count 1
item.0 Running
item.1 Success
item.2 FailPG
item.3 FailRange
item.4 WarnMaxCap
item.5 WarnMinCap
item.6 Cancelled
item.7 Invalid
}
}
control.28 {
iface CARD
name 'Autogain Hot Target'
value -18
comment {
access 'read write'
type INTEGER
count 1
range '-30 - 0 (step 1)'
dbmin -3000
dbmax 0
dbvalue.0 -1800
}
}
control.29 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.30 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.31 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.32 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.33 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.34 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.35 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.36 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.37 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.38 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.39 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.40 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.41 {
iface MIXER
name 'DSP Input 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.42 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.43 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.44 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Mix G'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.45 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Mix H'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.46 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.47 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.48 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.49 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.50 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.51 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Mix A'
item.4 'Mix B'
item.5 'Mix C'
item.6 'Mix D'
item.7 'Mix E'
item.8 'Mix F'
item.9 'Mix G'
item.10 'Mix H'
item.11 'DSP 1'
item.12 'PCM 1'
item.13 'PCM 2'
item.14 'PCM 3'
item.15 'PCM 4'
}
}
control.52 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.53 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.54 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.55 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.56 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.57 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.58 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.59 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.60 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.61 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.62 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.63 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.64 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.65 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.66 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.67 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.68 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.69 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.70 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.71 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.72 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.73 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.74 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.75 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.76 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.77 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.78 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.79 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.80 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.81 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.82 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.83 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.84 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.85 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.86 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.87 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.89 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.91 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.93 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.94 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.97 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.98 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.100 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.102 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.104 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.106 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.107 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.109 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.110 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.113 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.115 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.116 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
comment {
access 'read volatile'
type INTEGER
count 23
range '0 - 4095 (step 1)'
}
}
control.117 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/Vocaster Two.conf 0000664 0000000 0000000 00000025663 15212330051 0022135 0 ustar 00root root 0000000 0000000 [device]
serial=V2PEKFR260121D
model=Vocaster Two USB
[controls]
Speaker Mute Playback Switch=false
Headphones 1 Mute Playback Switch=false
Headphones 2 Mute Playback Switch=false
Line In 1 DSP Capture Switch=true
Line In 1 Compressor Enable=true
Line In 1 Compressor Threshold=-22
Line In 1 Compressor Ratio=8
Line In 1 Compressor Knee Width=3
Line In 1 Compressor Attack=30
Line In 1 Compressor Release=30
Line In 1 Compressor Makeup Gain=5
Line In 1 Pre-Comp Filter Enable=true
Line In 1 PEQ Filter Enable=true
Line In 1 Pre-Comp Coefficients 1=265694923,-531389846,265694923,532986969,-264567952
Line In 1 Pre-Comp Coefficients 2=268435456,-536870912,268435456,535245642,-266826695
Line In 1 PEQ Coefficients 1=268940007,-533799575,264905304,533799575,-265409855
Line In 1 PEQ Coefficients 2=264329859,-480949433,220769668,480949433,-216664071
Line In 1 PEQ Coefficients 3=305086343,-305965130,115171522,248373882,-94231161
Line In 2 DSP Capture Switch=true
Line In 2 Compressor Enable=true
Line In 2 Compressor Threshold=-22
Line In 2 Compressor Ratio=8
Line In 2 Compressor Knee Width=3
Line In 2 Compressor Attack=30
Line In 2 Compressor Release=30
Line In 2 Compressor Makeup Gain=5
Line In 2 Pre-Comp Filter Enable=false
Line In 2 PEQ Filter Enable=false
Line In 2 Pre-Comp Coefficients 1=265694923,-531389846,265694923,532986969,-264567952
Line In 2 Pre-Comp Coefficients 2=268435456,-536870912,268435456,535245642,-266826695
Line In 2 PEQ Coefficients 1=268940007,-533799575,264905304,533799575,-265409855
Line In 2 PEQ Coefficients 2=264329859,-480949433,220769668,480949433,-216664071
Line In 2 PEQ Coefficients 3=305086343,-305965130,115171522,248373882,-94231161
Line In 1 Mute Capture Switch=false
Line In 2 Mute Capture Switch=false
Line In 1 Phantom Power Capture Switch=false
Line In 2 Phantom Power Capture Switch=false
Line In 1 Gain Capture Volume=9
Line In 1 Autogain Capture Switch=false
Line In 2 Gain Capture Volume=9
Line In 2 Autogain Capture Switch=false
Autogain Hot Target=-18
Analogue Output 01 Playback Enum=Mix A
Analogue Output 02 Playback Enum=Mix B
Analogue Output 03 Playback Enum=Mix C
Analogue Output 04 Playback Enum=Mix D
Analogue Output 05 Playback Enum=Mix E
Analogue Output 06 Playback Enum=Mix F
Mixer Input 01 Capture Enum=DSP 1
Mixer Input 02 Capture Enum=DSP 2
Mixer Input 03 Capture Enum=Analogue 3
Mixer Input 04 Capture Enum=Analogue 4
Mixer Input 05 Capture Enum=Analogue 5
Mixer Input 06 Capture Enum=Analogue 6
Mixer Input 07 Capture Enum=PCM 1
Mixer Input 08 Capture Enum=PCM 2
Mixer Input 09 Capture Enum=PCM 3
Mixer Input 10 Capture Enum=PCM 4
Mixer Input 11 Capture Enum=Mix A
Mixer Input 12 Capture Enum=Mix B
DSP Input 1 Capture Enum=Analogue 1
DSP Input 2 Capture Enum=Analogue 2
PCM 01 Capture Enum=Mix G
PCM 02 Capture Enum=Mix H
PCM 03 Capture Enum=Mix I
PCM 04 Capture Enum=Mix J
PCM 05 Capture Enum=DSP 1
PCM 06 Capture Enum=DSP 2
PCM 07 Capture Enum=Analogue 3
PCM 08 Capture Enum=Analogue 4
PCM 09 Capture Enum=Analogue 5
PCM 10 Capture Enum=Analogue 6
PCM 11 Capture Enum=PCM 1
PCM 12 Capture Enum=PCM 2
PCM 13 Capture Enum=PCM 3
PCM 14 Capture Enum=PCM 4
Mix A Input 01 Playback Volume=154
Mix A Input 02 Playback Volume=154
Mix A Input 03 Playback Volume=160
Mix A Input 04 Playback Volume=0
Mix A Input 05 Playback Volume=122
Mix A Input 06 Playback Volume=0
Mix A Input 07 Playback Volume=160
Mix A Input 08 Playback Volume=0
Mix A Input 09 Playback Volume=160
Mix A Input 10 Playback Volume=0
Mix A Input 11 Playback Volume=0
Mix A Input 12 Playback Volume=0
Mix B Input 01 Playback Volume=154
Mix B Input 02 Playback Volume=154
Mix B Input 03 Playback Volume=0
Mix B Input 04 Playback Volume=160
Mix B Input 05 Playback Volume=0
Mix B Input 06 Playback Volume=122
Mix B Input 07 Playback Volume=0
Mix B Input 08 Playback Volume=160
Mix B Input 09 Playback Volume=0
Mix B Input 10 Playback Volume=160
Mix B Input 11 Playback Volume=0
Mix B Input 12 Playback Volume=0
Mix C Input 01 Playback Volume=154
Mix C Input 02 Playback Volume=154
Mix C Input 03 Playback Volume=0
Mix C Input 04 Playback Volume=0
Mix C Input 05 Playback Volume=122
Mix C Input 06 Playback Volume=0
Mix C Input 07 Playback Volume=160
Mix C Input 08 Playback Volume=0
Mix C Input 09 Playback Volume=160
Mix C Input 10 Playback Volume=0
Mix C Input 11 Playback Volume=0
Mix C Input 12 Playback Volume=0
Mix D Input 01 Playback Volume=154
Mix D Input 02 Playback Volume=154
Mix D Input 03 Playback Volume=0
Mix D Input 04 Playback Volume=0
Mix D Input 05 Playback Volume=0
Mix D Input 06 Playback Volume=122
Mix D Input 07 Playback Volume=0
Mix D Input 08 Playback Volume=160
Mix D Input 09 Playback Volume=0
Mix D Input 10 Playback Volume=160
Mix D Input 11 Playback Volume=0
Mix D Input 12 Playback Volume=0
Mix E Input 01 Playback Volume=154
Mix E Input 02 Playback Volume=154
Mix E Input 03 Playback Volume=160
Mix E Input 04 Playback Volume=0
Mix E Input 05 Playback Volume=0
Mix E Input 06 Playback Volume=0
Mix E Input 07 Playback Volume=160
Mix E Input 08 Playback Volume=0
Mix E Input 09 Playback Volume=160
Mix E Input 10 Playback Volume=0
Mix E Input 11 Playback Volume=0
Mix E Input 12 Playback Volume=0
Mix F Input 01 Playback Volume=154
Mix F Input 02 Playback Volume=154
Mix F Input 03 Playback Volume=0
Mix F Input 04 Playback Volume=160
Mix F Input 05 Playback Volume=0
Mix F Input 06 Playback Volume=0
Mix F Input 07 Playback Volume=0
Mix F Input 08 Playback Volume=160
Mix F Input 09 Playback Volume=0
Mix F Input 10 Playback Volume=160
Mix F Input 11 Playback Volume=0
Mix F Input 12 Playback Volume=0
Mix G Input 01 Playback Volume=154
Mix G Input 02 Playback Volume=154
Mix G Input 03 Playback Volume=160
Mix G Input 04 Playback Volume=0
Mix G Input 05 Playback Volume=122
Mix G Input 06 Playback Volume=0
Mix G Input 07 Playback Volume=0
Mix G Input 08 Playback Volume=0
Mix G Input 09 Playback Volume=160
Mix G Input 10 Playback Volume=0
Mix G Input 11 Playback Volume=0
Mix G Input 12 Playback Volume=0
Mix H Input 01 Playback Volume=154
Mix H Input 02 Playback Volume=154
Mix H Input 03 Playback Volume=0
Mix H Input 04 Playback Volume=160
Mix H Input 05 Playback Volume=0
Mix H Input 06 Playback Volume=122
Mix H Input 07 Playback Volume=0
Mix H Input 08 Playback Volume=0
Mix H Input 09 Playback Volume=0
Mix H Input 10 Playback Volume=160
Mix H Input 11 Playback Volume=0
Mix H Input 12 Playback Volume=0
Mix I Input 01 Playback Volume=0
Mix I Input 02 Playback Volume=0
Mix I Input 03 Playback Volume=0
Mix I Input 04 Playback Volume=0
Mix I Input 05 Playback Volume=0
Mix I Input 06 Playback Volume=0
Mix I Input 07 Playback Volume=0
Mix I Input 08 Playback Volume=0
Mix I Input 09 Playback Volume=0
Mix I Input 10 Playback Volume=0
Mix I Input 11 Playback Volume=160
Mix I Input 12 Playback Volume=0
Mix J Input 01 Playback Volume=0
Mix J Input 02 Playback Volume=0
Mix J Input 03 Playback Volume=0
Mix J Input 04 Playback Volume=0
Mix J Input 05 Playback Volume=0
Mix J Input 06 Playback Volume=0
Mix J Input 07 Playback Volume=0
Mix J Input 08 Playback Volume=0
Mix J Input 09 Playback Volume=0
Mix J Input 10 Playback Volume=0
Mix J Input 11 Playback Volume=0
Mix J Input 12 Playback Volume=160
Bluetooth Capture Volume=15
Name=
Analogue In 1 Name=
Analogue In 2 Name=
Analogue In 3 Name=
Analogue In 4 Name=
Analogue In 5 Name=
Analogue In 6 Name=
Mixer Out 1 Name=
Mixer Out 2 Name=
Mixer Out 3 Name=
Mixer Out 4 Name=
Mixer Out 5 Name=
Mixer Out 6 Name=
Mixer Out 7 Name=
Mixer Out 8 Name=
Mixer Out 9 Name=
Mixer Out 10 Name=
DSP Out 1 Name=
DSP Out 2 Name=
PCM Out 1 Name=
PCM Out 2 Name=
PCM Out 3 Name=
PCM Out 4 Name=
Analogue Out 1 Name=
Analogue Out 2 Name=
Analogue Out 3 Name=
Analogue Out 4 Name=
Analogue Out 5 Name=
Analogue Out 6 Name=
Mixer In 1 Name=
Mixer In 2 Name=
Mixer In 3 Name=
Mixer In 4 Name=
Mixer In 5 Name=
Mixer In 6 Name=
Mixer In 7 Name=
Mixer In 8 Name=
Mixer In 9 Name=
Mixer In 10 Name=
Mixer In 11 Name=
Mixer In 12 Name=
PCM In 1 Name=
PCM In 2 Name=
PCM In 3 Name=
PCM In 4 Name=
PCM In 5 Name=
PCM In 6 Name=
PCM In 7 Name=
PCM In 8 Name=
PCM In 9 Name=
PCM In 10 Name=
PCM In 11 Name=
PCM In 12 Name=
PCM In 13 Name=
PCM In 14 Name=
Analogue In 1 Switch=true
Analogue In 2 Switch=true
Analogue In 3 Switch=true
Analogue In 4 Switch=true
Analogue In 5 Switch=true
Analogue In 6 Switch=true
Mixer Out 1 Switch=true
Mixer Out 2 Switch=true
Mixer Out 3 Switch=true
Mixer Out 4 Switch=true
Mixer Out 5 Switch=true
Mixer Out 6 Switch=true
Mixer Out 7 Switch=true
Mixer Out 8 Switch=true
Mixer Out 9 Switch=true
Mixer Out 10 Switch=true
DSP Out 1 Switch=true
DSP Out 2 Switch=true
PCM Out 1 Switch=true
PCM Out 2 Switch=true
PCM Out 3 Switch=true
PCM Out 4 Switch=true
Analogue Out 1 Switch=true
Analogue Out 2 Switch=true
Analogue Out 3 Switch=true
Analogue Out 4 Switch=true
Analogue Out 5 Switch=true
Analogue Out 6 Switch=true
Mixer In 1 Switch=true
Mixer In 2 Switch=true
Mixer In 3 Switch=true
Mixer In 4 Switch=true
Mixer In 5 Switch=true
Mixer In 6 Switch=true
Mixer In 7 Switch=true
Mixer In 8 Switch=true
Mixer In 9 Switch=true
Mixer In 10 Switch=true
Mixer In 11 Switch=true
Mixer In 12 Switch=true
DSP In 1 Switch=true
DSP In 2 Switch=true
PCM In 1 Switch=true
PCM In 2 Switch=true
PCM In 3 Switch=true
PCM In 4 Switch=true
PCM In 5 Switch=true
PCM In 6 Switch=true
PCM In 7 Switch=true
PCM In 8 Switch=true
PCM In 9 Switch=true
PCM In 10 Switch=true
PCM In 11 Switch=true
PCM In 12 Switch=true
PCM In 13 Switch=true
PCM In 14 Switch=true
Line In 1 Pre-Comp Filter 1 Enable=1
Line In 1 Pre-Comp Filter 1 Type=Highpass
Line In 1 Pre-Comp Filter 1 Freq=599
Line In 1 Pre-Comp Filter 1 Q=541
Line In 1 Pre-Comp Filter 1 Gain=0
Line In 1 Pre-Comp Filter 2 Enable=1
Line In 1 Pre-Comp Filter 2 Type=Highpass
Line In 1 Pre-Comp Filter 2 Freq=600
Line In 1 Pre-Comp Filter 2 Q=1306
Line In 1 Pre-Comp Filter 2 Gain=0
Line In 1 PEQ Filter 1 Enable=1
Line In 1 PEQ Filter 1 Type=Peaking
Line In 1 PEQ Filter 1 Freq=1000
Line In 1 PEQ Filter 1 Q=1000
Line In 1 PEQ Filter 1 Gain=24
Line In 1 PEQ Filter 2 Enable=1
Line In 1 PEQ Filter 2 Type=Peaking
Line In 1 PEQ Filter 2 Freq=10000
Line In 1 PEQ Filter 2 Q=666
Line In 1 PEQ Filter 2 Gain=-15
Line In 1 PEQ Filter 3 Enable=1
Line In 1 PEQ Filter 3 Type=High Shelf
Line In 1 PEQ Filter 3 Freq=60000
Line In 1 PEQ Filter 3 Q=758
Line In 1 PEQ Filter 3 Gain=15
Line In 2 Pre-Comp Filter 1 Enable=1
Line In 2 Pre-Comp Filter 1 Type=Highpass
Line In 2 Pre-Comp Filter 1 Freq=599
Line In 2 Pre-Comp Filter 1 Q=541
Line In 2 Pre-Comp Filter 1 Gain=0
Line In 2 Pre-Comp Filter 2 Enable=1
Line In 2 Pre-Comp Filter 2 Type=Highpass
Line In 2 Pre-Comp Filter 2 Freq=600
Line In 2 Pre-Comp Filter 2 Q=1306
Line In 2 Pre-Comp Filter 2 Gain=0
Line In 2 PEQ Filter 1 Enable=1
Line In 2 PEQ Filter 1 Type=Peaking
Line In 2 PEQ Filter 1 Freq=1000
Line In 2 PEQ Filter 1 Q=1000
Line In 2 PEQ Filter 1 Gain=24
Line In 2 PEQ Filter 2 Enable=1
Line In 2 PEQ Filter 2 Type=Peaking
Line In 2 PEQ Filter 2 Freq=10000
Line In 2 PEQ Filter 2 Q=666
Line In 2 PEQ Filter 2 Gain=-15
Line In 2 PEQ Filter 3 Enable=1
Line In 2 PEQ Filter 3 Type=High Shelf
Line In 2 PEQ Filter 3 Freq=60000
Line In 2 PEQ Filter 3 Q=758
Line In 2 PEQ Filter 3 Gain=15
alsa-scarlett-gui-1.0~beta9/demo/Vocaster Two.state 0000664 0000000 0000000 00000161237 15212330051 0022326 0 ustar 00root root 0000000 0000000 state.USB_1 {
control.1 {
iface PCM
name 'Playback Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
comment {
access 'read volatile'
type INTEGER
count 4
range '0 - 36'
}
}
control.2 {
iface PCM
name 'Capture Channel Map'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
comment {
access 'read volatile'
type INTEGER
count 14
range '0 - 36'
}
}
control.3 {
iface CARD
name 'USB Internal Validity'
value true
comment {
access read
type BOOLEAN
count 1
}
}
control.4 {
iface CARD
name 'Firmware Version'
value 1769
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.5 {
iface CARD
name 'Minimum Firmware Version'
value 1769
comment {
access read
type INTEGER
count 1
range '0 - 0'
}
}
control.6 {
iface MIXER
name 'Speaker Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Headphones 1 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Headphones 2 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface MIXER
name 'Line In 1 DSP Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.10 {
iface CARD
name 'Line In 1 Compressor Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.11 {
iface CARD
name 'Line In 1 Compressor Threshold'
value -22
comment {
access 'read write'
type INTEGER
count 1
range '-40 - 0 (step 1)'
}
}
control.12 {
iface CARD
name 'Line In 1 Compressor Ratio'
value 8
comment {
access 'read write'
type INTEGER
count 1
range '2 - 100 (step 1)'
}
}
control.13 {
iface CARD
name 'Line In 1 Compressor Knee Width'
value 3
comment {
access 'read write'
type INTEGER
count 1
range '0 - 10 (step 1)'
}
}
control.14 {
iface CARD
name 'Line In 1 Compressor Attack'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 127 (step 1)'
}
}
control.15 {
iface CARD
name 'Line In 1 Compressor Release'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 127 (step 1)'
}
}
control.16 {
iface CARD
name 'Line In 1 Compressor Makeup Gain'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '0 - 24 (step 1)'
}
}
control.17 {
iface CARD
name 'Line In 1 Pre-Comp Filter Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
iface CARD
name 'Line In 1 PEQ Filter Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface CARD
name 'Line In 1 Pre-Comp Coefficients 1'
value.0 265694923
value.1 -531389846
value.2 265694923
value.3 532986969
value.4 -264567952
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.20 {
iface CARD
name 'Line In 1 Pre-Comp Coefficients 2'
value.0 268435456
value.1 -536870912
value.2 268435456
value.3 535245642
value.4 -266826695
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.21 {
iface CARD
name 'Line In 1 PEQ Coefficients 1'
value.0 268940007
value.1 -533799575
value.2 264905304
value.3 533799575
value.4 -265409855
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.22 {
iface CARD
name 'Line In 1 PEQ Coefficients 2'
value.0 264329859
value.1 -480949433
value.2 220769668
value.3 480949433
value.4 -216664071
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.23 {
iface CARD
name 'Line In 1 PEQ Coefficients 3'
value.0 305086343
value.1 -305965130
value.2 115171522
value.3 248373882
value.4 -94231161
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.24 {
iface MIXER
name 'Line In 2 DSP Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.25 {
iface CARD
name 'Line In 2 Compressor Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface CARD
name 'Line In 2 Compressor Threshold'
value -22
comment {
access 'read write'
type INTEGER
count 1
range '-40 - 0 (step 1)'
}
}
control.27 {
iface CARD
name 'Line In 2 Compressor Ratio'
value 8
comment {
access 'read write'
type INTEGER
count 1
range '2 - 100 (step 1)'
}
}
control.28 {
iface CARD
name 'Line In 2 Compressor Knee Width'
value 3
comment {
access 'read write'
type INTEGER
count 1
range '0 - 10 (step 1)'
}
}
control.29 {
iface CARD
name 'Line In 2 Compressor Attack'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 127 (step 1)'
}
}
control.30 {
iface CARD
name 'Line In 2 Compressor Release'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 127 (step 1)'
}
}
control.31 {
iface CARD
name 'Line In 2 Compressor Makeup Gain'
value 5
comment {
access 'read write'
type INTEGER
count 1
range '0 - 24 (step 1)'
}
}
control.32 {
iface CARD
name 'Line In 2 Pre-Comp Filter Enable'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.33 {
iface CARD
name 'Line In 2 PEQ Filter Enable'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.34 {
iface CARD
name 'Line In 2 Pre-Comp Coefficients 1'
value.0 265694923
value.1 -531389846
value.2 265694923
value.3 532986969
value.4 -264567952
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.35 {
iface CARD
name 'Line In 2 Pre-Comp Coefficients 2'
value.0 268435456
value.1 -536870912
value.2 268435456
value.3 535245642
value.4 -266826695
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.36 {
iface CARD
name 'Line In 2 PEQ Coefficients 1'
value.0 268940007
value.1 -533799575
value.2 264905304
value.3 533799575
value.4 -265409855
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.37 {
iface CARD
name 'Line In 2 PEQ Coefficients 2'
value.0 264329859
value.1 -480949433
value.2 220769668
value.3 480949433
value.4 -216664071
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.38 {
iface CARD
name 'Line In 2 PEQ Coefficients 3'
value.0 305086343
value.1 -305965130
value.2 115171522
value.3 248373882
value.4 -94231161
comment {
access 'read write'
type INTEGER
count 5
range '-2147483648 - 2147483647 (step 1)'
}
}
control.39 {
iface MIXER
name 'Line In 1 Mute Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.40 {
iface MIXER
name 'Line In 2 Mute Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.41 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.42 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.43 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 9
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin 0
dbmax 7000
dbvalue.0 900
}
}
control.44 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.45 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value Success
comment {
access read
type ENUMERATED
count 1
item.0 Running
item.1 Success
item.2 FailPG
item.3 FailRange
item.4 WarnMaxCap
item.5 WarnMinCap
item.6 Cancelled
item.7 Invalid
}
}
control.46 {
iface MIXER
name 'Line In 2 Gain Capture Volume'
value 9
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin 0
dbmax 7000
dbvalue.0 900
}
}
control.47 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.48 {
iface MIXER
name 'Line In 2 Autogain Status Capture Enum'
value Success
comment {
access read
type ENUMERATED
count 1
item.0 Running
item.1 Success
item.2 FailPG
item.3 FailRange
item.4 WarnMaxCap
item.5 WarnMinCap
item.6 Cancelled
item.7 Invalid
}
}
control.49 {
iface CARD
name 'Autogain Hot Target'
value -18
comment {
access 'read write'
type INTEGER
count 1
range '-30 - 0 (step 1)'
dbmin -3000
dbmax 0
dbvalue.0 -1800
}
}
control.50 {
iface MIXER
name 'Analogue Output 01 Playback Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.51 {
iface MIXER
name 'Analogue Output 02 Playback Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.52 {
iface MIXER
name 'Analogue Output 03 Playback Enum'
value 'Mix C'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.53 {
iface MIXER
name 'Analogue Output 04 Playback Enum'
value 'Mix D'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.54 {
iface MIXER
name 'Analogue Output 05 Playback Enum'
value 'Mix E'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.55 {
iface MIXER
name 'Analogue Output 06 Playback Enum'
value 'Mix F'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.56 {
iface MIXER
name 'Mixer Input 01 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.57 {
iface MIXER
name 'Mixer Input 02 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.58 {
iface MIXER
name 'Mixer Input 03 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.59 {
iface MIXER
name 'Mixer Input 04 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.60 {
iface MIXER
name 'Mixer Input 05 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.61 {
iface MIXER
name 'Mixer Input 06 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.62 {
iface MIXER
name 'Mixer Input 07 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.63 {
iface MIXER
name 'Mixer Input 08 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.64 {
iface MIXER
name 'Mixer Input 09 Capture Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.65 {
iface MIXER
name 'Mixer Input 10 Capture Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.66 {
iface MIXER
name 'Mixer Input 11 Capture Enum'
value 'Mix A'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.67 {
iface MIXER
name 'Mixer Input 12 Capture Enum'
value 'Mix B'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.68 {
iface MIXER
name 'DSP Input 1 Capture Enum'
value 'Analogue 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.69 {
iface MIXER
name 'DSP Input 2 Capture Enum'
value 'Analogue 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.70 {
iface MIXER
name 'PCM 01 Capture Enum'
value 'Mix G'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.71 {
iface MIXER
name 'PCM 02 Capture Enum'
value 'Mix H'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.72 {
iface MIXER
name 'PCM 03 Capture Enum'
value 'Mix I'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.73 {
iface MIXER
name 'PCM 04 Capture Enum'
value 'Mix J'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.74 {
iface MIXER
name 'PCM 05 Capture Enum'
value 'DSP 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.75 {
iface MIXER
name 'PCM 06 Capture Enum'
value 'DSP 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.76 {
iface MIXER
name 'PCM 07 Capture Enum'
value 'Analogue 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.77 {
iface MIXER
name 'PCM 08 Capture Enum'
value 'Analogue 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.78 {
iface MIXER
name 'PCM 09 Capture Enum'
value 'Analogue 5'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.79 {
iface MIXER
name 'PCM 10 Capture Enum'
value 'Analogue 6'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.80 {
iface MIXER
name 'PCM 11 Capture Enum'
value 'PCM 1'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.81 {
iface MIXER
name 'PCM 12 Capture Enum'
value 'PCM 2'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.82 {
iface MIXER
name 'PCM 13 Capture Enum'
value 'PCM 3'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.83 {
iface MIXER
name 'PCM 14 Capture Enum'
value 'PCM 4'
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Off
item.1 'Analogue 1'
item.2 'Analogue 2'
item.3 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Mix A'
item.8 'Mix B'
item.9 'Mix C'
item.10 'Mix D'
item.11 'Mix E'
item.12 'Mix F'
item.13 'Mix G'
item.14 'Mix H'
item.15 'Mix I'
item.16 'Mix J'
item.17 'DSP 1'
item.18 'DSP 2'
item.19 'PCM 1'
item.20 'PCM 2'
item.21 'PCM 3'
item.22 'PCM 4'
}
}
control.84 {
iface MIXER
name 'Mix A Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.85 {
iface MIXER
name 'Mix A Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.86 {
iface MIXER
name 'Mix A Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.87 {
iface MIXER
name 'Mix A Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.88 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -1900
}
}
control.89 {
iface MIXER
name 'Mix A Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.90 {
iface MIXER
name 'Mix A Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.91 {
iface MIXER
name 'Mix A Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.92 {
iface MIXER
name 'Mix A Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.93 {
iface MIXER
name 'Mix A Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.94 {
iface MIXER
name 'Mix A Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.95 {
iface MIXER
name 'Mix A Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.96 {
iface MIXER
name 'Mix B Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.97 {
iface MIXER
name 'Mix B Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.98 {
iface MIXER
name 'Mix B Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.99 {
iface MIXER
name 'Mix B Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.100 {
iface MIXER
name 'Mix B Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.101 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -1900
}
}
control.102 {
iface MIXER
name 'Mix B Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.103 {
iface MIXER
name 'Mix B Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.104 {
iface MIXER
name 'Mix B Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.105 {
iface MIXER
name 'Mix B Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.106 {
iface MIXER
name 'Mix B Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.107 {
iface MIXER
name 'Mix B Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.108 {
iface MIXER
name 'Mix C Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.109 {
iface MIXER
name 'Mix C Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.110 {
iface MIXER
name 'Mix C Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.111 {
iface MIXER
name 'Mix C Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.112 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -1900
}
}
control.113 {
iface MIXER
name 'Mix C Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.114 {
iface MIXER
name 'Mix C Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.115 {
iface MIXER
name 'Mix C Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.116 {
iface MIXER
name 'Mix C Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.117 {
iface MIXER
name 'Mix C Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.118 {
iface MIXER
name 'Mix C Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.119 {
iface MIXER
name 'Mix C Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.120 {
iface MIXER
name 'Mix D Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.121 {
iface MIXER
name 'Mix D Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.122 {
iface MIXER
name 'Mix D Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.123 {
iface MIXER
name 'Mix D Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.124 {
iface MIXER
name 'Mix D Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.125 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -1900
}
}
control.126 {
iface MIXER
name 'Mix D Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.127 {
iface MIXER
name 'Mix D Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.128 {
iface MIXER
name 'Mix D Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.129 {
iface MIXER
name 'Mix D Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.130 {
iface MIXER
name 'Mix D Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.131 {
iface MIXER
name 'Mix D Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.132 {
iface MIXER
name 'Mix E Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.133 {
iface MIXER
name 'Mix E Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.134 {
iface MIXER
name 'Mix E Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.135 {
iface MIXER
name 'Mix E Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.136 {
iface MIXER
name 'Mix E Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.137 {
iface MIXER
name 'Mix E Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.138 {
iface MIXER
name 'Mix E Input 07 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.139 {
iface MIXER
name 'Mix E Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.140 {
iface MIXER
name 'Mix E Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.141 {
iface MIXER
name 'Mix E Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.142 {
iface MIXER
name 'Mix E Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.143 {
iface MIXER
name 'Mix E Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.144 {
iface MIXER
name 'Mix F Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.145 {
iface MIXER
name 'Mix F Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.146 {
iface MIXER
name 'Mix F Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.147 {
iface MIXER
name 'Mix F Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.148 {
iface MIXER
name 'Mix F Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.149 {
iface MIXER
name 'Mix F Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.150 {
iface MIXER
name 'Mix F Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.151 {
iface MIXER
name 'Mix F Input 08 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.152 {
iface MIXER
name 'Mix F Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.153 {
iface MIXER
name 'Mix F Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.154 {
iface MIXER
name 'Mix F Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.155 {
iface MIXER
name 'Mix F Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.156 {
iface MIXER
name 'Mix G Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.157 {
iface MIXER
name 'Mix G Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.158 {
iface MIXER
name 'Mix G Input 03 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.159 {
iface MIXER
name 'Mix G Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.160 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -1900
}
}
control.161 {
iface MIXER
name 'Mix G Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.162 {
iface MIXER
name 'Mix G Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.163 {
iface MIXER
name 'Mix G Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.164 {
iface MIXER
name 'Mix G Input 09 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.165 {
iface MIXER
name 'Mix G Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.166 {
iface MIXER
name 'Mix G Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.167 {
iface MIXER
name 'Mix G Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.168 {
iface MIXER
name 'Mix H Input 01 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.169 {
iface MIXER
name 'Mix H Input 02 Playback Volume'
value 154
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -300
}
}
control.170 {
iface MIXER
name 'Mix H Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.171 {
iface MIXER
name 'Mix H Input 04 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.172 {
iface MIXER
name 'Mix H Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.173 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -1900
}
}
control.174 {
iface MIXER
name 'Mix H Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.175 {
iface MIXER
name 'Mix H Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.176 {
iface MIXER
name 'Mix H Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.177 {
iface MIXER
name 'Mix H Input 10 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.178 {
iface MIXER
name 'Mix H Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.179 {
iface MIXER
name 'Mix H Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.180 {
iface MIXER
name 'Mix I Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.181 {
iface MIXER
name 'Mix I Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.182 {
iface MIXER
name 'Mix I Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.183 {
iface MIXER
name 'Mix I Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.184 {
iface MIXER
name 'Mix I Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.185 {
iface MIXER
name 'Mix I Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.186 {
iface MIXER
name 'Mix I Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.187 {
iface MIXER
name 'Mix I Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.188 {
iface MIXER
name 'Mix I Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.189 {
iface MIXER
name 'Mix I Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.190 {
iface MIXER
name 'Mix I Input 11 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.191 {
iface MIXER
name 'Mix I Input 12 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.192 {
iface MIXER
name 'Mix J Input 01 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.193 {
iface MIXER
name 'Mix J Input 02 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.194 {
iface MIXER
name 'Mix J Input 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.195 {
iface MIXER
name 'Mix J Input 04 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.196 {
iface MIXER
name 'Mix J Input 05 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.197 {
iface MIXER
name 'Mix J Input 06 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.198 {
iface MIXER
name 'Mix J Input 07 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.199 {
iface MIXER
name 'Mix J Input 08 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.200 {
iface MIXER
name 'Mix J Input 09 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.201 {
iface MIXER
name 'Mix J Input 10 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.202 {
iface MIXER
name 'Mix J Input 11 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 -8000
}
}
control.203 {
iface MIXER
name 'Mix J Input 12 Playback Volume'
value 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 184 (step 1)'
dbmin -8000
dbmax 1200
dbvalue.0 0
}
}
control.204 {
iface PCM
name 'Level Meter'
value.0 0
value.1 0
value.2 0
value.3 0
value.4 0
value.5 0
value.6 0
value.7 0
value.8 0
value.9 0
value.10 0
value.11 0
value.12 0
value.13 0
value.14 0
value.15 0
value.16 0
value.17 0
value.18 0
value.19 0
value.20 0
value.21 0
value.22 0
value.23 0
value.24 0
value.25 0
value.26 0
value.27 0
value.28 0
value.29 0
value.30 0
value.31 0
value.32 0
value.33 0
comment {
access 'read volatile'
type INTEGER
count 34
range '0 - 4095 (step 1)'
}
}
control.205 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.206 {
iface MIXER
name 'Bluetooth Capture Volume'
value 15
comment {
access 'read write'
type INTEGER
count 1
range '0 - 30 (step 1)'
}
}
}
alsa-scarlett-gui-1.0~beta9/demo/vocaster-controls 0000664 0000000 0000000 00000001612 15212330051 0022344 0 ustar 00root root 0000000 0000000 Line In 1 Compressor Attack
Line In 1 Compressor Enable
Line In 1 Compressor Knee Width
Line In 1 Compressor Makeup Gain
Line In 1 Compressor Ratio
Line In 1 Compressor Release
Line In 1 Compressor Threshold
Line In 1 DSP Capture Switch
Line In 1 PEQ Coefficients 1
Line In 1 PEQ Coefficients 2
Line In 1 PEQ Coefficients 3
Line In 1 PEQ Filter Enable
Line In 1 Pre-Comp Coefficients 1
Line In 1 Pre-Comp Coefficients 2
Line In 1 Pre-Comp Filter Enable
Line In 2 Compressor Attack
Line In 2 Compressor Enable
Line In 2 Compressor Knee Width
Line In 2 Compressor Makeup Gain
Line In 2 Compressor Ratio
Line In 2 Compressor Release
Line In 2 Compressor Threshold
Line In 2 DSP Capture Switch
Line In 2 PEQ Coefficients 1
Line In 2 PEQ Coefficients 2
Line In 2 PEQ Coefficients 3
Line In 2 PEQ Filter Enable
Line In 2 Pre-Comp Coefficients 1
Line In 2 Pre-Comp Coefficients 2
Line In 2 Pre-Comp Filter Enable
alsa-scarlett-gui-1.0~beta9/docs/ 0000775 0000000 0000000 00000000000 15212330051 0016736 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/docs/INSTALL.md 0000664 0000000 0000000 00000015337 15212330051 0020377 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel Installation
## Quick Start
Choose the path that matches your interface. RPM and deb packages
are available from each repository's
[GitHub Releases](https://github.com/geoffreybennett/alsa-scarlett-gui/releases)
page; alternatively, see [Building from Source](#building-from-source)
below.
### Scarlett 2nd/3rd Gen, Small 4th Gen, Clarett, Vocaster
1. Ensure your kernel meets the minimum version (see
[table below](#linux-kernel)) — all major distros already do
2. Install
[scarlett2-firmware](https://github.com/geoffreybennett/scarlett2-firmware/releases)
3. Install
[alsa-scarlett-gui](https://github.com/geoffreybennett/alsa-scarlett-gui/releases)
4. Run `alsa-scarlett-gui` — it will prompt you to update your
device firmware if needed
### Scarlett 4th Gen 16i16, 18i16, 18i20
1. Ensure you are running Linux 6.14+ (`uname -r` to check)
2. Install
[fcp-support](https://github.com/geoffreybennett/fcp-support/releases)
— the `fcp-server` daemon will start automatically when you
plug in your interface
3. Install
[scarlett4-firmware](https://github.com/geoffreybennett/scarlett4-firmware/releases)
4. Install
[alsa-scarlett-gui](https://github.com/geoffreybennett/alsa-scarlett-gui/releases)
5. Run `alsa-scarlett-gui` — it will prompt you to update your
device firmware if needed
### Scarlett 1st Gen 6i6, 8i6, 18i6, 18i8, 18i20
1. Ensure you are running Linux 3.19+ (any modern distro)
2. Install
[alsa-scarlett-gui](https://github.com/geoffreybennett/alsa-scarlett-gui/releases)
## Prerequisites
### Linux Kernel
You need to be running a Linux Kernel that contains the appropriate
driver for your interface. Use `uname -r` to check what kernel version
you are running.
Check the following table to see which driver your interface uses and
the first kernel version that the driver was included in:
| Series | Models | Driver | Kernel Version |
|-----------|--------|--------|:----------------------:|
| Scarlett 1st Gen | Solo, 2i2, 2i4 | N/A* | Any |
| Scarlett 1st Gen | 6i6, 8i6, 18i6, 18i8, 18i20 | Scarlett 1st Gen Mixer Driver | 3.19+ |
| Scarlett 2nd Gen | Solo, 2i2, 2i4 | N/A* | Any |
| Scarlett 2nd Gen | 6i6, 18i8, 18i20 | Scarlett2 Mixer Driver | 6.7+ |
| Scarlett 3rd Gen | Solo, 2i2, 4i4, 8i6, 18i8, 18i20 | Scarlett2 Mixer Driver | 6.7+ |
| Scarlett 4th Gen | Solo, 2i2, 4i4 | Scarlett2 Mixer Driver | 6.8+ |
| Scarlett 4th Gen | 16i16, 18i16, 18i20 | FCP (Focusrite Control Protocol) Driver | 6.14+ |
| Clarett USB and Clarett+ | 2Pre, 4Pre, 8Pre | Scarlett2 Mixer Driver | 6.7+ |
| Vocaster | One, Two | Scarlett2 Mixer Driver | 6.10+ |
\* The small 1st Gen and 2nd Gen models don’t have any proprietary
software controls so they don’t need a driver beyond the standard ALSA
USB Audio driver. This means that this application (alsa-scarlett-gui)
is not needed, useful, or supported for these models.
If your distribution doesn't include a recent-enough kernel for
your interface, update your distribution or kernel. All major
distributions now ship kernels that include the required drivers.
Kernel 6.7 and later have the Scarlett2 driver enabled by default.
The Scarlett 1st Gen driver and the FCP drivers are always enabled.
#### Enabling the Scarlett2 Driver
Some kernels before 6.7 have an earlier version of the Scarlett2
driver which is disabled by default. If this is you, check the driver
status (after plugging your interface in) with this command:
```
dmesg | grep -i -A 5 -B 5 focusrite
```
If all is good you’ll see messages like this:
```
New USB device found, idVendor=1235, idProduct=8215, bcdDevice= 6.0b
Product: Scarlett 18i20 USB
Focusrite Scarlett Gen 3 Mixer Driver enabled (pid=0x8215); ...
```
If you don’t see the “Mixer Driver” message or if it shows “disabled”
then check the [OLDKERNEL.md](OLDKERNEL.md) instructions (or,
preferably, upgrade your distro/kernel!).
### FCP User-Space Driver
The FCP kernel driver requires the user-space driver `fcp-server` in
order to do anything useful. This is available from the
[fcp-support](https://github.com/geoffreybennett/fcp-support) repo.
### Gtk4
You need a Linux distribution with Gtk4 development libraries. If it
doesn’t have them natively, try the Flatpak instructions below.
### Firmware
#### Scarlett2 Driver
As of Linux 6.8, firmware updates of all supported interfaces from the
2nd Gen onwards can be done through Linux. This is mandatory for
Scarlett 4th Gen and Vocaster interfaces (unless you’ve already
updated it using the manufacturer’s software), and optional but
recommended for Scarlett 2nd and 3rd Gen, Clarett USB, and Clarett+
interfaces.
Download the firmware from
https://github.com/geoffreybennett/scarlett2-firmware and place it in
`/usr/lib/firmware/scarlett2` or use the RPM/deb package.
#### FCP Driver
Firmware updates for the big Scarlett 4th Gen interfaces can be done
through `alsa-scarlett-gui` (which will prompt you automatically when
an update is available) or the CLI `fcp-tool` utility from the
[fcp-support](https://github.com/geoffreybennett/fcp-support) repo.
Updating the firmware is mandatory for these interfaces.
Download the firmware from
https://github.com/geoffreybennett/scarlett4-firmware and place it in
`/usr/lib/firmware/scarlett4` or use the RPM/deb package.
## Building from Source
On Fedora, these packages need to be installed:
```
sudo dnf -y install make gcc alsa-lib-devel gtk4-devel openssl-devel
```
On OpenSUSE:
```
sudo zypper in git alsa-devel gtk4-devel libopenssl-devel
```
On Ubuntu:
```
sudo apt -y install git make gcc libgtk-4-dev libasound2-dev libssl-dev
```
On Arch:
```
sudo pacman -S gtk4
```
To download from github:
```
git clone https://github.com/geoffreybennett/alsa-scarlett-gui
cd alsa-scarlett-gui
```
To build:
```
cd src
make -j$(nproc)
```
To run:
```
./alsa-scarlett-gui
```
You can install it into `/usr/local` (binary, desktop file, and icon)
with:
```
sudo make install
```
And uninstall with:
```
sudo make uninstall
```
Continue on to reading [USAGE.md](USAGE.md) for how to use the GUI.
## Flatpak
With Flatpak, in any distro:
```
flatpak-builder --user --install --force-clean flatpak-build \
vu.b4.alsa-scarlett-gui.yml
```
Be sure to use `flatpak-build` as the directory where the flatpak is
built or hence you risk bundling the artifacts when committing!
If you get messages like these:
```
Failed to init: Unable to find sdk org.gnome.Sdk version 45
Failed to init: Unable to find runtime org.gnome.Platform version 45
```
Then install them:
```
flatpak install org.gnome.Sdk
flatpak install org.gnome.Platform
```
If you get:
```
Looking for matches…
error: No remote refs found for ‘org.gnome.Sdk’
```
Then:
```
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
```
alsa-scarlett-gui-1.0~beta9/docs/OLDKERNEL.md 0000664 0000000 0000000 00000005343 15212330051 0020604 0 ustar 00root root 0000000 0000000 # ALSA Scarlett2 Usage With Old Kernels
**This information is mostly for historical purposes. If you’re
running a kernel before 6.7, you should upgrade to a newer kernel.**
Linux kernel 6.7 (check your version with `uname -r`) was the first
kernel version with the Scarlett2 driver enabled by default. It’s
recommended that you run 6.7 or later, or build the backported driver
for your kernel. If you do, then these instructions aren’t relevant;
continue with [INSTALL.md](INSTALL.md) for prerequisites, how to
build, install, and run `alsa-scarlett-gui`.
If you’ve got a Scarlett Gen 2 or 3 or a Clarett+ 8Pre and don’t mind
the level meters not working, then the first kernel support was added
in:
- **Scarlett Gen 2**: Linux 5.4 (bugs fixed in Linux 5.14)
- **Scarlett Gen 3**: Linux 5.14
- **Clarett+ 8Pre**: Linux 6.1
## Linux Kernel with Backported Driver (recommended)
Install the latest version of the backported driver from here:
https://github.com/geoffreybennett/linux-fcp/releases
then you can ignore the instructions below.
## Linux Kernel before 6.7 without Backported Driver
If you’re running a kernel before 6.7 without the backported driver,
you need to enable it at module load time with the `device_setup=1`
option to insmod/modprobe. Create a file
`/etc/modprobe.d/scarlett.conf` containing the appropriate line for
your device:
Scarlett Gen 2:
- **6i6**: `options snd_usb_audio vid=0x1235 pid=0x8203 device_setup=1`
- **18i8**: `options snd_usb_audio vid=0x1235 pid=0x8204 device_setup=1`
- **18i20**: `options snd_usb_audio vid=0x1235 pid=0x8201 device_setup=1`
Scarlett Gen 3:
- **Solo**: `options snd_usb_audio vid=0x1235 pid=0x8211 device_setup=1`
- **2i2**: `options snd_usb_audio vid=0x1235 pid=0x8210 device_setup=1`
- **4i4**: `options snd_usb_audio vid=0x1235 pid=0x8212 device_setup=1`
- **8i6**: `options snd_usb_audio vid=0x1235 pid=0x8213 device_setup=1`
- **18i8**: `options snd_usb_audio vid=0x1235 pid=0x8214 device_setup=1`
- **18i20**: `options snd_usb_audio vid=0x1235 pid=0x8215 device_setup=1`
Clarett+:
- **8Pre**: `options snd_usb_audio vid=0x1235 pid=0x820c device_setup=1`
Or you can use a sledgehammer:
```
options snd_usb_audio device_setup=1,1,1,1
```
to pass that option to the first 4 USB audio devices.
To see if the driver is present and enabled: `dmesg | grep -i -A 5 -B
5 focusrite` should display information like:
```
New USB device found, idVendor=1235, idProduct=8215, bcdDevice= 6.0b
Product: Scarlett 18i20 USB
Focusrite Scarlett Gen 2/3 Mixer Driver enabled pid=0x8215
```
If the driver is disabled you’ll see a message like:
```
Focusrite Scarlett Gen 2/3 Mixer Driver disabled; use options
snd_usb_audio vid=0x1235 pid=0x8215 device_setup=1 to enable and
report any issues to g@b4.vu
```
alsa-scarlett-gui-1.0~beta9/docs/USAGE.md 0000664 0000000 0000000 00000014414 15212330051 0020130 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel Usage
Refer to [INSTALL.md](INSTALL.md) for prerequisites, how to build,
install, and run.
## No Interface Connected
If no interface is detected (usually because there isn’t one
connected!) you’ll see this window:

Plug in an interface or select the menu option File → Interface
Simulation and load a demo file to make more interesting things
happen.
## First Time Usage
If your interface is fresh out of the box (or you haven’t updated it
using the manufacturer’s software), you may need to update the
firmware and/or disable MSD Mode first.
### Firmware Update Required
Some interfaces require a firmware update before all their
functionality is available. If the firmware is not available on your
system, you’ll see this window:

In this case, click on the link, download and install the firmware
package, then restart `alsa-scarlett-gui`.
If a firmware update is required and the firmware is available, you’ll
see this window:

Click “Update”, then “Yes” to update the firmware.

For 4th Gen large interfaces (16i16, 18i16, 18i20), the firmware
update is a multi-step process (leapfrog, ESP, then application
firmware). The interface will reboot mid-upgrade and resume
automatically when the interface reconnects. If something goes wrong,
just restart the process.
### MSD (Mass Storage Device/Quick Start/Easy Start) Mode
If MSD Mode is enabled (as it is from the factory) and a firmware
update is not available or required, then you’ll see this window:

Click the “Enabled” button to disable MSD Mode, then click “Reboot” to
restart the interface, and in a moment the main window will appear.
## Startup Controls
The View → Startup menu option opens a window to configure settings
that only take effect when the interface is powered on.
The options common to most interfaces are:
- **Reset Configuration**: this will reset the configuration to the
factory defaults. This is particularly useful with the 4th Gen and
Vocaster interfaces if you’ve made a mess of the configuration and
want to start again.
- **Update Firmware**: if a firmware update is found in the
`/usr/lib/firmware/scarlett2` directory, then an option to update
the firmware will be available here.
## File Menu
The File menu contains options to load and save the configuration,
load a configuration in simulation mode, and to exit the application.
### Load/Save Configuration
The entire state of the interface can be loaded and saved using the
File → Load Configuration (Ctrl-O) and File → Save Configuration
(Ctrl-S) menu options.
Two formats are supported:
- **Native format** (`.conf`, default): Saves all settings including
custom port names, port visibility, stereo linking, and DSP filter
parameters. This captures the complete state managed by
`alsa-scarlett-gui`.
- **alsactl format** (`.state`): Saves only kernel-level ALSA controls
using `alsactl`. Useful for interface simulation (see below) and
compatibility with standard ALSA tools.
The file chooser shows both formats, with native as the default. On
load, the format is determined by the file extension.
For quick access to commonly-used configurations, see
[Presets](presets.md).
### Interface Simulation Mode
The GUI can load a `.state` file saved from a real interface and
display a GUI as if the corresponding interface was connected. Use
File → Interface Simulation (Ctrl-I) or specify the filename on the
command line.
This is useful if you don’t have an interface connected and want to
try, develop, or debug the GUI. The `demo` directory in the
distribution contains a sample file for every supported model.
## Keyboard Shortcuts
| Shortcut | Action |
|----------|------------------------|
| Ctrl-O | Load Configuration |
| Ctrl-S | Save Configuration |
| Ctrl-I | Interface Simulation |
| Ctrl-Q | Exit |
| Ctrl-R | Routing Window |
| Ctrl-M | Mixer Window |
| Ctrl-L | Levels Window |
| Ctrl-D | DSP Window |
| Ctrl-G | Configuration Window |
| Ctrl-T | Startup Window |
| Ctrl-H | Supported Hardware |
| Ctrl-/ | About |
Shortcuts work from any window — subwindows forward unhandled hotkeys
to the main window.
## Interface Controls
The controls and menu items which are available vary widely, depending
on your specific interface.
There are six broad categories of interfaces with different
capabilities; each category of interface is described in a separate
document:
- [Scarlett 1st Gen 6i6+](iface-1st-gen.md)
Full routing and mixing capabilities, but some significant caveats.
- [Scarlett 3rd Gen Solo and 2i2](iface-small.md)
Minimal number of controls, and they are mostly accessible through
hardware buttons anyway. Not very interesting.
- [Scarlett 2nd Gen 6i6+, 3rd Gen 4i4+, Clarett USB, and
Clarett+](iface-large.md)
Full routing and mixing capabilities.
- [Scarlett Small 4th Gen](iface-4th-gen-small.md)
Full routing and mixing capabilities, remote-controlled input gain,
but no software-controlled output controls.
- [Scarlett Big 4th Gen](iface-4th-gen-big.md)
Full routing and mixing capabilities, remote-controlled input gain,
software-controlled output volume controls, and monitor groups.
- [Vocaster One and Two](iface-vocaster.md)
DSP processing (compressor, EQ, filters), routing, and mixing. See
also the [DSP window documentation](dsp.md).
## Additional Documentation
- [Configuration Window](configuration.md) — Custom port
names, I/O visibility, stereo linking, autogain settings,
and monitor groups
- [Presets](presets.md) — Quick save and load of device
configurations
- [DSP Window](dsp.md) — Compressor, EQ, and filter controls
(Vocaster only)
- [Digital I/O Availability](digital-io-availability.md) —
How sample rate and mode affect port availability
## Known Bugs/Issues
- The scarlett2 kernel driver does not report levels correctly when
using dual and quad band sample rates (88.2kHz, 176.4kHz, 96kHz,
192kHz).
alsa-scarlett-gui-1.0~beta9/docs/configuration.md 0000664 0000000 0000000 00000015511 15212330051 0022132 0 ustar 00root root 0000000 0000000 # Configuration Window
The Configuration window provides settings that customise how
the interface appears and behaves in alsa-scarlett-gui. Open it
with View → Configuration or press Ctrl-G.
The available tabs depend on your interface's capabilities:
| Tab | Interfaces |
|-----|------------|
| Device Name | All supported interfaces |
| Device Settings | Clarett USB/+ |
| I/O Configuration | All with routing/mixing (not Gen 3 Solo/2i2) |
| Autogain | Gen 4 2i2/4i4, Vocaster |
| Monitor Groups | Gen 4 16i16/18i16/18i20 |
Your last-viewed tab is remembered between sessions.
## Device Name

Set a custom name for your interface. This is particularly
useful when you have multiple interfaces of the same model —
without custom names, their windows would be labelled
identically, making them hard to tell apart.
The name appears in the window title bar alongside the model
and serial number.
## Device Settings
The Device Settings tab appears on Clarett interfaces and
provides hardware configuration options.
### S/PDIF Source
Select the S/PDIF input source:
- **None** — Disable S/PDIF input
- **Optical** — Use the optical input for S/PDIF
- **RCA** — Use the coaxial (RCA) input for S/PDIF
Changing this setting updates the available S/PDIF ports
throughout the application.
## I/O Configuration
The I/O Configuration tab lets you customise the names,
visibility, and stereo linking of inputs and outputs.

A help line at the top summarises what the checkboxes and name
fields do.
### Port Type Sub-Tabs
Use the sub-tabs to switch between different I/O categories.
The available sub-tabs depend on your interface:
- **Analogue** — Analogue inputs and outputs
- **S/PDIF** — S/PDIF digital inputs and outputs
- **ADAT** — ADAT digital inputs and outputs
- **PCM** — Computer audio (USB) inputs and outputs
- **DSP** — DSP inputs and outputs (Vocaster, Gen 4 small)
- **Mixer** — Mixer inputs and outputs
Each sub-tab has a checkbox in its label. This checkbox
shows/hides all ports of that type at once — it shows a mixed
state indicator when some ports are shown and others hidden.
Clicking a mixed-state checkbox hides all ports; clicking again
shows all.
### Visibility
Each port row has a checkbox to show or hide it. Within each
sub-tab, Inputs and Outputs columns each have their own "all"
checkbox at the top, which also supports mixed state.
Hidden ports:
- Are not displayed in the routing window
- Are not displayed in the mixer window
- Are not displayed in the level meters
Hiding a port only affects what is displayed — the actual
routing connections and mixer gain settings are preserved.
However, you cannot change the routing or gains for hidden
ports since the controls are not visible.
When a visible port is connected to a hidden port, the routing
window shows a short line with an arrow at the visible port to
indicate the connection exists but the other end is not shown.
### Stereo Linking
Click the link button between adjacent ports to pair them as a
stereo pair. When linked:
- The two individual rows collapse into a single pair row
(e.g., "Analogue 1–2")
- A single name field applies to the pair
- The pair displays as a single stereo connection in the
routing window
- Mixer controls for the pair are ganged
Click the link button again to unlink, which restores the
individual channel rows with their separate name fields.
### Custom Names
Type a name in the text field to give a port a custom name.
This name appears throughout the application — in the routing
window, mixer, and level meters — instead of the default port
name.
Leave the field empty to use the default name, which is shown
as placeholder text. The placeholder shows device-specific
names where available (e.g., "Mic 1", "Line 3") or generic
names otherwise.
### Mixer Sub-Tab
The Mixer sub-tab configures mixer inputs and outputs. The
layout varies by interface:
**Interfaces with routable mixer inputs** (Gen 1, Gen 2/3,
Gen 4 small, Clarett) show inputs with their routed source:

Each mixer input row shows "Mixer X — Source Name", updating
in real time as routing changes. Stereo linking of mixer inputs
follows the source — link the source ports and the mixer inputs
will be linked. When a linked source pair is connected, the
label shows the pair name (e.g., "Mixer 1–2 — Analogue 1–2").
**Interfaces with fixed mixer inputs** (Gen 4 large) show
inputs grouped into columns by source type:

Columns are labelled by source category (PCM Outputs, Analogue
Inputs, S/PDIF Inputs, ADAT Inputs) with a separate Outputs
column for mixer outputs. Each column has its own visibility
checkbox.
## Autogain
The Autogain tab configures the target levels for the automatic
gain feature.

The available controls depend on your interface:
- **Mean** and **Peak** (Gen 4 2i2/4i4): Target average and
peak levels
- **Hot** (Vocaster): Single target level
These settings control what signal levels Autogain aims for
when activated from the main window.
## Monitor Groups
The Monitor Groups tab is available on the larger 4th Gen
interfaces (16i16, 18i16, 18i20) and lets you organise your
outputs into Main and Alt sets.

Switch between groups using the Alt button on your interface or
the toggle in the main window. The main volume knob controls
the currently enabled group.
### Controls
For each analogue output (or stereo pair when linked):
- **Enable** — Include this output in the Main or Alt group
- **Source** — Choose the audio source for each output in the
group
- **Trim** — Per-output level calibration (useful for matching
speaker levels)
When outputs are stereo-linked (via the I/O Configuration
tab), the monitor groups display automatically updates:
- The output shows as a single row with the pair name
- Trim uses a stereo fader that adjusts both channels together
- Enable and Source apply to both channels of the pair
### Example Use Cases
- **A/B Reference Mixing** — Connect two sets of speakers and
assign them to Main and Alt groups to quickly switch between
them for comparison
- **Surround Setup** — Put all your surround speakers in the
Main group (leave Alt empty) for unified volume control from
the main knob
- **DAW/Direct Monitoring Switch** — Assign the same outputs
to both groups with different sources (e.g., Main from DAW
playback, Alt from direct input monitoring) to quickly switch
monitoring modes
- **Stereo/Mono Comparison** — Set Main to stereo mixer
outputs and Alt to a mono mixdown to check mix compatibility
- **Mix Comparison** — Quickly switch between two different
mixer settings
alsa-scarlett-gui-1.0~beta9/docs/digital-io-availability.md 0000664 0000000 0000000 00000007561 15212330051 0023763 0 ustar 00root root 0000000 0000000 # Digital I/O Availability
The availability of S/PDIF and ADAT ports depends on the Digital I/O
Mode setting and the current sample rate.
The GUI reflects this dynamically: ports that are unavailable at the
current sample rate or Digital I/O mode are shown with strikethrough
text in the routing window, and a tooltip explains why they are
unavailable. Mixer inputs connected to unavailable ports are similarly
indicated.
## Sample Rate Categories
- **Single-band**: 44.1, 48 kHz
- **Dual-band**: 88.2, 96 kHz
- **Quad-band**: 176.4, 192 kHz
At quad-band sample rates, the mixer is also unavailable — the mixer
window displays a message indicating this.
## Scarlett 3rd Gen 18i20
This model has S/PDIF In/Out (coaxial/RCA), Optical 1 In/Out, and
Optical 2 In/Out ports.
### S/PDIF RCA Mode (Default)
| Rate | S/PDIF In | S/PDIF Out | Optical 1 In | Optical 1 Out | Optical 2 In | Optical 2 Out |
|------|-----------|------------|--------------|---------------|--------------|---------------|
| Single | S/PDIF 1-2 | S/PDIF 1-2 | ADAT 1-8 | ADAT 1-8 | - | ADAT 1-8 |
| Dual | S/PDIF 1-2 | S/PDIF 1-2 | ADAT 1-4 | ADAT 1-4 | - | - |
| Quad | S/PDIF 1-2 | S/PDIF 1-2 | - | - | - | - |
### S/PDIF Optical Mode
| Rate | S/PDIF In | S/PDIF Out | Optical 1 In | Optical 1 Out | Optical 2 In | Optical 2 Out |
|------|-----------|------------|--------------|---------------|--------------|---------------|
| Single | - | S/PDIF 1-2 | ADAT 1-8 | ADAT 1-8 | S/PDIF 1-2 | S/PDIF 1-2 |
| Dual | - | S/PDIF 1-2 | ADAT 1-4 | ADAT 1-4 | S/PDIF 1-2 | S/PDIF 1-2 |
| Quad | - | S/PDIF 1-2 | - | - | - | - |
### Dual ADAT Mode
| Rate | S/PDIF In | S/PDIF Out | Optical 1 In | Optical 1 Out | Optical 2 In | Optical 2 Out |
|------|-----------|------------|--------------|---------------|--------------|---------------|
| Single | - | S/PDIF 1-2 | ADAT 1-8 | ADAT 1-8 | - | ADAT 1-8 |
| Dual | - | S/PDIF 1-2 | ADAT 1-4 | ADAT 1-4 | ADAT 5-8 | ADAT 5-8 |
| Quad | - | S/PDIF 1-2 | - | - | - | - |
## Scarlett 4th Gen 16i16 and 18i16
These models have S/PDIF In/Out (coaxial/RCA) and Optical In/Out
ports.
### ADAT Mode
| Rate | S/PDIF In | S/PDIF Out | Optical In | Optical Out |
|------|-----------|------------|------------|-------------|
| Single | S/PDIF 1-2 | S/PDIF 1-2 | ADAT 1-8 | ADAT 1-8 |
| Dual | S/PDIF 1-2 | S/PDIF 1-2 | ADAT 1-4 | ADAT 1-4 |
| Quad | S/PDIF 1-2 | S/PDIF 1-2 | - | - |
### Optical S/PDIF Mode
| Rate | S/PDIF In | S/PDIF Out | Optical In | Optical Out |
|------|-----------|------------|------------|-------------|
| Single | - | S/PDIF 1-2 | S/PDIF 1-2 | S/PDIF 1-2 |
| Dual | - | S/PDIF 1-2 | S/PDIF 1-2 | S/PDIF 1-2 |
| Quad | - | S/PDIF 1-2 | - | - |
## Scarlett 4th Gen 18i20
This model has S/PDIF In/Out (coaxial/RCA), Optical 1 In/Out, and
Optical 2 In/Out ports.
### RCA S/PDIF Mode
| Rate | S/PDIF In | S/PDIF Out | Optical 1 In | Optical 1 Out | Optical 2 |
|------|-----------|------------|--------------|---------------|-----------|
| Single | S/PDIF 1-2 | S/PDIF 1-2 | ADAT 1-8 | ADAT 1-8 | - |
| Dual | S/PDIF 1-2 | S/PDIF 1-2 | ADAT 1-4 | ADAT 1-4 | - |
| Quad | - | S/PDIF 1-2 | - | - | - |
### Optical S/PDIF Mode
| Rate | S/PDIF In | S/PDIF Out | Optical 1 In | Optical 1 Out | Optical 2 In | Optical 2 Out |
|------|-----------|------------|--------------|---------------|--------------|---------------|
| Single | - | S/PDIF 1-2 | ADAT 1-8 | ADAT 1-8 | S/PDIF 1-2 | S/PDIF 1-2 |
| Dual | - | S/PDIF 1-2 | ADAT 1-4 | ADAT 1-4 | S/PDIF 1-2 | S/PDIF 1-2 |
| Quad | - | S/PDIF 1-2 | - | - | - | - |
### Dual ADAT Mode
| Rate | S/PDIF In | S/PDIF Out | Optical 1 In | Optical 1 Out | Optical 2 In | Optical 2 Out |
|------|-----------|------------|--------------|---------------|--------------|---------------|
| Single | - | S/PDIF 1-2 | ADAT 1-8 | ADAT 1-8 | ADAT 9-16 | ADAT 9-16 |
| Dual | - | S/PDIF 1-2 | ADAT 1-4 | ADAT 1-4 | ADAT 5-8 | ADAT 5-8 |
| Quad | - | S/PDIF 1-2 | - | - | - | - |
alsa-scarlett-gui-1.0~beta9/docs/dsp.md 0000664 0000000 0000000 00000015072 15212330051 0020053 0 ustar 00root root 0000000 0000000 # DSP Window
The DSP window provides control over the digital signal
processing available on Vocaster interfaces. Each DSP channel
includes a pre-compressor filter, compressor, and parametric
EQ.
Open the DSP window with View → DSP or press Ctrl-D.

The Vocaster One has a single DSP channel ("Host"), while the
Vocaster Two has two channels ("Host" and "Guest"). These are
the default names; they can be customised in the
[Configuration window](configuration.md).

Each channel has three processing sections that are applied in
order:
1. **Pre-Compressor Filter** — Filtering before the compressor
2. **Compressor** — Dynamic range compression
3. **Parametric EQ Filter** — Tone shaping after the
compressor
The channel name button (e.g., "Host") at the top left enables
or disables all DSP processing for that channel. When disabled,
the visualisations are dimmed and the combined response line
becomes grey and dashed.
## Pre-Compressor Filter
The pre-compressor filter provides two cascaded filter stages.
These are typically used as high-pass filters to remove
low-frequency rumble before the compressor, preventing unwanted
bass frequencies from triggering compression. However, all
filter types are available.
### Controls
- **Stage 1/2 Enable** — Checkbox to enable each filter stage
- **Filter Type** — Select the filter type (defaults to
Highpass)
- **Frequency** — Centre/cutoff frequency in Hz (20–20000)
- **Q** — Filter Q/bandwidth (0.1–10.0), shown only for
second-order filter types
### Frequency Response Graph
The graph shows the combined frequency response of both stages.
Each stage is shown as a coloured curve with shading, and
numbered handles indicate the filter positions.
You can adjust filters by:
- **Dragging** a numbered handle to adjust frequency and gain
(or frequency and Q for filter types without gain)
- **Mouse wheel** over a handle to adjust Q (only for filter
types that have gain)
- **Typing** values directly in the entry boxes
### Presets
Click the "Presets" button to select from:
- **None** — Bypass (flat response)
- **Rumble Reduction Low** — Gentle low-cut
- **Rumble Reduction High** — More aggressive low-cut
## Compressor
The compressor reduces the dynamic range of the signal, making
quiet sounds louder and loud sounds quieter relative to each
other.
### Transfer Curve
The compressor section displays a transfer curve showing input
level (horizontal) vs output level (vertical). The curve
visualises how the compressor will affect signals at different
levels:
- The diagonal dashed line shows unity (no compression)
- The solid curve shows the transfer function
- A dot on the curve shows the current input/output level in
real-time, turning red when the signal reaches 0 dB
### Controls
- **Thresh** (Threshold) — Level above which compression
begins (dB)
- **Ratio** — Amount of compression (e.g., 4:1 means 4 dB of
input above threshold produces 1 dB of output)
- **Knee** — Width of the soft knee transition region (dB)
- **Attack** — How quickly compression engages (ms)
- **Release** — How quickly compression releases (ms)
- **Makeup** — Gain added after compression to restore
level (dB)
The transfer curve updates in real-time as you adjust the
Threshold, Ratio, Knee, and Makeup controls.
### Presets
Click the "Presets" button to select from:
- **Off** — No compression
- **Low** — Light compression
- **Med** — Medium compression
- **High** — Heavy compression
## Parametric EQ Filter
The parametric EQ provides three bands of fully adjustable
equalisation for tone shaping.
### Controls
Each band has:
- **Band Enable** — Checkbox to enable the band
- **Filter Type** — Select from various filter types (defaults
to Peaking)
- **Frequency** — Centre/cutoff frequency in Hz (20–20000)
- **Q** — Filter Q/bandwidth (0.1–10.0), shown only for
second-order filter types
- **Gain** — Boost or cut in dB (-18 to +18), shown only for
filter types that use gain
### Frequency Response Graph
The graph shows the combined frequency response of all three
bands:
- Individual band curves are shown with coloured shading
- The white line shows the combined response
- Numbered handles (1, 2, 3) indicate each band's position
### Interactive Graph Editing
The EQ graph supports direct manipulation:
- **Click and drag** a numbered handle to adjust frequency and
gain, or frequency and Q for filter types without gain
- **Mouse wheel** over a handle to adjust Q (only for filter
types that have gain)
- **Hover** over a handle or band controls to highlight both
the handle and the corresponding controls
### Filter Types

Available filter types (applies to both the pre-compressor
filter and parametric EQ):
| Type | Description | Has Gain | Has Q |
|------|-------------|----------|-------|
| Peaking | Bell-shaped boost/cut at the centre frequency | Yes | Yes |
| Low Shelf | Boost/cut below the corner frequency | Yes | Yes |
| High Shelf | Boost/cut above the corner frequency | Yes | Yes |
| Lowpass | Remove frequencies above the cutoff (12 dB/oct) | No | Yes |
| Highpass | Remove frequencies below the cutoff (12 dB/oct) | No | Yes |
| Bandpass | Pass only frequencies near the centre | No | Yes |
| Notch | Remove a narrow band of frequencies | No | Yes |
| Gain | Simple level adjustment (no frequency shaping) | Yes | No |
| LP 6dB/oct | Gentle lowpass (first-order) | No | No |
| HP 6dB/oct | Gentle highpass (first-order) | No | No |
| LS 6dB/oct | Gentle low shelf (first-order) | Yes | No |
| HS 6dB/oct | Gentle high shelf (first-order) | Yes | No |
The dropdown shows icons representing each filter's frequency
response shape.
"Has Gain" determines whether the Gain control is shown and
whether vertical dragging adjusts gain (if yes) or Q (if no).
"Has Q" determines whether the Q control is shown and whether
mouse wheel adjustment is available.
### Presets
Click the "Presets" button to select from:
- **Radio** — Bright, present sound
- **Clean** — Neutral, balanced tone
- **Warm** — Enhanced low-mid warmth
- **Bright** — Enhanced high frequencies
## Saving DSP Settings
DSP settings are stored in the hardware and persist across
application and device restarts. The filter parameters
(type, frequency, Q, gain, and enable state) are also saved
locally, so disabled filters retain their settings for
re-enabling later. Settings can be saved and loaded as part
of the interface configuration using File → Save/Load
Configuration or [Presets](presets.md).
alsa-scarlett-gui-1.0~beta9/docs/iface-1st-gen.md 0000664 0000000 0000000 00000012752 15212330051 0021612 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel
## Scarlett 1st Gen Interfaces
This document describes how to use the ALSA Scarlett Control Panel
with the Scarlett 1st Gen interfaces:
- Scarlett 1st Gen 6i6, 8i6, 18i6, 18i8, 18i20
Note: The 1st Gen Scarlett Solo, 2i2, and 2i4 have all their controls
accessible from the front panel of the device, and there are no
proprietary software controls, so they do not require this control
panel software.
## Important Driver Limitations
The 1st Gen Scarlett devices have some important limitations in the
ALSA driver implementation that you should be aware of:
1. **Initial State Detection**: The driver cannot read the current
state of hardware controls (this appears to be a limitation of the
device firmware). When alsa-scarlett-gui starts, what you see will
not reflect the actual state of your device unless the controls
have previously been set since startup.
2. **State Update Issues**: The driver only updates the hardware state
when it thinks a setting needs to be changed. If the driver
incorrectly believes a control is already in the desired state, it
won’t actually update the control.
3. **Level Meters**: The driver does not support reading the level
meters from the hardware.
4. **Startup Configuration**: The driver is not able to save the
current configuration to the non-volatile memory of the device, so
you’ll need to reapply the desired configuration each time you
restart it (or write your preferred configuration using MixControl
on Windows or Mac).
### Recommended Workaround
To ensure your settings are properly applied:
1. Apply a “zero” configuration that sets all controls to values that
are *not* what you desire.
2. Then apply your desired configuration
This two-step process helps ensure that the driver actually sends all
commands to the hardware. You may want to create a script using
`alsactl` for this purpose.
## Main Window
The main window is divided into three sections:
- Global Controls
- Analogue Input Controls
- Analogue Output Controls
The particular controls available depend on the interface model.
Note that the View menu option lets you open two other windows which
contain additional controls, described in the following sections:
- [Routing](#routing)
- [Mixer](#mixer)
The Levels and Startup windows that are available for later-generation
interfaces are not available for 1st Gen interfaces due to driver limitations.
### Global Controls
Global controls relate to the operation of the interface as a whole.
#### Clock Source
Clock Source selects where the interface receives its digital clock
from. If you aren’t using S/PDIF or ADAT inputs, set this to Internal.
#### Sync Status
Sync Status indicates if the interface is locked to a valid digital
clock. If you aren’t using S/PDIF or ADAT inputs and the status is
Unlocked, change the Clock Source to Internal.
### Analogue Input Controls
#### Inst
The Inst buttons are used to select between Mic/Line and Instrument
level/impedance. When plugging in microphones or line-level equipment
(such as a synthesizer, external preamp, or effects processor) to the
input, set it to “Line”. The “Inst” setting is for instruments with
pickups such as guitars.
#### Pad
Enabling Pad engages a 10dB attenuator in the channel, giving you more
headroom for very hot signals.
#### Gain
The Gain switch selects Low or High gain for the input channel.
### Analogue Output Controls
The analogue output controls let you set the output volume (gain) on
the analogue line outputs.
Click and drag up/down on the volume dial to change the volume, use
your arrow keys, Home/End/PgUp/PgDn keys, or use your mouse scroll
wheel to adjust. You can also double-click on it to quickly toggle the
volume between off and 0dB.
## Routing
The routing window allows complete control of signal routing between
the hardware inputs/outputs, internal mixer, and PCM (USB)
inputs/outputs.

To manage the routing connections:
- Click and drag from a source to a sink or a sink to a source to
connect them. Audio from the source will then be sent to that sink.
- Click on a source or a sink to clear the links connected to that
source/sink.
Note that a sink can only be connected to one source, but one source
can be connected to many sinks. If you want a sink to receive input
from more than one source, use the mixer inputs and outputs:
- Connect the sources that you want to mix together to mixer inputs
- Connect mixer outputs to the sinks that you want to receive the
mixed audio
- Use the Mixer window to set the amount of each mixer input that is
sent to each mixer output
The Presets menu can be used to clear all connections, or to set up
common configurations:
- The “Direct” preset sets up the usual configuration using the
interface as a regular audio interface by connecting:
- all Hardware Inputs to PCM Inputs
- all PCM Outputs to Hardware Outputs
- The “Preamp” preset connects all Hardware Inputs to Hardware
Outputs.
- The “Stereo Out” preset connects PCM 1 and 2 Outputs to pairs of
Hardware Outputs.
## Mixer
If you use the Routing window to connect Sources to Mixer Inputs and
Mixer Outputs to Sinks, then you can use the Mixer window to set the
amount of each Mixer Input that is sent to each Mixer Output using a
matrix of controls.
Click and drag up/down on the gain controls to adjust, or use your
mouse scroll wheel. You can also double-click on the control to
quickly toggle between off and 0dB.
alsa-scarlett-gui-1.0~beta9/docs/iface-4th-gen-big.md 0000664 0000000 0000000 00000034337 15212330051 0022344 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel
## Scarlett Big 4th Gen Interfaces
This document describes how to use the ALSA Scarlett Control Panel
with the big Scarlett 4th Gen interfaces:
- Scarlett 4th Gen 16i16, 18i16, 18i20
### FCP Driver
The big 4th Gen interfaces are supported by the “FCP” (Focusrite
Control Protocol) driver introduced in Linux 6.14. You must be
running at least Linux 6.14 (check with `uname -a`) and install
[fcp-support](https://github.com/geoffreybennett/fcp-support) before
you can use alsa-scarlett-gui with these interfaces.
Firmware update files are available at
[scarlett4-firmware](https://github.com/geoffreybennett/scarlett4-firmware).
When the GUI detects that a newer firmware is available, it will
prompt you to update. The update process takes about two minutes and
is multi-step (leapfrog, ESP, then application firmware), involving
a device reboot mid-upgrade — the GUI handles this automatically
and will resume where it left off when the device reappears.
## Main Window
The main window is divided into three sections:
- Global Controls
- Analogue Input Controls
- Analogue Output Controls
The main window for the 16i16 interface is shown below. The 18i16 and
18i20 interfaces are similar, but with more controls.

### Global Controls
#### Clock Source (interfaces with S/PDIF or ADAT inputs)
Clock Source selects where the interface receives its digital clock
from. If you aren’t using S/PDIF or ADAT inputs, set this to Internal.
#### Sync Status
Sync Status indicates if the interface is locked to a valid digital
clock. If you aren’t using S/PDIF or ADAT inputs and the Sync Status
is Unlocked, change the Clock Source to Internal.
#### Sample Rate
Sample Rate is informative only, and displays the current sample rate
if the interface is currently in use. In ALSA, the sample rate is set
by the application using the interface, which is usually a sound
server such as PulseAudio, JACK, or PipeWire.
#### Speaker Switching / Monitor Group
All three big 4th Gen interfaces support monitor groups, allowing you
to assign outputs to Main and Alt groups with independent sources and
trim. Configure which outputs belong to each group in the
[Configuration window](configuration.md).
The presentation varies by model:
- **18i16**: A “Speaker Switching” control with On/Off and Main/Alt
buttons (On enables grouping, Main/Alt switches between groups)
- **16i16, 18i20**: A “Monitor Group” button that toggles between Main
and Alt (only enabled when at least one output is assigned to the
Alt group)
Outputs in the inactive group are muted.
#### Talkback (18i20 only)
The 18i20 has a Talkback feature that routes a designated input to
selected mixer outputs, typically used for communication from a
control room to performers in the live room.
### Analogue Input Controls
#### Input Select
The “Input Select” control allows you to choose which channel the
hardware 48V, Inst, Air, Auto, and Safe buttons control.
#### Link
The “Link” control links the 48V, Inst, Air, Auto, and Safe controls
together so that they control a stereo pair of channels
simultaneously.
#### Gain
The “Gain” controls adjust the input gain for the selected channel.
Click and drag up/down on the control to adjust the gain, use your
mouse scroll wheel, or click the control to select it and use the
arrow keys, Page Up, Page Down, Home, and End keys.
The gain dial includes a built-in level meter that shows the real-time
signal level with a peak hold indicator. This gives immediate visual
feedback on the input signal without needing to open the Levels
window.
#### Autogain
When the “Autogain” control is enabled, the interface will listen to
the input signal for ten seconds and automatically adjust the gain to
get the best signal level. When autogain is not running, the
most-recent autogain exit status is shown below the “Autogain”
control.
#### Safe
”Safe” mode is a feature that automatically reduces the gain if the
signal is too loud. This can be useful to prevent clipping.
#### Instrument
The Inst button(s) are used to select between Mic/Line and Instrument
level/impedance. When plugging in microphones or line-level equipment
(such as a synthesiser, external preamp, or effects processor) to the
input, set it to “Line”. The “Inst” setting is for instruments with
pickups such as guitars.
#### Air
The Scarlett 3rd Gen introduced Air mode which transformed your
recordings and inspired you while making music by boosting the
signal’s high-end. The 4th Gen interfaces now call that “Air Presence”
and add a new mode “Air Presence+Drive” which boosts mid-range
harmonics in your sound.
#### Phantom Power (48V)
Turning the “48V” switch on sends “Phantom Power” to the XLR
microphone input. This is required for some microphones (such as
condenser microphones), and damaging to some microphones (particularly
vintage ribbon microphones).
### Analogue Output Controls
Each analogue output has its own volume fader with a level meter
showing the output signal level and peak hold. These are
software-controlled volume knobs.
When an output is assigned to a monitor group (Main or Alt), its
individual volume control is disabled — the output level is managed by
the group’s source and trim settings configured in the [Configuration
window](configuration.md).
A coloured “Main” or “Alt” label appears below each output number when
monitor groups are configured:
- **Green “Main”** — output is in the Main group, which is currently
active
- **Red “Alt”** — output is in the Alt group, which is currently
active
- **Grey** — output is in a group that is currently inactive (its
audio is muted)
#### Master Volume
The Master volume knob shows the position of the hardware volume knob
on the front panel, which controls Analogue Outputs 1 and 2.
#### Mute and Dim
The speaker icon button mutes the hardware-controlled outputs
(Analogue Outputs 1 and 2). The Dim button reduces their volume. These
correspond to the front-panel buttons on the interface.
## Routing
The routing window provides (almost) complete control of signal
routing between the hardware inputs/outputs, internal mixer, and PCM
(USB) inputs/outputs.
The mixer inputs on the big 4th Gen interfaces are fixed and not shown
in the routing window, as there are too many to sensibly display.
Open the Routing window with View → Routing or press Ctrl-R.

To adjust the routing:
- Click and drag from a source to a sink or a sink to a source to
connect them. Audio from the source will then be sent to that sink.
- Click on a source or a sink to clear the links connected to that
source/sink.
Note that a sink can only be connected to one source, but one source
can be connected to many sinks. If you want a sink to receive input
from more than one source, connect the sinks to mixer outputs:
- Connect mixer outputs to the sinks that you want to receive the
mixed audio
- Use the Mixer window to set the amount of each mixer input that is
sent to each mixer output
The Presets menu can be used to clear all connections, or to set up
common configurations:
- The “Direct” preset connects all Hardware Inputs to PCM Inputs and
all PCM Outputs to Hardware Outputs.
- The “Preamp” preset connects all Hardware Inputs to Hardware
Outputs.
- The “Stereo Out” preset connects PCM 1 and 2 Outputs to pairs of
Hardware Outputs.
### Signal Level Glow
Active routing connections are overlaid with a glow effect showing the
real-time signal level flowing through them. The glow colour
transitions from green (normal) through yellow (high) to red
(clipping). Sources with an active signal but no connected sink show a
circular glow around the source port.
### Arrow Indicators
When a port has been hidden via the [Configuration
window](configuration.md), any routing connections involving that port
are shown with an arrow indicator at the visible end. This lets you
see that a hidden port has an active connection without needing to
show all ports.
### Stereo Linking
Adjacent ports can be stereo-linked via the [Configuration
window](configuration.md). Linked ports appear as a single stereo
socket with L and R sub-ports. Routing lines for stereo pairs are
drawn in parallel, each with independent signal glow.
When dragging a stereo-linked source to a sink (or vice versa), the
connection is made stereo-aware: the left source connects to the left
sink and the right source to the right sink.
### Monitor Group Indicators
When monitor groups are configured, the routing window shows the
*effective* audio routing — not just the routing control setting, but
the actual audio path considering which group is active.
Hardware output labels display coloured indicators:
- **Green “Main”** when the output is in the active Main group
- **Red “Alt”** when the output is in the active Alt group
- **Strikethrough** when the output is in the inactive group (audio is
muted to that output)
The routing lines update in real time as you switch between Main and
Alt groups, reflecting the actual audio flow.
### I/O Availability
Some ports may become unavailable depending on the current sample rate
or Digital I/O mode:
- **PCM channels** reduce at higher sample rates
- **S/PDIF and ADAT ports** depend on the Digital I/O mode and sample
rate
- **Mixer ports** are unavailable at 176.4/192 kHz (quad-band)
Unavailable ports are shown with strikethrough text and a tooltip
explaining why.
## Mixer
Open the Mixer window with View → Mixer or press Ctrl-M.
The mixer is a matrix where any combination of inputs can be mixed to
any output at adjustable levels. Mixer levels can be adjusted with
your keyboard or mouse in the same way as the [Gain Controls](#gain).
### Signal Level Glow
Mixer input and output labels display a real-time glow effect behind
them, showing the signal level with green, yellow, and red colour
transitions. For stereo-linked channels, the glow is split into
separate L and R bars.
### Level Metering on Gain Dials
Each mixer gain knob includes a post-gain level meter inside the dial,
showing the signal level at that point in the mix with a peak hold
indicator.
### Custom Port Names
Mixer labels reflect any custom names set in the [Configuration
window](configuration.md). Long names are ellipsised with the full
name shown in a tooltip on hover.
### Stereo-Aware Controls
When adjacent mixer inputs or outputs are stereo-linked, their gain
controls are ganged together with an averaged value. Adjusting one
updates both channels. For a stereo-linked input going to a
stereo-linked output, the gain is computed as a diagonal average
across the four crosspoints.
### Port Visibility
Ports hidden in the [Configuration window](configuration.md) are
removed from the mixer grid, keeping the display focused on the ports
you’re actively using.
### Mixer Unavailability
At quad-band sample rates (176.4/192 kHz), the hardware mixer is
disabled. The mixer window displays a message indicating the mixer is
unavailable at the current sample rate.
## Configuration
The Configuration window provides settings for customising port names,
visibility, stereo linking, autogain targets, and monitor groups. Open
it with View → Configuration or press Ctrl-G. See [Configuration
Window](configuration.md) for full details.
Available tabs for the big 4th Gen interfaces:
| Tab | Description |
|-----|-------------|
| Device Name | Set a custom name for the interface |
| I/O Configuration | Port names, visibility, stereo linking |
| Autogain | Target levels for autogain calibration |
| Monitor Groups | Main/Alt group output assignment |
### Custom Port Names
Give meaningful names to your ports (e.g. “Vocal Mic”, “Guitar”,
”Monitors”) in the I/O Configuration tab. These names appear
throughout the application — in the routing window, mixer labels,
level meters, and the main window’s monitor group labels.
### Port Visibility
Show or hide individual ports to reduce clutter in the routing and
mixer windows. Hidden ports with active connections show arrow
indicators in the routing window.
### Stereo Linking
Link adjacent ports together for stereo operation. Linked ports share
names, appear as stereo sockets in the routing window, and have ganged
controls in the mixer.
### Autogain Targets
Set the target levels for the autogain feature: Mean Target and Peak
Target. These determine what signal level the autogain algorithm aims
for when calibrating input gain.
### Monitor Groups
The Monitor Groups tab lets you assign each analogue output to the
Main group, the Alt group, or neither. For each output in a group, you
can set:
- **Source** — which audio source feeds the output when the group is
active
- **Trim** — a volume offset relative to the group’s master volume
When outputs are stereo-linked, they appear as a single pair with a
stereo-aware source selector and averaged trim.
## Presets
The Presets button in the main window provides quick save/load of
named configurations. See [Presets and Configuration
Files](presets.md) for full details.
You can also save and load configurations to files via the File menu
(Ctrl-S to save, Ctrl-O to load).
## Levels
The meters show the levels seen by the interface at every routing
source as well as the analogue outputs. Open this window by selecting
View → Levels or pressing Ctrl-L.

Look at this in conjunction with the routing window to understand
which meter corresponds to which source or sink.
## Keyboard Shortcuts
| Shortcut | Action |
|----------|--------|
| Ctrl-O | Load Configuration |
| Ctrl-S | Save Configuration |
| Ctrl-I | Interface Simulation |
| Ctrl-Q | Exit |
| Ctrl-R | Routing Window |
| Ctrl-M | Mixer Window |
| Ctrl-L | Levels Window |
| Ctrl-G | Configuration Window |
| Ctrl-T | Startup Window |
| Ctrl-H | Supported Hardware |
| Ctrl-/ | About |
Keyboard shortcuts work from any window — subwindows forward unhandled
shortcuts to the main window.
---
Thanks for reading this far! This software represents over a thousand
hours of independent work — reverse-engineering, kernel development,
and building a complete replacement for Focusrite's proprietary apps.
If you've found it valuable, please consider a
[donation](../README.md#donations).
alsa-scarlett-gui-1.0~beta9/docs/iface-4th-gen-small.md 0000664 0000000 0000000 00000042367 15212330051 0022715 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel
## Scarlett Small 4th Gen Interfaces
This document describes how to use the ALSA Scarlett Control Panel
with the small Scarlett 4th Gen interfaces:
- Scarlett 4th Gen Solo, 2i2, and 4i4
### Comparison with earlier Scarlett and Clarett Interfaces
If you are familiar with the Scarlett 2nd and 3rd Gen or Clarett
interfaces, the major differences to the 4th Gen interfaces from the
point of view of this software are:
- The 4th Gen Solo and 2i2 interfaces have the full routing and mixing
capabilities of the larger 2nd and 3rd Gen and Clarett interfaces
(although the line outputs and the headphone outputs are still
linked).
- The 4th Gen 2i2 and 4i4 interfaces have software-controllable
(“remote”) input gain controls.
- The 4th Gen interfaces don’t have the output volume and mute
controls that the 2nd and 3rd Gen and Clarett interfaces have.
- The Air mode with Presence+Drive is implemented with a DSP which is
separately routable.
## Main Window
The main window is divided into three sections:
- Global Controls
- Analogue Input Controls
- Analogue Output Controls
The main window for the Solo and 2i2 interfaces is shown below; the
4i4 interface is similar to the 2i2, but doesn’t have the Direct
Monitor control, and can show the position of the front panel volume
knobs.

### Global Controls
#### Sync Status
Sync Status indicates if the interface is locked to a valid digital
clock. This should only ever briefly show “Unlocked” when the sample
rate is changed as these interfaces can only use their internal clock.
#### Power
The 4i4 has a “Power” control that displays the power status. It can
be “Fail”, “Bus”, or “External”. “Fail” means that the interface is
not receiving sufficient power; please see the Scarlett 4i4 4th Gen
User Guide for more information. “Bus” vs. “External” indicates
whether the interface is receiving power from the second USB-C port
(“External”) or not (“Bus”).
#### Sample Rate
Sample Rate is informative only, and displays the current sample rate
if the interface is currently in use. In ALSA, the sample rate is set
by the application using the interface, which is usually a sound
server such as PulseAudio, JACK, or PipeWire.
### Analogue Input Controls
The analogue input controls available depend on the interface model:
- **Instrument, Air, and Phantom Power**: All models
- **Mix**: Solo only (described later in the [Solo Mix
Control](#solo-mix-control) section)
- **Input Select, Link, Gain, Autogain, and Safe**: 2i2 and 4i4
#### Instrument
The Inst button(s) are used to select between Mic/Line and Instrument
level/impedance. When plugging in microphones or line-level equipment
(such as a synthesiser, external preamp, or effects processor) to the
input, set it to “Line”. The “Inst” setting is for instruments with
pickups such as guitars.
#### Air
The Scarlett 3rd Gen introduced Air mode which transformed your
recordings and inspired you while making music by boosting the
signal’s high-end. The 4th Gen interfaces now call that “Air Presence”
and add a new mode “Air Presence+Drive” which boosts mid-range
harmonics in your sound.
#### Phantom Power (48V)
Turning the “48V” switch on sends “Phantom Power” to the XLR
microphone input. This is required for some microphones (such as
condenser microphones), and damaging to some microphones (particularly
vintage ribbon microphones).
The 2i2 has a single 48V switch that controls both channels, and the
4i4 has an independent 48V switch for each channel.
#### Input Select
The 2i2 and 4i4 interfaces have hardware buttons for 48V, Inst, Air,
Auto, and Safe. The “Input Select” control allows you to choose which
channel those buttons control.
#### Link
The “Link” control links the 48V, Inst, Air, Auto, and Safe controls
together so that they control both channels simultaneously.
#### Gain
The “Gain” controls adjust the input gain for the selected channel.
Click and drag up/down on the control to adjust the gain, use your
mouse scroll wheel, or click the control to select it and use the
arrow keys, Page Up, Page Down, Home, and End keys.
The gain dial includes a real-time level meter inside the knob,
showing the post-gain signal level with a peak hold indicator. This
gives immediate visual feedback on the input signal without needing to
open the Levels window.
#### Autogain
When the “Autogain” control is enabled, the interface will listen to
the input signal for ten seconds and automatically adjust the gain to
get the best signal level. When autogain is not running, the
most-recent autogain exit status is shown below the “Autogain”
control.
#### Safe
“Safe” mode is a feature that automatically reduces the gain if the
signal is too loud. This can be useful to prevent clipping.
### Analogue Output Controls
The analogue output controls available depend on the interface model:
- **Direct Monitor**: Solo and 2i2
- **Volume Knobs**: 4i4
#### Direct Monitor
Enabling Direct Monitor sends the analogue input signals to the
analogue outputs (speakers/headphones) for zero-latency monitoring.
On the 2i2, you have the choice of Mono or Stereo monitoring when you
click the button:
- **Mono** sends both inputs to the left and right outputs
- **Stereo** sends input 1 to the left, and input 2 to the right
output.
As the 4th Gen Solo and 2i2 interfaces have the full routing and
mixing capabilities of the larger 2nd and 3rd Gen interfaces, the
Direct Monitor levels can be [adjusted in the
mixer](#solo-direct-monitor).
The 4i4 has no Direct Monitor button, but that functionality can be
achieved with [appropriate configuration in the routing and mixing
windows](#4i4-sample-direct-monitor-configuration).
#### Volume Knobs
The 4i4 interface has volume knobs on the front panel, the position of
which is shown in the main window.
## Routing
The routing capabilities of the 4th Gen interfaces are the same in
concept as the 2nd and 3rd Gen interfaces, but there is a DSP which is
separately routable, and the default routing uses the mixer
extensively.
From the main window, open the Routing window with View → Routing or
press Ctrl-R.

To understand the signal flow, note the following:
1. The Analogue 1 & 2 Inputs (i.e. the Mic/Line/Inst inputs) are
routed to the DSP Inputs.
2. The DSP Outputs are routed to the PCM 1 & 2 Inputs (that’s what
ALSA sees as the first two inputs from the interface for
recording).
3. The PCM Outputs (that’s what ALSA sees as the interface outputs for
playback) and the DSP Outputs are all connected to the Mixer
Inputs.
4. The Mixer A & B Outputs are connected to the Hardware Analogue
outputs (i.e. your speakers/headphones) so you can hear any mix of
the PCM and DSP Outputs (this is how the Direct Monitor function
works).
5. The Mixer C & D Outputs are connected to the PCM 3 & 4 Inputs (this
is referred to as Loopback, for recording audio from your computer,
but can be used for another purpose if you want).
Important Notes:
- The routing window’s “Presets” menu (Clear, Direct, Preamp, Stereo
Out) is designed for the 2nd and 3rd Gen interfaces and is generally
not useful with the 4th Gen. If you try these, you’ll probably want
to reset back to the factory defaults afterwards. For saving and
restoring your own configurations, use the [Presets
button](#presets) in the main window instead.
- Besides Air Mode, the DSP is also used for the gain halo level
meters and autogain, so if you route something else to the DSP
Inputs, those features will work “rather differently”.
- The Focusrite Control 2 software can’t control most of this routing,
so if you make changes here and then want to use Focusrite Control
2, you’ll probably need to reset the routing back to the factory
default settings.
To adjust the routing:
- Click and drag from a source to a sink or a sink to a source to
connect them. Audio from the source will then be sent to that sink.
- Click on a source or a sink to clear the links connected to that
source/sink.
Note that a sink can only be connected to one source, but one source
can be connected to many sinks.
### Signal Level Glow
Active routing connections are overlaid with a glow effect showing the
real-time signal level flowing through them. The glow colour
transitions from green (normal) through yellow (high) to red
(clipping). Sources with an active signal but no connected sink show a
circular glow around the source port.
### Arrow Indicators
When a port has been hidden via the [Configuration
window](configuration.md), any routing connections involving that port
are shown with an arrow indicator at the visible end. This lets you
see that a hidden port has an active connection without needing to
show all ports.
### Stereo Linking
Adjacent ports can be stereo-linked via the [Configuration
window](configuration.md) (available on the 2i2 and 4i4). Linked ports
appear as a single stereo socket with L and R sub-ports. Routing lines
for stereo pairs are drawn in parallel, each with independent signal
glow.
When dragging a stereo-linked source to a sink (or vice versa), the
connection is made stereo-aware: the left source connects to the left
sink and the right source to the right sink.
## Mixer
Open the Mixer window with View → Mixer or press Ctrl-M.
The mixer is a matrix where any combination of inputs can be mixed to
any output at adjustable levels. Mixer levels can be adjusted with
your keyboard or mouse in the same way as the [Gain Controls](#gain).
### Signal Level Glow
Mixer input and output labels display a real-time glow effect behind
them, showing the signal level with green, yellow, and red colour
transitions. For stereo-linked channels, the glow is split into
separate L and R bars.
### Level Metering on Gain Dials
Each mixer gain knob includes a post-gain level meter inside the dial,
showing the signal level at that point in the mix with a peak hold
indicator.
### Custom Port Names
Mixer labels reflect any custom names set in the [Configuration
window](configuration.md). Long names are ellipsised with the full
name shown in a tooltip on hover.
### Stereo-Aware Controls
When adjacent mixer inputs or outputs are stereo-linked, their gain
controls are ganged together with an averaged value. Adjusting one
updates both channels. For a stereo-linked input going to a
stereo-linked output, the gain is computed as a diagonal average
across the four crosspoints.
### Port Visibility
Ports hidden in the [Configuration window](configuration.md) are
removed from the mixer grid, keeping the display focused on the ports
you’re actively using.
### Solo Direct Monitor
When you enable or disable Direct Monitor on the Solo interface, the
interface will update the Mix A and B Outputs so that the DSP 1 & 2
Outputs are mixed in (or not) with the PCM 1 & 2 Outputs. Note how the
volume of the PCM outputs is also reduced when Direct Monitor is
enabled so that you can hear the DSP outputs (i.e. your Analogue
inputs) more clearly.

If you customise the Mix A/B mixer levels while Direct Monitor is
enabled, the new settings will be saved and used when Direct Monitor
is enabled again.
### 2i2 Direct Monitor
Similarly to the Solo interface, the 2i2 interface will update the Mix
A and B Outputs when you enable or disable Direct Monitor, but the 2i2
has Mono and Stereo options:

Note how in Mono mode:
- the DSP 1 & 2 Outputs are mixed to both the left and right outputs
and in Stereo mode:
- DSP 1 (i.e. Analogue Input 1) is sent to the left output (Mix A),
and
- DSP 2 (i.e. Analogue Input 2) is sent to the right output (Mix B).
### Solo Mix Control
The Mix control is only available on the Solo interface. It switches
the source for the PCM 1 & 2 Inputs between the DSP Outputs and the
Mixer E & F Outputs.

By default, enabling this control will mix the Analogue 1 & 2 Inputs
together before they are sent to the PCM 1 & 2 Inputs:

This can be useful if you want to treat the PCM 1 & 2 Inputs as a
stereo pair, and not have the line/instrument input panned hard left
and the microphone input panned hard right.
The mixer levels for the Mix E & F Outputs can be adjusted to suit.
### 4i4 Routing and Mixing
Although the 4th Gen 4i4 has no explicit Direct Monitor control, it is
far more flexible because it has 6 PCM inputs, 6 PCM outputs, a 10×6
mixer, and 6 Analogue Hardware outputs.
Analogue Outputs 1–4 correspond to the Line Outputs 1–4 on the back of
the interface, and Analogue Outputs 5–6 correspond to the Headphone
Output on the front of the interface.
The default routing and mix for the 4i4 is shown below:

Note that with the default routing/mix settings:
- The Analogue Inputs 1–4 are routed to the PCM Inputs 1–4 (the first
two going via the DSP).
- PCM Inputs 5–6 are used for Loopback (recording audio from your
computer).
- All the Hardware Inputs and PCM Outputs are connected to the Mixer
Inputs.
- PCM Outputs 1–4 are connected to the Analogue Outputs 1–4 (via the
mixer).
- The Line 1–2 Outputs (Analogue Outputs 1–2) and the Headphones
(Analogue Outputs 5–6) share the Mixer Outputs A & B.
#### 4i4 Sample Direct Monitor Configuration
A common configuration for the 4i4 is to send the PCM 1 & 2 Outputs
mixed with the Analogue Inputs 1 & 2 to the Headphones, while leaving
the Analogue Outputs 1–2 as they are. This is an advanced version of
the direct monitoring feature that is available on the Solo and 2i2.
It can be implemented by:
1) Route Mixer Outputs E & F to Analogue Outputs 5 & 6. 2) Turn up Mix
E & F DSP 1 & 2 levels in the mixer (see the mixer example above for
[2i2 Direct Monitor](#2i2-direct-monitor)).
As there are only 6 Mixer Outputs, the PCM 5 & 6 Inputs (Loopback) are
now shared with the headphones. If you want to retain the Loopback
functionality without having the Analogue Inputs mixed in, you could:
- Route the PCM 1 & 2 Outputs directly to the PCM 5 & 6 Inputs, rather
than going via the mixer, or
- Free up Mixer Outputs A & B for Loopback by routing PCM Outputs 1 &
2 directly to Analogue Outputs 1 & 2.
Besides Direct Monitor, there are many other possibilities for
routing/mixing with the 4i4. For example, by using the additional PCM
Outputs and Inputs you could set up a mix-minus configuration for a
podcast/video call.
## Configuration
The Configuration window provides settings for customising port names,
visibility, stereo linking, and autogain targets. Open it with View →
Configuration or press Ctrl-G. See [Configuration
Window](configuration.md) for full details.
Available tabs for the 4th Gen small interfaces:
| Tab | Interfaces |
|-----|------------|
| Device Name | Solo, 2i2, 4i4 |
| I/O Configuration | Solo, 2i2, 4i4 |
| Autogain | 2i2, 4i4 |
### Custom Port Names
Give meaningful names to your ports (e.g. “Vocal Mic”, “Guitar”,
“Monitors”) in the I/O Configuration tab. These names appear
throughout the application — in the routing window, mixer labels, and
level meters.
### Port Visibility
Show or hide individual ports to reduce clutter in the routing and
mixer windows. Hidden ports with active connections show arrow
indicators in the routing window.
### Stereo Linking (2i2 and 4i4)
Link adjacent ports together for stereo operation. Linked ports share
names, appear as stereo sockets in the routing window, and have ganged
controls in the mixer.
### Autogain Targets (2i2 and 4i4)
Set the target levels for the autogain feature: Mean Target and Peak
Target. These determine what signal level the autogain algorithm aims
for when calibrating input gain.
## Presets
The Presets button in the main window provides quick save/load of
named configurations. See [Presets and Configuration
Files](presets.md) for full details.
You can also save and load configurations to files via the File menu
(Ctrl-S to save, Ctrl-O to load).
## Levels
The meters show the levels seen by the interface at every routing
sink: Hardware Outputs, Mixer Inputs, DSP Inputs, and PCM Inputs. Open
this window with View → Levels or press Ctrl-L.

Look at this in conjunction with the routing window to understand
which meter corresponds to which source or sink.
## Keyboard Shortcuts
| Shortcut | Action |
|----------|--------|
| Ctrl-O | Load Configuration |
| Ctrl-S | Save Configuration |
| Ctrl-I | Interface Simulation |
| Ctrl-Q | Exit |
| Ctrl-R | Routing Window |
| Ctrl-M | Mixer Window |
| Ctrl-L | Levels Window |
| Ctrl-G | Configuration Window |
| Ctrl-T | Startup Window |
| Ctrl-H | Supported Hardware |
| Ctrl-/ | About |
Keyboard shortcuts work from any window — subwindows forward unhandled
shortcuts to the main window.
---
Thanks for reading this far! This software represents over a thousand
hours of independent work — reverse-engineering, kernel development,
and building a complete replacement for Focusrite's proprietary apps.
If you've found it valuable, please consider a
[donation](../README.md#donations).
alsa-scarlett-gui-1.0~beta9/docs/iface-large.md 0000664 0000000 0000000 00000040373 15212330051 0021426 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel
## Large Scarlett 2nd/3rd Gen and Clarett Interfaces
This document describes how to use the ALSA Scarlett Control Panel
with the larger Scarlett 2nd Gen, 3rd Gen, and Clarett USB interfaces:
- Scarlett 2nd Gen 6i6, 18i8, 18i20
- Scarlett 3rd Gen 4i4, 8i6, 18i8, 18i20
- Clarett 2Pre, 4Pre, 8Pre USB
- Clarett+ 2Pre, 4Pre, 8Pre
## Main Window
The main window is divided into three sections:
- Global Controls
- Analogue Input Controls
- Analogue Output Controls
The particular controls available depend on the interface model; the
3rd Gen 18i20 has all the controls so is shown here:

Note that the View menu lets you open additional windows which contain
further controls, described in the following sections:
- [Routing](#routing)
- [Mixer](#mixer)
- [Levels](#levels)
- [Startup](#startup)
### Global Controls
Global controls relate to the operation of the interface as a whole.

#### Clock Source (interfaces with S/PDIF or ADAT inputs)
Clock Source selects where the interface receives its digital clock
from. If you aren’t using S/PDIF or ADAT inputs, set this to Internal.
#### Sync Status
Sync Status indicates if the interface is locked to a valid digital
clock. If you aren’t using S/PDIF or ADAT inputs and the Sync Status
is Unlocked, change the Clock Source to Internal.
#### Sample Rate
Sample Rate is informative only, and displays the current sample rate
if the interface is currently in use. In ALSA, the sample rate is set
by the application using the interface, which is usually a sound
server such as PulseAudio, JACK, or PipeWire.
#### Speaker Switching (Scarlett 3rd Gen 18i8 and 18i20)
Speaker Switching lets you swap between two pairs of monitoring
speakers very easily.
When enabled (Main or Alt):
- Line Out 1–4 Volume Control Switches are locked to HW
- Line Out 3/4 routing is saved
- Line Out 3/4 routing is set to the Line Out 1/2 routing
When set to Main, Line outputs 3 and 4 are muted.
When set to Alt, Line outputs 1 and 2 are muted.
When disabled (Off):
- Global mute is activated ⭐
- Line Out 1–4 Volume Control Switches are unlocked
- Line Out 3/4 routing is restored to the saved values
⭐ You likely won’t expect this to happen. Make sure to unmute the
outputs after disabling speaker switching if you want to hear
something again.
#### Talkback (Scarlett 3rd Gen 18i20 only)
Talkback lets you add another channel (usually the talkback mic) to a
mix with a button push, usually to talk to musicians, and without
using an additional mic channel.
The Talkback feature has a few parts:
- Talkback Microphone connected to Analogue Input 9
- Talkback Disable/Enable and Off/On software switches
- Talkback Off/On physical switch
- Talkback Mix (one switch per mix)
- Mix Input 25
To set up the talkback feature, set Mix Input 25 to the talkback
source (usually Analogue Input 9), enable the Talkback Mix switches
for the mixes you want the talkback input to be heard on, and change
the Talkback control from Disabled to Off. Leave the Mix Input 25 gain
controls at zero (−127dB), otherwise the talkback inputs will be heard
even when talkback is disabled/off.
Pressing the Talkback switch on the device will then lower the volume
of the other inputs on the mixes for which talkback is enabled and
unmute Mix Input 25 on those mixes.
Talkback can also be activated by changing the Talkback control from
Off to On.
The talkback microphone can also be used just the same as any of the
other analogue inputs and routed to a physical output, PCM input, or
mixer input.
### Analogue Input Controls
This section is applicable to all interfaces except the Scarlett 2nd
Gen 18i20 which has hardware-only buttons for these features.

#### Inst
The Inst buttons are used to select between Mic/Line and Instrument
level/impedance. When plugging in microphones or line-level equipment
(such as a synthesiser, external preamp, or effects processor) to the
input, set it to “Line”. The “Inst” setting is for instruments with
pickups such as guitars.
#### Air (Scarlett 3rd Gen and Clarett only)
Enabling Air will transform your recordings and inspire you while
making music.
#### Pad
Enabling Pad engages a 10dB attenuator in the channel, giving you more
headroom for very hot signals.
#### Phantom Power (48V)
Scarlett 2nd Gen and Clarett devices have a hardware button for
controlling phantom power.
Scarlett 3rd Gen devices have hardware and software control of phantom
power. Turning the “48V” switch on sends “Phantom Power” to the XLR
microphone input. This is required for some microphones (such as
condenser microphones), and damaging to some microphones (particularly
vintage ribbon microphones).
On Scarlett 3rd Gen devices, phantom power is turned off by default
when the interface is turned on. This can be changed in the startup
configuration (menu option View → Startup).
### Analogue Output Controls
The analogue output controls let you set the output volume (gain) on
the analogue line out and headphone outputs. All interfaces support
setting the gain and muting individual channels.

Click and drag up/down on the volume dial to change the volume, use
your arrow keys, Home/End/PgUp/PgDn keys, or use your mouse scroll
wheel to adjust. You can also double-click on it to quickly toggle the
volume between off and 0dB.
The biggest interfaces: Scarlett 2nd Gen 18i20, 3rd Gen 18i8, and 3rd
Gen 18i20 have a switchable hardware/software volume control. The
position of the big volume knob on the front of the interface is
indicated by the “HW” dial in the GUI. The analogue outputs can have
their volume set either by the knob (“HW” setting of the HW/SW button)
or by the dials on each output (“SW” setting of the HW/SW button).
When set to HW, the mute/volume status for those channels is
controlled by the hardware volume knob and the global dim/mute
controls and the software volume dial and mute button for those
channels are disabled.
There are “mute” and “dim” (reduce volume) buttons below the “HW” dial
which affect only the outputs with “HW” control enabled. The 3rd Gen
18i8 doesn’t have physical buttons or indicator lights for these
controls, but the 18i20 devices do.
On the other (smaller) interfaces, the big volume knob on the front of
the interface controls the volume of the Line 1 and 2 outputs. This is
in addition to the software volume control, therefore both must be
turned up in order to hear anything. The other (line 3+) analogue
outputs are only controlled by the software controls.
The volume controls for the headphone outputs on each interface
operate in addition to any other hardware or software volume controls
for those channels. When using headphones, the volumes for those
channels would usually be set to 0dB and the actual volume controlled
with the physical headphone volume control(s).
## Routing
The routing window allows complete control of signal routing between
the hardware inputs/outputs, internal mixer, and PCM (USB)
inputs/outputs. Open it with View → Routing or press Ctrl-R.

To manage the routing connections:
- Click and drag from a source to a sink or a sink to a source to
connect them. Audio from the source will then be sent to that sink.
- Click on a source or a sink to clear the links connected to that
source/sink.
Note that a sink can only be connected to one source, but one source
can be connected to many sinks. If you want a sink to receive input
from more than one source, use the mixer inputs and outputs:
- Connect the sources that you want to mix together to mixer inputs
- Connect mixer outputs to the sinks that you want to receive the
mixed audio
- Use the Mixer window to set the amount of each mixer input that is
sent to each mixer output
The Presets menu can be used to clear all connections, or to set up
common configurations:
- The “Direct” preset sets up the usual configuration using the
interface as a regular audio interface by connecting:
- all Hardware Inputs to PCM Inputs
- all PCM Outputs to Hardware Outputs
- The “Preamp” preset connects all Hardware Inputs to Hardware
Outputs.
- The “Stereo Out” preset connects PCM 1 and 2 Outputs to pairs of
Hardware Outputs.
The Direct routing configuration is the simplest most-generally-useful
configuration:

### Signal Level Glow
Active routing connections are overlaid with a glow effect showing the
real-time signal level flowing through them. The glow colour
transitions from green (normal) through yellow (high) to red
(clipping). Sources with an active signal but no connected sink show a
circular glow around the source port.
### Arrow Indicators
When a port has been hidden via the [Configuration
window](configuration.md), any routing connections involving that port
are shown with an arrow indicator at the visible end. This lets you
see that a hidden port has an active connection without needing to
show all ports.
### Stereo Linking
Adjacent ports can be stereo-linked via the [Configuration
window](configuration.md). Linked ports appear as a single stereo
socket with L and R sub-ports. Routing lines for stereo pairs are
drawn in parallel, each with independent signal glow.
When dragging a stereo-linked source to a sink (or vice versa), the
connection is made stereo-aware: the left source connects to the left
sink and the right source to the right sink.
### I/O Availability
Some ports may become unavailable depending on the current sample rate
or Digital I/O mode:
- **PCM channels** reduce at higher sample rates
- **S/PDIF and ADAT ports** depend on the Digital I/O mode and sample
rate (see [Digital I/O Availability](digital-io-availability.md))
- **Mixer ports** are unavailable at 176.4/192 kHz (quad-band)
Unavailable ports are shown with strikethrough text and a tooltip
explaining why.
### Loopback
Scarlett 2nd Gen, Clarett USB, and Clarett+ interfaces have as many
PCM Inputs as Hardware Inputs. Scarlett 3rd Gen interfaces have two
more PCM Inputs which Focusrite Control uses as “Loopback” inputs.
The “Loopback” feature advertised for Scarlett 3rd Gen devices is
actually a limitation of the proprietary Focusrite Control software.
All supported devices with a mixer (that’s all but the 2nd and 3rd Gen
Solo/2i2 interfaces) support full reassignment of the PCM Inputs, so
you can have any PCM Input as a “Loopback” or assigned to any other
source.
### Talkback
The Scarlett 3rd Gen 18i20 talkback microphone is Analogue Input 9 and
can be routed like any other source. If you want to record using it,
there is no need for the loopback hack suggested by the manufacturer.
Just route it to a PCM Input.
## Mixer
Open the Mixer window with View → Mixer or press Ctrl-M.
The mixer is a matrix where any combination of inputs can be mixed to
any output at adjustable levels.

Click and drag up/down on the gain controls to adjust, or use your
mouse scroll wheel. You can also double-click on the control to
quickly toggle between off and 0dB.
### Signal Level Glow
Mixer input and output labels display a real-time glow effect behind
them, showing the signal level with green, yellow, and red colour
transitions. For stereo-linked channels, the glow is split into
separate L and R bars.
### Level Metering on Gain Dials
Each mixer gain knob includes a post-gain level meter inside the dial,
showing the signal level at that point in the mix with a peak hold
indicator.
### Custom Port Names
Mixer labels reflect any custom names set in the [Configuration
window](configuration.md). Long names are ellipsised with the full
name shown in a tooltip on hover.
### Stereo-Aware Controls
When adjacent mixer inputs or outputs are stereo-linked, their gain
controls are ganged together with an averaged value. Adjusting one
updates both channels. For a stereo-linked input going to a
stereo-linked output, the gain is computed as a diagonal average
across the four crosspoints.
### Port Visibility
Ports hidden in the [Configuration window](configuration.md) are
removed from the mixer grid, keeping the display focused on the ports
you’re actively using.
### Mixer Unavailability
At quad-band sample rates (176.4/192 kHz), the hardware mixer is
disabled. The mixer window displays a message indicating the mixer is
unavailable at the current sample rate.
## Configuration
The Configuration window provides settings for customising port names,
visibility, and stereo linking. Open it with View → Configuration or
press Ctrl-G. See [Configuration Window](configuration.md) for full
details.
Available tabs:
| Tab | Interfaces |
|-----|------------|
| Device Name | All |
| Device Settings | Clarett 4Pre, 8Pre (USB and +) |
| I/O Configuration | All |
### Custom Port Names
Give meaningful names to your ports (e.g. “Vocal Mic”, “Guitar”,
“Monitors”) in the I/O Configuration tab. These names appear
throughout the application — in the routing window, mixer labels, and
level meters.
### Port Visibility
Show or hide individual ports to reduce clutter in the routing and
mixer windows. Hidden ports with active connections show arrow
indicators in the routing window.
### Stereo Linking
Link adjacent ports together for stereo operation. Linked ports share
names, appear as stereo sockets in the routing window, and have ganged
controls in the mixer.
### S/PDIF Source (Clarett 4Pre, 8Pre)
The Device Settings tab provides control over which physical connector
provides the S/PDIF input: None, Optical, or RCA.
## Presets
The Presets button in the main window provides quick save/load of
named configurations. See [Presets and Configuration
Files](presets.md) for full details.
You can also save and load configurations to files via the File menu
(Ctrl-S to save, Ctrl-O to load).
## Levels
The Levels window shows the current levels of the hardware outputs,
the mixer inputs, and the PCM inputs. Open it with View → Levels or
press Ctrl-L.

Look at this in conjunction with the routing window to understand
which meter corresponds to which source or sink.
## Startup
The Startup window is used to configure settings that are
applied/relevant when the interface is powered on. Open it with View →
Startup or press Ctrl-T.

### Standalone
When Standalone mode is enabled, the interface will continue to route
audio as per the previous routing and mixer settings after it has been
disconnected from a computer. By configuring the routing between the
hardware and mixer inputs and outputs appropriately, the interface can
act as a standalone preamp or mixer.
Standalone mode is supported on all devices supported by the kernel
driver. Even the Scarlett 3rd Gen 4i4 (which is bus-powered) will
operate in standalone mode.
### Phantom Power Persistence (Scarlett 3rd Gen only)
When Phantom Power Persistence is enabled, the interface will restore
the previous Phantom Power/48V setting when the interface is turned
on. For the safety of microphones which can be damaged by phantom
power, the interface defaults to having phantom power disabled when it
is turned on.
### Reset Configuration
This will reset the configuration of the interface to the factory
defaults (except for MSD mode which is left off).
### Update Firmware
If a firmware update is found in the `/usr/lib/firmware/scarlett2`
directory, then an option to update the firmware will be available
here.
## Keyboard Shortcuts
| Shortcut | Action |
|----------|--------|
| Ctrl-O | Load Configuration |
| Ctrl-S | Save Configuration |
| Ctrl-I | Interface Simulation |
| Ctrl-Q | Exit |
| Ctrl-R | Routing Window |
| Ctrl-M | Mixer Window |
| Ctrl-L | Levels Window |
| Ctrl-G | Configuration Window |
| Ctrl-T | Startup Window |
| Ctrl-H | Supported Hardware |
| Ctrl-/ | About |
Keyboard shortcuts work from any window — subwindows forward unhandled
shortcuts to the main window.
---
Thanks for reading this far! This software represents over a thousand
hours of independent work — reverse-engineering, kernel development,
and building a complete replacement for Focusrite's proprietary apps.
If you've found it valuable, please consider a
[donation](../README.md#donations).
alsa-scarlett-gui-1.0~beta9/docs/iface-small.md 0000664 0000000 0000000 00000003361 15212330051 0021440 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel
## Small Scarlett 3rd Gen Interfaces
The Scarlett 3rd Gen Solo and 2i2 interfaces have just a few buttons to control
the Air, Line, Phantom Power, and Direct Monitor settings. Mostly
nothing that you can’t access from the front panel anyway.

## Input Controls
### Air
Enabling Air will transform your recordings and inspire you while
making music.
### Inst
The Inst buttons are used to select between Mic/Line and Instrument
level/impedance. When plugging in microphones or line-level equipment
(such as a synthesizer, external preamp, or effects processor) to the
input, set it to “Line”. The “Inst” setting is for instruments with
pickups such as guitars.
### 48V (Phantom Power)
Turning the “48V” switch on sends “Phantom Power” to the XLR
microphone input(s). This is required for some microphones (such as
condensor microphones), and damaging to some microphones (particularly
vintage ribbon microphones).
## Output Controls
### Direct Monitor
Direct Monitor sends the analogue input signals to the analogue
outputs for zero-latency monitoring.
On the 2i2, you have the choice of Mono or Stereo monitoring when you
click the button. Mono sends both inputs to the left and right
outputs. Stereo sends input 1 to the left, and input 2 to the right
output.
## Startup Controls
#### Phantom Power Persistence
By default, phantom power is turned off when the interface is turned
on. This can be changed in the startup configuration (menu option View
→ Startup).
The one control not accessible from the front panel is “Phantom Power
Persistence” (menu option View → Startup) which controls the Phantom
Power state when the interface is powered on.
alsa-scarlett-gui-1.0~beta9/docs/iface-vocaster.md 0000664 0000000 0000000 00000011736 15212330051 0022163 0 ustar 00root root 0000000 0000000 # Vocaster Interfaces
This document describes how to use alsa-scarlett-gui with
the Focusrite Vocaster interfaces:
- Vocaster One
- Vocaster Two
The Vocaster interfaces are designed for podcasting and
streaming, with built-in DSP processing, podcast-oriented
routing, and video call integration.
**Kernel requirement:** Linux 6.10 or later.
## Main Window

The main window is organised into sections:
- Global Controls (top)
- Input Controls (left/middle)
- Output Controls (right)
### Global Controls
#### Sync Status
Displays whether the interface is locked to a valid clock.
This should only briefly show "Unlocked" when the sample
rate changes.
#### Sample Rate
Shows the current sample rate when the interface is in use.
The sample rate is set by the application using the
interface (PulseAudio, JACK, PipeWire, etc.).
### Input Controls
The Vocaster One has a single microphone input (Host),
while the Vocaster Two has two (Host and Guest). Both have
additional inputs for auxiliary sources.
#### Gain
Adjusts the input gain. Click and drag up/down, use your
mouse scroll wheel, or click to select and use arrow keys.
The gain dial includes a post-gain level meter with peak
hold display.
#### Autogain
When enabled, the interface listens to the input signal
and automatically adjusts the gain to achieve optimal
levels. The target level can be configured in the
[Configuration window](configuration.md).
#### Phantom Power (48V)
Sends phantom power to the XLR microphone input. Required
for condenser microphones.
#### Mute
Mutes the microphone input. The Vocaster Two has a
physical mute button for each channel.
### Output Controls
#### Speaker/Headphones
Volume and mute controls for the speaker and headphone
outputs. The speaker mute uses a speaker icon toggle, and
each headphone output has a headphone icon toggle.
#### Bluetooth (Vocaster Two)
The Vocaster Two has Bluetooth connectivity for connecting
mobile devices. This appears as an additional input and
output in the routing.
## DSP Processing
The Vocaster interfaces include per-channel DSP with:
- Pre-compressor filter (high-pass to remove rumble)
- Compressor (dynamic range control)
- Parametric EQ (tone shaping)
Open the DSP window with View → DSP or press Ctrl-D. See
the [DSP documentation](dsp.md) for full details.
The Vocaster Two has two independent DSP channels (Host and
Guest), allowing different processing for each microphone.
## Routing
Open the routing window with View → Routing or press
Ctrl-R.
The Vocaster routing is designed around podcast/streaming
workflows:
### Sources (Inputs)
| Source | Description |
|--------|-------------|
| Host/Guest | Microphone inputs (via DSP) |
| Aux | Auxiliary line input |
| Bluetooth | Mobile device audio (Vocaster Two) |
| Video Call | Audio from video call software |
| Playback | General audio playback from computer |
### Sinks (Outputs)
| Sink | Description |
|------|-------------|
| Spkr/Headphones | Main monitoring output |
| Aux | Auxiliary output |
| Bluetooth | Send audio to mobile device (Two) |
| Video Call | Send to video call software |
| Show Mix | Complete podcast mix |
| Loopback | Record audio playing on computer |
### Mixer Outputs
The mixer provides pre-configured outputs for common
podcast scenarios:
- **Show Mix Pre** — Mix before DSP processing
- **Show Mix Post** — Mix after DSP processing
- **Video Call** — Mix for video call participants
- **Aux** — Auxiliary monitor mix
## Mixer
Open the mixer window with View → Mixer or press Ctrl-M.
The mixer allows you to create custom mixes by adjusting
the level of each source going to each output. This is
useful for:
- Creating a separate headphone mix for guests
- Setting up mix-minus for video calls (so callers don't
hear themselves)
- Balancing playback audio against microphone levels
Mixer input and output labels show real-time signal level
glow (green → yellow → red).
## Configuration
Open the Configuration window with View → Configuration or
press Ctrl-G. See [Configuration](configuration.md) for
details on:
- Setting a custom device name
- Renaming inputs and outputs
- Configuring Autogain target levels
- Showing/hiding unused ports
- Stereo linking
## Levels
The Levels window shows real-time audio levels at every
routing point. Open with View → Levels or press Ctrl-L.
## Presets
Save and recall your complete interface configuration using
the Presets button or File menu. See
[Presets](presets.md) for details.
## Keyboard Shortcuts
| Shortcut | Action |
|----------|--------|
| Ctrl-O | Load Configuration |
| Ctrl-S | Save Configuration |
| Ctrl-I | Interface Simulation |
| Ctrl-Q | Exit |
| Ctrl-R | Routing Window |
| Ctrl-M | Mixer Window |
| Ctrl-L | Levels Window |
| Ctrl-D | DSP Window |
| Ctrl-G | Configuration Window |
| Ctrl-T | Startup Window |
| Ctrl-H | Supported Hardware |
| Ctrl-/ | About |
Keyboard shortcuts work from any window — subwindows
forward unhandled shortcuts to the main window.
alsa-scarlett-gui-1.0~beta9/docs/presets.md 0000664 0000000 0000000 00000005646 15212330051 0020760 0 ustar 00root root 0000000 0000000 # Presets and Configuration Files
alsa-scarlett-gui provides two ways to save and restore your
interface configuration: quick presets for frequent use, and
file-based save/load for backup and sharing.
## Presets Button
The Presets button in the main window provides quick access to
named configurations for your interface.

Click the button to show a popover with:
- **Saved presets** — Click any preset name to load it
immediately
- **Delete button** — The × button next to each preset
removes it permanently
- **Save as Preset...** — Opens a dialog to save the current
configuration with a name
Presets are stored per-device (identified by serial number)
in `~/.config/alsa-scarlett-gui/`. Each preset is a `.conf`
file named `{serial}-{name}.conf`.
### Use Cases
- Save different configurations for recording, mixing, and
streaming
- Quick recall of routing setups for different projects
- Store differently-calibrated monitor group settings
## File Menu
The File menu provides save/load functionality with file
dialogs.
### Save Configuration (Ctrl-S)
File → Save Configuration opens a file dialog to save your
current settings. Two formats are available:
| Format | Extension | Description |
|--------|-----------|-------------|
| Native | `.conf` | Saves all settings (recommended) |
| alsactl | `.state` | ALSA controls only |
The native format is the default and is recommended because
it captures your complete configuration — including custom
port names, port visibility (show/hide), stereo linking, and
DSP filter parameters. These settings are managed by
alsa-scarlett-gui and stored locally, so the alsactl format
(which only saves kernel-level ALSA controls) cannot include
them.
The alsactl format is useful for interface simulation
(File → Interface Simulation), which lets you explore the
GUI for a device you don't have connected.
### Load Configuration (Ctrl-O)
File → Load Configuration opens a file dialog to restore
settings from a saved file. Both `.conf` and `.state`
formats are supported.
Loading a configuration immediately applies all settings to
your interface — routing, mixer levels, input/output
settings, custom names, and visibility.
## Native Format
The native `.conf` format uses GLib key-file (INI-style)
syntax:
```ini
[device]
serial=ABCD1234567890
model=Scarlett 18i20 USB
[controls]
Clock Source Capture Enum=Internal
Analogue Output 01 Playback Enum=Mix A
Mix A Input 01 Playback Volume=-6
...
```
The format stores:
- Boolean values as `true`/`false`
- Enum values by name (e.g., `Internal`, `Mix A`)
- Integer values in the driver's native scale
- Custom names as text strings
## Sharing Configurations
Configuration files can be shared between users or machines:
- The serial number in the file is for reference only —
files can be loaded on any compatible interface
- Controls that don't exist on the target interface are
silently ignored
alsa-scarlett-gui-1.0~beta9/img/ 0000775 0000000 0000000 00000000000 15212330051 0016562 5 ustar 00root root 0000000 0000000 alsa-scarlett-gui-1.0~beta9/img/alsa-scarlett-gui.png 0000664 0000000 0000000 00000135316 15212330051 0022622 0 ustar 00root root 0000000 0000000 PNG
IHDR \rf pHYs od tEXtSoftware www.inkscape.org< IDATxyuU
;z_MKvږDdي۲cGV/yxJ89M&>9N2V$N,EeId.ZHQ5l 7
4zbs w+\kɄuVTKp:~.`\k?D I8+4,8ĵ` GhH)NMζp51]?טǘځ?$eN5/\5pP
{|
^q_JIxRԳg Xm<-et5+6 l#9\d\1pH ؾF`1E!(%?k,$~_zq,ѐcYװ|wg Xd_R@qKv4B>nǭ:Pۍ4I&!PU`0$xMu]QUx>i(Buu5[neժU455Q]]MMM
b9<\|>"h)%nUU,%w