pax_global_header 0000666 0000000 0000000 00000000064 14765517032 0014524 g ustar 00root root 0000000 0000000 52 comment=e6fbb4f146103ae70ac592ea73b46cf182fd655c
geoffreybennett-alsa-scarlett-gui-e6fbb4f/ 0000775 0000000 0000000 00000000000 14765517032 0021011 5 ustar 00root root 0000000 0000000 geoffreybennett-alsa-scarlett-gui-e6fbb4f/.github/ 0000775 0000000 0000000 00000000000 14765517032 0022351 5 ustar 00root root 0000000 0000000 geoffreybennett-alsa-scarlett-gui-e6fbb4f/.github/FUNDING.yml 0000664 0000000 0000000 00000000065 14765517032 0024167 0 ustar 00root root 0000000 0000000 liberapay: gdb
custom: 'https://www.paypal.me/gdbau'
geoffreybennett-alsa-scarlett-gui-e6fbb4f/.github/ISSUE_TEMPLATE/ 0000775 0000000 0000000 00000000000 14765517032 0024534 5 ustar 00root root 0000000 0000000 geoffreybennett-alsa-scarlett-gui-e6fbb4f/.github/ISSUE_TEMPLATE/issue.md 0000664 0000000 0000000 00000003075 14765517032 0026213 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`!
geoffreybennett-alsa-scarlett-gui-e6fbb4f/.github/workflows/ 0000775 0000000 0000000 00000000000 14765517032 0024406 5 ustar 00root root 0000000 0000000 geoffreybennett-alsa-scarlett-gui-e6fbb4f/.github/workflows/build-debian-package.yml 0000664 0000000 0000000 00000004412 14765517032 0031042 0 ustar 00root root 0000000 0000000 name: Build debian package
on:
release:
branches: '*'
types: [published]
env:
APP_NAME: alsa-scarlett-gui
APP_VERSION: ${{ github.event.release.tag_name }}
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install build dependencies
run: |
sudo apt -y update
sudo apt -y install git make gcc libgtk-4-dev libasound2-dev libssl-dev
- name: Build from sources
run: |
make -C src -j$(nproc) PREFIX=/usr
- name: Prepare package workspace
run: |
mkdir -p ${{ github.workspace }}/deb-workspace/usr/bin \
${{ github.workspace }}/deb-workspace/usr/share/applications \
${{ github.workspace }}/deb-workspace/usr/share/icons/hicolor/256x256/apps \
${{ github.workspace }}/deb-workspace/usr/share/doc/${{ env.APP_NAME }}-${{ env.APP_VERSION }}
cp src/alsa-scarlett-gui ${{ github.workspace }}/deb-workspace/usr/bin/
cp src/vu.b4.alsa-scarlett-gui.desktop ${{ github.workspace }}/deb-workspace/usr/share/applications/
cp src/img/vu.b4.alsa-scarlett-gui.png ${{ github.workspace }}/deb-workspace/usr/share/icons/hicolor/256x256/apps/
cp -r *.md demo docs img ${{ github.workspace }}/deb-workspace/usr/share/doc/${{ env.APP_NAME }}-${{ env.APP_VERSION }}/
- name: Build debian package
uses: jiro4989/build-deb-action@v2
with:
package: ${{ env.APP_NAME }}
package_root: ${{ github.workspace }}/deb-workspace
maintainer: geoffreybennett
depends: 'libgtk-4-1, libasound2, alsa-utils'
version: ${{ env.APP_VERSION }}
desc: ${{ env.APP_NAME }} is a Gtk4 GUI for the ALSA controls presented by the Linux kernel Focusrite USB drivers.
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./${{ env.APP_NAME }}_${{ env.APP_VERSION }}_amd64.deb
asset_name: ${{ env.APP_NAME }}_${{ env.APP_VERSION }}_amd64.deb
asset_content_type: application/vnd.debian.binary-package
geoffreybennett-alsa-scarlett-gui-e6fbb4f/.github/workflows/build-flatpak-package.yml 0000664 0000000 0000000 00000002004 14765517032 0031235 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@v4
- 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: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./${{ env.APP_NAME }}.flatpak
asset_name: ${{ env.APP_NAME }}_${{ env.APP_VERSION }}.flatpak
asset_content_type: application/octet-stream
geoffreybennett-alsa-scarlett-gui-e6fbb4f/.gitignore 0000664 0000000 0000000 00000000221 14765517032 0022774 0 ustar 00root root 0000000 0000000 *.tar.gz
*.o
.deps
.gdb_history
alsa-scarlett-gui
alsa-scarlett-gui-resources.c
vu.b4.alsa-scarlett-gui.desktop
.flatpak-builder/
flatpak-build/
geoffreybennett-alsa-scarlett-gui-e6fbb4f/FAQ.md 0000664 0000000 0000000 00000013615 14765517032 0021750 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 or power it back on, 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.
To fix this issue, disable these services:
```sh
sudo systemctl mask alsa-state
sudo systemctl mask alsa-restore
```
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).
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.
## 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
geoffreybennett-alsa-scarlett-gui-e6fbb4f/LICENSES/ 0000775 0000000 0000000 00000000000 14765517032 0022216 5 ustar 00root root 0000000 0000000 geoffreybennett-alsa-scarlett-gui-e6fbb4f/LICENSES/GPL-3.0-or-later.txt 0000664 0000000 0000000 00000103556 14765517032 0025434 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 .
geoffreybennett-alsa-scarlett-gui-e6fbb4f/LICENSES/LGPL-3.0-or-later.txt 0000664 0000000 0000000 00000016403 14765517032 0025542 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.
geoffreybennett-alsa-scarlett-gui-e6fbb4f/Makefile 0000664 0000000 0000000 00000001606 14765517032 0022454 0 ustar 00root root 0000000 0000000 NAME := alsa-scarlett-gui
VERSION := $(shell git describe --abbrev=4 --always --tags | sed '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"
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)
geoffreybennett-alsa-scarlett-gui-e6fbb4f/README.md 0000664 0000000 0000000 00000006310 14765517032 0022270 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel (`alsa-scarlett-gui`)
`alsa-scarlett-gui` is a Gtk4 GUI for the ALSA controls presented by
the three Linux kernel Focusrite USB drivers:
- Scarlett 1st Gen Driver for ALSA
- Scarlett2 USB Protocol Mixer Driver
- FCP (Focusrite Control Protocol) Driver
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
## About
All Focusrite USB audio interfaces are class compliant meaning that
they work “out of the box” on Linux as audio and MIDI interfaces
(although on Gen 3/4/Vocaster you need to disable MSD mode first for
full functionality). However, except for some of the smallest models,
they have a bunch of proprietary functionality that required a kernel
driver to be written specifically for those devices.
Unfortunately, actually using this functionality used to be quite an
awful experience. The existing applications like `alsamixer` and
`qasmixer` become completely user-hostile with the hundreds of
controls presented for the Gen 3 18i20. Even the smallest Gen 3 4i4
interface at last count had 84 ALSA controls.
Announcing the ALSA Scarlett Control Panel, now supporting all
Scarlett Gen 1, 2, 3, 4, Clarett, and Vocaster USB interfaces!

## 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](docs/iface-1st-gen.md)
- [Scarlett 3rd Gen Solo and 2i2](docs/iface-small.md)
- [Scarlett 2nd Gen 6i6+, 3rd Gen 4i4+, Clarett USB, and
Clarett+](docs/iface-large.md)
- [Scarlett Small 4th Gen](docs/iface-4th-gen-small.md)
- [Scarlett Big 4th Gen](docs/iface-4th-gen-big.md)
## Donations
This program is Free Software, developed using my personal resources,
over hundreds of hours.
If you like this software, please consider a donation to say thank
you! Any donation is appreciated.
- https://liberapay.com/gdb
- https://paypal.me/gdbau
## License
Copyright 2022-2025 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.
geoffreybennett-alsa-scarlett-gui-e6fbb4f/alsa-scarlett-gui.spec.template 0000664 0000000 0000000 00000001622 14765517032 0027021 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
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/ 0000775 0000000 0000000 00000000000 14765517032 0021735 5 ustar 00root root 0000000 0000000 geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Clarett Plus 2Pre.state 0000664 0000000 0000000 00000205225 14765517032 0026100 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
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
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 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.8 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 127
comment {
access read
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
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 127
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
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 (Headphones 1 L) Playback Volume'
value 127
comment {
access read
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
type BOOLEAN
count 1
}
}
control.16 {
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.17 {
iface MIXER
name 'Line 04 (Headphones 1 R) Playback Volume'
value 127
comment {
access read
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
type BOOLEAN
count 1
}
}
control.19 {
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.20 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.21 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
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.23 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Inst
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.24 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.25 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
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 '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.27 {
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 '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.28 {
iface MIXER
name 'Analogue Output 03 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 '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 04 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 '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 '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.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 '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 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.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 '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 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.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 '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 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.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 '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 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.39 {
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.40 {
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.41 {
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.42 {
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.43 {
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.44 {
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.45 {
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.46 {
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.47 {
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.48 {
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.49 {
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.50 {
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.51 {
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.52 {
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.53 {
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.54 {
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.55 {
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.56 {
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.57 {
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.58 {
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.59 {
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.60 {
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.61 {
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.62 {
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.63 {
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.64 {
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.65 {
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.66 {
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.67 {
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.68 {
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.69 {
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.70 {
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.71 {
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.72 {
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.73 {
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.74 {
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.75 {
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.76 {
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.77 {
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.78 {
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.79 {
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.80 {
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.81 {
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.82 {
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.83 {
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.84 {
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.85 {
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.86 {
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.87 {
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.88 {
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.89 {
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.90 {
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.91 {
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.92 {
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.93 {
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.94 {
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.95 {
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.96 {
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.97 {
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.98 {
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.99 {
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.100 {
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.101 {
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.102 {
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.103 {
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.104 {
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.105 {
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.106 {
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.107 {
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.108 {
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.109 {
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.110 {
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.111 {
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.112 {
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.113 {
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.114 {
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.115 {
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.116 {
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.117 {
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.118 {
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.119 {
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.120 {
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.121 {
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.122 {
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.123 {
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.124 {
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.125 {
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.126 {
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.127 {
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.128 {
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.129 {
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.130 {
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.131 {
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.132 {
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.133 {
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.134 {
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.135 {
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.136 {
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.137 {
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.138 {
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.139 {
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.140 {
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.141 {
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.142 {
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.143 {
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.144 {
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.145 {
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.146 {
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.147 {
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.148 {
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.149 {
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.150 {
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.151 {
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.152 {
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.153 {
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.154 {
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.155 {
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.156 {
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.157 {
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.158 {
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.159 {
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.160 {
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.161 {
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.162 {
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.163 {
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.164 {
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.165 {
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.166 {
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.167 {
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.168 {
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.169 {
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.170 {
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.171 {
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.172 {
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.173 {
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.174 {
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.175 {
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.176 {
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.177 {
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.178 {
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.179 {
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.180 {
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.181 {
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.182 {
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.183 {
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.184 {
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.185 {
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.186 {
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.187 {
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.188 {
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.189 {
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.190 {
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.191 {
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.192 {
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.193 {
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.194 {
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.195 {
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.196 {
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.197 {
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.198 {
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.199 {
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.200 {
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.201 {
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.202 {
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.203 {
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.204 {
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.205 {
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.206 {
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.207 {
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.208 {
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.209 {
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.210 {
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.211 {
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.212 {
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.213 {
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.214 {
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.215 {
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.216 {
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.217 {
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.218 {
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.219 {
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.220 {
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.221 {
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.222 {
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.223 {
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.224 {
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.225 {
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.226 {
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.227 {
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.228 {
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.229 {
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.230 {
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.231 {
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.232 {
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.233 {
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.234 {
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.235 {
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.236 {
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.237 {
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.238 {
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.239 {
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.240 {
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.241 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.242 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Clarett Plus 4Pre.state 0000664 0000000 0000000 00000250032 14765517032 0026076 0 ustar 00root root 0000000 0000000 state.C4Pre {
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
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 70
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -5700
}
}
control.7 {
iface MIXER
name 'Line 01 (Monitor L) Playback Volume'
value 70
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -5700
}
}
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 70
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -5700
}
}
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 (Headphones 1 L) Playback Volume'
value 70
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -5700
}
}
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 (Headphones 1 R) Playback Volume'
value 70
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -5700
}
}
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 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.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 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.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 'Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.27 {
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.28 {
iface MIXER
name 'Line In 2 Level Capture Enum'
value Inst
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Line
item.1 Inst
}
}
control.29 {
iface MIXER
name 'Line In 1 Air Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.30 {
iface MIXER
name 'Line In 2 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.31 {
iface MIXER
name 'Line In 3 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.32 {
iface MIXER
name 'Line In 4 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.33 {
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.34 {
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.35 {
iface MIXER
name 'Analogue Output 03 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 04 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 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 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 'S/PDIF Output 1 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.40 {
iface MIXER
name 'S/PDIF Output 2 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.41 {
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.42 {
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.43 {
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 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'Analogue 3'
item.4 'Analogue 4'
item.5 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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.46 {
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.47 {
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.48 {
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.49 {
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.50 {
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.51 {
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.52 {
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.53 {
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.54 {
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.55 {
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.56 {
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.57 {
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.58 {
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.59 {
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.60 {
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.61 {
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.62 {
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.63 {
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.64 {
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.65 {
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.66 {
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.67 {
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.68 {
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.69 {
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.70 {
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.71 {
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.72 {
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.73 {
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.74 {
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.75 {
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.76 {
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.77 {
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.78 {
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.79 {
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.80 {
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.81 {
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.82 {
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.83 {
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.84 {
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.85 {
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.86 {
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.87 {
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.88 {
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.89 {
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.90 {
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.91 {
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.92 {
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.93 {
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.94 {
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.95 {
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.96 {
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.97 {
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.98 {
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.99 {
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.100 {
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.101 {
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.102 {
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.103 {
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.104 {
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.105 {
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.106 {
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.107 {
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.108 {
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.109 {
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.110 {
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.111 {
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.112 {
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.113 {
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.114 {
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.115 {
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.116 {
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.117 {
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.118 {
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.119 {
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.120 {
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.121 {
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.122 {
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.123 {
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.124 {
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.125 {
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.126 {
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.127 {
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.128 {
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.129 {
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.130 {
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.131 {
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.132 {
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.133 {
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.134 {
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.135 {
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.136 {
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.137 {
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.138 {
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.139 {
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.140 {
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.141 {
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.142 {
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.143 {
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.144 {
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.145 {
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.146 {
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.147 {
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.148 {
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.149 {
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.150 {
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.151 {
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.152 {
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.153 {
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.154 {
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.155 {
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.156 {
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.157 {
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.158 {
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.159 {
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.160 {
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.161 {
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.162 {
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.163 {
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.164 {
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.165 {
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.166 {
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.167 {
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.168 {
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.169 {
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.170 {
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.171 {
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.172 {
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.173 {
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.174 {
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.175 {
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.176 {
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.177 {
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.178 {
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.179 {
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.180 {
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.181 {
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.182 {
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.183 {
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.184 {
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.185 {
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.186 {
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.187 {
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.188 {
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.189 {
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.190 {
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.191 {
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.192 {
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.193 {
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.194 {
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.195 {
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.196 {
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.197 {
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.198 {
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.199 {
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.200 {
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.201 {
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.202 {
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.203 {
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.204 {
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.205 {
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.206 {
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.207 {
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.208 {
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.209 {
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.210 {
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.211 {
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.212 {
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.213 {
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.214 {
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.215 {
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.216 {
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.217 {
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.218 {
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.219 {
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.220 {
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.221 {
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.222 {
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.223 {
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.224 {
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.225 {
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.226 {
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.227 {
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.228 {
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.229 {
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.230 {
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.231 {
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.232 {
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.233 {
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.234 {
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.235 {
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.236 {
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.237 {
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.238 {
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.239 {
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.240 {
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.241 {
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.242 {
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.243 {
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.244 {
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.245 {
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.246 {
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.247 {
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.248 {
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.249 {
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.250 {
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.251 {
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.252 {
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.253 {
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.254 {
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.255 {
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.256 {
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.257 {
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
comment {
access 'read volatile'
type INTEGER
count 44
range '0 - 4095 (step 1)'
}
}
control.258 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.259 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Clarett Plus 8Pre.state 0000664 0000000 0000000 00000334402 14765517032 0026106 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 1 18i20.state 0000664 0000000 0000000 00000274533 14765517032 0026135 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 1 18i6.state 0000664 0000000 0000000 00000160644 14765517032 0026056 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 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 108
comment {
access 'read write'
type INTEGER
count 1
range '0 - 134 (step 1)'
dbmin -12800
dbmax 600
dbvalue.0 -2000
}
}
control.10 {
iface MIXER
name 'Master 1 (Monitor) Playback Switch'
value.0 false
value.1 false
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 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.14 {
iface MIXER
name 'Master 2 (Headphone) Playback Switch'
value.0 false
value.1 false
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 '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 '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.18 {
iface MIXER
name 'Master 3 (SPDIF) Playback Switch'
value.0 false
value.1 false
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 '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 '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.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 '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.25 {
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.26 {
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.27 {
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.28 {
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.29 {
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.30 {
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.31 {
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 '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 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 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.34 {
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.35 {
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.36 {
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.37 {
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.38 {
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 '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 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 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.42 {
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.43 {
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.44 {
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.45 {
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 '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 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 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 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 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.50 {
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.51 {
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.52 {
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 '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 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 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.55 {
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.56 {
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.57 {
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.58 {
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.59 {
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 '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 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 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 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.63 {
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.64 {
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.65 {
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.66 {
iface MIXER
name 'Matrix 07 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.67 {
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.68 {
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.69 {
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.70 {
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.71 {
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.72 {
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.73 {
iface MIXER
name 'Matrix 08 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.74 {
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.75 {
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.76 {
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.77 {
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.78 {
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.79 {
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.80 {
iface MIXER
name 'Matrix 09 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 '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 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 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.83 {
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.84 {
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.85 {
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.86 {
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.87 {
iface MIXER
name 'Matrix 10 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 '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 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 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.90 {
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.91 {
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.92 {
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.93 {
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.94 {
iface MIXER
name 'Matrix 11 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 '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 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 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.97 {
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.98 {
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.99 {
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.100 {
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.101 {
iface MIXER
name 'Matrix 12 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 '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 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 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.104 {
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.105 {
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.106 {
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.107 {
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.108 {
iface MIXER
name 'Matrix 13 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 '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 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 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.111 {
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.112 {
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.113 {
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.114 {
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.115 {
iface MIXER
name 'Matrix 14 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 '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 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 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.118 {
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.119 {
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.120 {
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.121 {
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.122 {
iface MIXER
name 'Matrix 15 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 '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 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 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 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.126 {
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.127 {
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.128 {
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.129 {
iface MIXER
name 'Matrix 16 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 '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 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 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.132 {
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.133 {
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.134 {
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.135 {
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.136 {
iface MIXER
name 'Matrix 17 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 '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 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 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.139 {
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.140 {
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.141 {
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.142 {
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.143 {
iface MIXER
name 'Matrix 18 Input Playback 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'
}
}
control.144 {
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.145 {
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.146 {
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.147 {
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.148 {
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.149 {
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.150 {
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 '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 '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.152 {
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 '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 '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.154 {
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 '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 '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.156 {
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 '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 '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.158 {
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 '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 '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.160 {
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 '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 '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.162 {
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 '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 '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.164 {
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 '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 '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.166 {
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 '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 '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.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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 1 18i8.state 0000664 0000000 0000000 00000213023 14765517032 0026046 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 1 6i6.state 0000664 0000000 0000000 00000152012 14765517032 0025761 0 ustar 00root root 0000000 0000000 state.USB {
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
value.8 11
value.9 9
value.10 10
value.11 21
comment {
access read
type INTEGER
count 12
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
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 Hi
comment {
access 'read write'
type ENUMERATED
count 1
item.0 Lo
item.1 Hi
}
}
control.27 {
iface MIXER
name 'Input 4 Gain Switch'
value Hi
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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 1 8i6.state 0000664 0000000 0000000 00000132517 14765517032 0025773 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 2 18i20.state 0000664 0000000 0000000 00000331274 14765517032 0026132 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 S/PDIF
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 0
comment {
access read
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
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 Out 01 Volume Control Playback Enum'
value SW
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 127
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 0
}
}
control.10 {
iface MIXER
name 'Line 02 Mute Playback Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.11 {
iface MIXER
name 'Line Out 02 Volume Control Playback Enum'
value SW
comment {
access 'read write'
type ENUMERATED
count 1
item.0 SW
item.1 HW
}
}
control.12 {
iface MIXER
name 'Line 03 Playback Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
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 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 127 (step 1)'
dbmin -12700
dbmax 0
dbvalue.0 -12700
}
}
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 '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.39 {
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.40 {
iface MIXER
name 'Analogue Output 03 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.41 {
iface MIXER
name 'Analogue Output 04 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.42 {
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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 07 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.45 {
iface MIXER
name 'Analogue Output 08 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.46 {
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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 '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'
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 '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'
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 '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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 '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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 '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'
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 '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'
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 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.61 {
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'
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 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'
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 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'
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 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'
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 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'
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 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.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'
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 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.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'
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 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.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'
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 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.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'
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 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.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'
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 'PCM 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.77 {
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 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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.79 {
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 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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 'Analogue 5'
item.6 'Analogue 6'
item.7 'Analogue 7'
item.8 'Analogue 8'
item.9 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 'ADAT 3'
item.14 'ADAT 4'
item.15 'ADAT 5'
item.16 'ADAT 6'
item.17 'ADAT 7'
item.18 'ADAT 8'
item.19 'Mix A'
item.20 'Mix B'
item.21 'Mix C'
item.22 'Mix D'
item.23 'Mix E'
item.24 'Mix F'
item.25 'Mix G'
item.26 'Mix H'
item.27 'Mix I'
item.28 'Mix J'
item.29 'PCM 1'
item.30 'PCM 2'
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 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.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'
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 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.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'
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 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.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'
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 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.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'
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 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.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'
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 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.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'
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 '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.95 {
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.96 {
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.97 {
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.98 {
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.99 {
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.100 {
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.101 {
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.102 {
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.103 {
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.104 {
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.105 {
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.106 {
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.107 {
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.108 {
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.109 {
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.110 {
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.111 {
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.112 {
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.113 {
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.114 {
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.115 {
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.116 {
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.117 {
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.118 {
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.119 {
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.120 {
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.121 {
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.122 {
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.123 {
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.124 {
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.125 {
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.126 {
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.127 {
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.128 {
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.129 {
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.130 {
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.131 {
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.132 {
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.133 {
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.134 {
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.135 {
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.136 {
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.137 {
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.138 {
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.139 {
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.140 {
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.141 {
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.142 {
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.143 {
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.144 {
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.145 {
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.146 {
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.147 {
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.148 {
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.149 {
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.150 {
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.151 {
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.152 {
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.153 {
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.154 {
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.155 {
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.156 {
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.157 {
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.158 {
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.159 {
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.160 {
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.161 {
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.162 {
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.163 {
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.164 {
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.165 {
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.166 {
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.167 {
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.168 {
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.169 {
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.170 {
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.171 {
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.172 {
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.173 {
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.174 {
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.175 {
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.176 {
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.177 {
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.178 {
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.179 {
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.180 {
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.181 {
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.182 {
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.183 {
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.184 {
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.185 {
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.186 {
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.187 {
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.188 {
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.189 {
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.190 {
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.191 {
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.192 {
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.193 {
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.194 {
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.195 {
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.196 {
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.197 {
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.198 {
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.199 {
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.200 {
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.201 {
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.202 {
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.203 {
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.204 {
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.205 {
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.206 {
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.207 {
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.208 {
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.209 {
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.210 {
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.211 {
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.212 {
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.213 {
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.214 {
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.215 {
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.216 {
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.217 {
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.218 {
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.219 {
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.220 {
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.221 {
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.222 {
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.223 {
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.224 {
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.225 {
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.226 {
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.227 {
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.228 {
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.229 {
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.230 {
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.231 {
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.232 {
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.233 {
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.234 {
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.235 {
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.236 {
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.237 {
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.238 {
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.239 {
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.240 {
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.241 {
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.242 {
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.243 {
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.244 {
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.245 {
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.246 {
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.247 {
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.248 {
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.249 {
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.250 {
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.251 {
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.252 {
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.253 {
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.254 {
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.255 {
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.256 {
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.257 {
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.258 {
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.259 {
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.260 {
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.261 {
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.262 {
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.263 {
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.264 {
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.265 {
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.266 {
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.267 {
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.268 {
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.269 {
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.270 {
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.271 {
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.272 {
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.273 {
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.274 {
iface PCM
name 'Level Meter'
value.0 6
value.1 66
value.2 6
value.3 0
value.4 0
value.5 0
value.6 65
value.7 65
value.8 4095
value.9 4095
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 2099
value.19 2029
value.20 2099
value.21 2029
value.22 3367
value.23 3237
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 6
value.39 66
value.40 64
value.41 66
value.42 0
value.43 0
value.44 6
value.45 6
value.46 6
value.47 6
value.48 6
value.49 6
value.50 6
value.51 6
value.52 6
value.53 6
value.54 6
value.55 6
comment {
access 'read volatile'
type INTEGER
count 56
range '0 - 4095 (step 1)'
}
}
control.275 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 2 18i8.state 0000664 0000000 0000000 00000244560 14765517032 0026061 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 2 6i6.state 0000664 0000000 0000000 00000170625 14765517032 0025774 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 3 18i20.state 0000664 0000000 0000000 00000464620 14765517032 0026135 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 3 18i8.state 0000664 0000000 0000000 00000277626 14765517032 0026073 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 3 2i2.state 0000664 0000000 0000000 00000003137 14765517032 0025756 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 3 4i4.state 0000664 0000000 0000000 00000053746 14765517032 0025775 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 3 8i6.state 0000664 0000000 0000000 00000100643 14765517032 0025770 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 3 Solo.state 0000664 0000000 0000000 00000002345 14765517032 0026276 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 2 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 1 Air Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.6 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface MIXER
name 'Direct Monitor Playback Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 4 16i16.state 0000664 0000000 0000000 00000603722 14765517032 0026137 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 80
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 4071
value.17 4092
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 4045
value.35 4038
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 4071
value.47 4092
value.48 0
value.49 0
value.50 4095
value.51 4095
value.52 4095
value.53 4095
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 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.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 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.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 '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.416 {
iface MIXER
name 'Analogue 2 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 '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 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 '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 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 '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 70
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 6900
}
}
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 'Analogue 1 Playback Volume'
value -42
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -4200
}
}
control.502 {
iface MIXER
name 'Analogue 2 Playback Volume'
value -42
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -4200
}
}
control.503 {
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.504 {
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.505 {
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.506 {
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.507 {
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.508 {
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.509 {
iface CARD
name 'Firmware Version'
value.0 2
value.1 0
value.2 2403
value.3 0
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
tlv '53434b54000000206e75722f7063662f7265732d2d72657663662f312e312d706b636f7300000000'
}
}
control.510 {
iface CARD
name 'ESP Firmware Version'
value.0 1
value.1 0
value.2 0
value.3 348
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
}
}
control.511 {
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.512 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.513 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.514 {
iface MIXER
name 'Speaker Switching Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.515 {
iface MIXER
name 'Speaker Switching Alt Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.516 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.517 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 4 18i16.state 0000664 0000000 0000000 00000646150 14765517032 0026143 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 80
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 3866
value.19 4094
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 3900
value.37 4013
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 3866
value.49 4094
value.50 0
value.51 0
value.52 3900
value.53 4095
value.54 3900
value.55 4095
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 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.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 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.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 '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.440 {
iface MIXER
name 'Analogue 2 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 'S/PDIF 1'
item.10 'S/PDIF 2'
item.11 'ADAT 1'
item.12 'ADAT 2'
item.13 '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 70
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 6900
}
}
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 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.543 {
iface MIXER
name 'Analogue 1 Playback Volume'
value -41
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -4100
}
}
control.544 {
iface MIXER
name 'Analogue 2 Playback Volume'
value -41
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -4100
}
}
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 -38
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -3800
}
}
control.548 {
iface MIXER
name 'Analogue 6 Playback Volume'
value -38
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -3800
}
}
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 CARD
name 'Firmware Version'
value.0 2
value.1 0
value.2 2403
value.3 0
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
tlv '53434b54000000206e75722f7063662f7265732d2d72657663662f312e312d706b636f7300000000'
}
}
control.552 {
iface CARD
name 'ESP Firmware Version'
value.0 1
value.1 0
value.2 0
value.3 348
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
}
}
control.553 {
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.554 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.555 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.556 {
iface MIXER
name 'Speaker Switching Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.557 {
iface MIXER
name 'Speaker Switching Alt Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.558 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.559 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 4 18i20.state 0000664 0000000 0000000 00001035140 14765517032 0026126 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 128
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 4095
value.20 4095
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 4095
value.44 4095
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 4095
value.56 4095
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 4095
value.66 4095
value.67 4095
value.68 4095
comment {
access 'read volatile'
type INTEGER
count 69
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 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.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 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.44 {
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.45 {
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.46 {
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.47 {
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.48 {
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.49 {
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.50 {
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.51 {
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.52 {
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.53 {
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.54 {
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.55 {
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.56 {
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.57 {
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.58 {
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.59 {
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.60 {
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.61 {
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.62 {
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.63 {
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.64 {
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.65 {
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.66 {
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.67 {
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.68 {
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.69 {
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.70 {
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.71 {
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.72 {
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.73 {
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.74 {
iface MIXER
name 'Mix B Input 25 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.75 {
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.76 {
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.77 {
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.78 {
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.79 {
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.80 {
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.81 {
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.82 {
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.83 {
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.84 {
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.85 {
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.86 {
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.87 {
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.88 {
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.89 {
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.90 {
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.91 {
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.92 {
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.93 {
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.94 {
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.95 {
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.96 {
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.97 {
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.98 {
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.99 {
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.100 {
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.101 {
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.102 {
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.103 {
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.104 {
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.105 {
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.106 {
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.107 {
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.108 {
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.109 {
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.110 {
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.111 {
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.112 {
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.113 {
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.114 {
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.115 {
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.116 {
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.117 {
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.118 {
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.119 {
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.120 {
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.121 {
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.122 {
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.123 {
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.124 {
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.125 {
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.126 {
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.127 {
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.128 {
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.129 {
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.130 {
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.131 {
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.132 {
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.133 {
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.134 {
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.135 {
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.136 {
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.137 {
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.138 {
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.139 {
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.140 {
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.141 {
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.142 {
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.143 {
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.144 {
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.145 {
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.146 {
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.147 {
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.148 {
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.149 {
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.150 {
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.151 {
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.152 {
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.153 {
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.154 {
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.155 {
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.156 {
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.157 {
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.158 {
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.159 {
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.160 {
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.161 {
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.162 {
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.163 {
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.164 {
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.165 {
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.166 {
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.167 {
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.168 {
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.169 {
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.170 {
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.171 {
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.172 {
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.173 {
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.174 {
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.175 {
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.176 {
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.177 {
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.178 {
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.179 {
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.180 {
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.181 {
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.182 {
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.183 {
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.184 {
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.185 {
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.186 {
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.187 {
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.188 {
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.189 {
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.190 {
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.191 {
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.192 {
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.193 {
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.194 {
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.195 {
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.196 {
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.197 {
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.198 {
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.199 {
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.200 {
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.201 {
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.202 {
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.203 {
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.204 {
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.205 {
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.206 {
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.207 {
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.208 {
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.209 {
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.210 {
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.211 {
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.212 {
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.213 {
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.214 {
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.215 {
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.216 {
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.217 {
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.218 {
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.219 {
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.220 {
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.221 {
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.222 {
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.223 {
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.224 {
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.225 {
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.226 {
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.227 {
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.228 {
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.229 {
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.230 {
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.231 {
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.232 {
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.233 {
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.234 {
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.235 {
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.236 {
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.237 {
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.238 {
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.239 {
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.240 {
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.241 {
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.242 {
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.243 {
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.244 {
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.245 {
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.246 {
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.247 {
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.248 {
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.249 {
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.250 {
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.251 {
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.252 {
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.253 {
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.254 {
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.255 {
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.256 {
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.257 {
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.258 {
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.259 {
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.260 {
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.261 {
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.262 {
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.263 {
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.264 {
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.265 {
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.266 {
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.267 {
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.268 {
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.269 {
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.270 {
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.271 {
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.272 {
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.273 {
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.274 {
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.275 {
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.276 {
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.277 {
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.278 {
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.279 {
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.280 {
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.281 {
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.282 {
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.283 {
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.284 {
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.285 {
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.286 {
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.287 {
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.288 {
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.289 {
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.290 {
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.291 {
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.292 {
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.293 {
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.294 {
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.295 {
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.296 {
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.297 {
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.298 {
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.299 {
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.300 {
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.301 {
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.302 {
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.303 {
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.304 {
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.305 {
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.306 {
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.307 {
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.308 {
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.309 {
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.310 {
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.311 {
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.312 {
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.313 {
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.314 {
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.315 {
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.316 {
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.317 {
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.318 {
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.319 {
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.320 {
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.321 {
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.322 {
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.323 {
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.324 {
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.325 {
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.326 {
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.327 {
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.328 {
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.329 {
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.330 {
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.331 {
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.332 {
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.333 {
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.334 {
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.335 {
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.336 {
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.337 {
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.338 {
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.339 {
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.340 {
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.341 {
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.342 {
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.343 {
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.344 {
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.345 {
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.346 {
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.347 {
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.348 {
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.349 {
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.350 {
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.351 {
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.352 {
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.353 {
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.354 {
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.355 {
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.356 {
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.357 {
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.358 {
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.359 {
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.360 {
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.361 {
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.362 {
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.363 {
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.364 {
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.365 {
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.366 {
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.367 {
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.368 {
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.369 {
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.370 {
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.371 {
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.372 {
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.373 {
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.374 {
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.375 {
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.376 {
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.377 {
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.378 {
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.379 {
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.380 {
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.381 {
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.382 {
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.383 {
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.384 {
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.385 {
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.386 {
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.387 {
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.388 {
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.389 {
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.390 {
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.391 {
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.392 {
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.393 {
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.394 {
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.395 {
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.396 {
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.397 {
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.398 {
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.399 {
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.400 {
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.401 {
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.402 {
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.403 {
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.404 {
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.405 {
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.406 {
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.407 {
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.408 {
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.409 {
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.410 {
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.411 {
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.412 {
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.413 {
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.414 {
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.415 {
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.416 {
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.417 {
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.418 {
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.419 {
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.420 {
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.421 {
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.422 {
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.423 {
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.424 {
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.425 {
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.426 {
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.427 {
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.428 {
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.429 {
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.430 {
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.431 {
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.432 {
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.433 {
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.434 {
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.435 {
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.436 {
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.437 {
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.438 {
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.439 {
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.440 {
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.441 {
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.442 {
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.443 {
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.444 {
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.445 {
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.446 {
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.447 {
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.448 {
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.449 {
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.450 {
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.451 {
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.452 {
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.453 {
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.454 {
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.455 {
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.456 {
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.457 {
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.458 {
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.459 {
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.460 {
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.461 {
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.462 {
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.463 {
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.464 {
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.465 {
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.466 {
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.467 {
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.468 {
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.469 {
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.470 {
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.471 {
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.472 {
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.473 {
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.474 {
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.475 {
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.476 {
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.477 {
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.478 {
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.479 {
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.480 {
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.481 {
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.482 {
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.483 {
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.484 {
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.485 {
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.486 {
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.487 {
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.488 {
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.489 {
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.490 {
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.491 {
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.492 {
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.493 {
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.494 {
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.495 {
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.496 {
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.497 {
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.498 {
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.499 {
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.500 {
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.501 {
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.502 {
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.503 {
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.504 {
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.505 {
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.506 {
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.507 {
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.508 {
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.509 {
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.510 {
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.511 {
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.512 {
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.513 {
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.514 {
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.515 {
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.516 {
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.517 {
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.518 {
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.519 {
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.520 {
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.521 {
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.522 {
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.523 {
iface MIXER
name 'Analogue 1 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.524 {
iface MIXER
name 'Analogue 2 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.525 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.526 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.527 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.528 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.529 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.530 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.531 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.532 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.533 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.534 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.535 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.536 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.537 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.538 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.539 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.540 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.541 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.542 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.543 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.544 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.545 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.546 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.547 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.548 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.549 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.550 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.551 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.552 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.553 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.554 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.555 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.556 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.557 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.558 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.559 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.560 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.561 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.562 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.563 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.564 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.565 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.566 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.567 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.568 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.569 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.570 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.571 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.572 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.573 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.574 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.575 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.576 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.577 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.578 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.579 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.580 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.581 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.582 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.583 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.584 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.585 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.586 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.587 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.588 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.589 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.590 {
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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.591 {
iface MIXER
name 'Mixer 25 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.592 {
iface MIXER
name 'Mixer 26 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.593 {
iface MIXER
name 'Mixer 27 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.594 {
iface MIXER
name 'Mixer 28 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.595 {
iface MIXER
name 'Mixer 29 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.596 {
iface MIXER
name 'Mixer 30 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.597 {
iface MIXER
name 'Mixer 31 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.598 {
iface MIXER
name 'Mixer 32 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.599 {
iface MIXER
name 'Mixer 33 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.600 {
iface MIXER
name 'Mixer 34 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.601 {
iface MIXER
name 'Mixer 35 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.602 {
iface MIXER
name 'Mixer 36 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.603 {
iface MIXER
name 'Mixer 37 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.604 {
iface MIXER
name 'Mixer 38 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.605 {
iface MIXER
name 'Mixer 39 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.606 {
iface MIXER
name 'Mixer 40 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.607 {
iface MIXER
name 'Mixer 41 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.608 {
iface MIXER
name 'Mixer 42 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.609 {
iface MIXER
name 'Mixer 43 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 'PCM 1'
item.21 'PCM 2'
item.22 'PCM 3'
item.23 'PCM 4'
item.24 'PCM 5'
item.25 'PCM 6'
item.26 'PCM 7'
item.27 'PCM 8'
item.28 'PCM 9'
item.29 'PCM 10'
item.30 'PCM 11'
item.31 'PCM 12'
item.32 'PCM 13'
item.33 'PCM 14'
item.34 'PCM 15'
item.35 'PCM 16'
item.36 'PCM 17'
item.37 'PCM 18'
item.38 'PCM 19'
item.39 'PCM 20'
item.40 'PCM 21'
item.41 'PCM 22'
item.42 'PCM 23'
item.43 'PCM 24'
item.44 'Mix A'
item.45 'Mix B'
item.46 'Mix C'
item.47 'Mix D'
item.48 'Mix E'
item.49 'Mix F'
item.50 'Mix G'
item.51 'Mix H'
item.52 'Mix I'
item.53 'Mix J'
item.54 'Mix K'
item.55 'Mix L'
}
}
control.610 {
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.611 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.612 {
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.613 {
iface MIXER
name 'Line In 1 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.614 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.615 {
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.616 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.617 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 70
comment {
access 'read write user'
type INTEGER
count 1
range '0 - 70 (step 1)'
tlv '00000004000000080000000000001af4'
dbmin 0
dbmax 6900
dbvalue.0 6900
}
}
control.618 {
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.619 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.620 {
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.621 {
iface MIXER
name 'Line In 2 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.622 {
iface MIXER
name 'Line In 2 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.623 {
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.624 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.625 {
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.626 {
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.627 {
iface MIXER
name 'Line In 3 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.628 {
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.629 {
iface MIXER
name 'Line In 3 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.630 {
iface MIXER
name 'Line In 3 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.631 {
iface MIXER
name 'Line In 3 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.632 {
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.633 {
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.634 {
iface MIXER
name 'Line In 4 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.635 {
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.636 {
iface MIXER
name 'Line In 4 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.637 {
iface MIXER
name 'Line In 4 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.638 {
iface MIXER
name 'Line In 4 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.639 {
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.640 {
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.641 {
iface MIXER
name 'Line In 5 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.642 {
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.643 {
iface MIXER
name 'Line In 5 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.644 {
iface MIXER
name 'Line In 5 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.645 {
iface MIXER
name 'Line In 5 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.646 {
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.647 {
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.648 {
iface MIXER
name 'Line In 6 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.649 {
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.650 {
iface MIXER
name 'Line In 6 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.651 {
iface MIXER
name 'Line In 6 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.652 {
iface MIXER
name 'Line In 6 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.653 {
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.654 {
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.655 {
iface MIXER
name 'Line In 7 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.656 {
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.657 {
iface MIXER
name 'Line In 7 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.658 {
iface MIXER
name 'Line In 7 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.659 {
iface MIXER
name 'Line In 7 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.660 {
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.661 {
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.662 {
iface MIXER
name 'Line In 8 Autogain Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.663 {
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.664 {
iface MIXER
name 'Line In 8 Link Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.665 {
iface MIXER
name 'Line In 8 Safe Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.666 {
iface MIXER
name 'Line In 8 Phantom Power Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.667 {
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.668 {
iface MIXER
name 'Analogue 1 Playback Volume'
value -43
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -4300
}
}
control.669 {
iface MIXER
name 'Analogue 2 Playback Volume'
value -43
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -4300
}
}
control.670 {
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.671 {
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.672 {
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.673 {
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.674 {
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.675 {
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.676 {
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.677 {
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.678 {
iface MIXER
name 'Analogue 11 Playback Volume'
value -41
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -4100
}
}
control.679 {
iface MIXER
name 'Analogue 12 Playback Volume'
value -41
comment {
access 'read write user'
type INTEGER
count 1
range '-127 - 0 (step 1)'
tlv '0000000400000008ffffce6400000000'
dbmin -12700
dbmax 0
dbvalue.0 -4100
}
}
control.680 {
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.681 {
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.682 {
iface CARD
name 'Firmware Version'
value.0 2
value.1 0
value.2 2399
value.3 4559
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
tlv '53434b54000000206e75722f7063662f7265732d2d72657663662f312e312d706b636f7300000000'
}
}
control.683 {
iface CARD
name 'ESP Firmware Version'
value.0 1
value.1 0
value.2 0
value.3 348
comment {
access 'read write locked user'
type INTEGER
count 4
range '0 - 65535 (step 1)'
}
}
control.684 {
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.685 {
iface MIXER
name 'Mute Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.686 {
iface MIXER
name 'Dim Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.687 {
iface MIXER
name 'Speaker Switching Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.688 {
iface MIXER
name 'Speaker Switching Alt Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.689 {
iface MIXER
name 'Talkback Enable Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.690 {
iface MIXER
name 'Talk Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.691 {
iface MIXER
name 'Talkback Mix A Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.692 {
iface MIXER
name 'Talkback Mix B Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.693 {
iface MIXER
name 'Talkback Mix C Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.694 {
iface MIXER
name 'Talkback Mix D Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.695 {
iface MIXER
name 'Talkback Mix E Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.696 {
iface MIXER
name 'Talkback Mix F Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.697 {
iface MIXER
name 'Talkback Mix G Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.698 {
iface MIXER
name 'Talkback Mix H Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.699 {
iface MIXER
name 'Talkback Mix I Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.700 {
iface MIXER
name 'Talkback Mix J Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.701 {
iface MIXER
name 'Talkback Mix K Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.702 {
iface MIXER
name 'Talkback Mix L Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.703 {
iface MIXER
name 'Output Playback Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.704 {
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.705 {
iface MIXER
name 'Standalone Switch'
value true
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
control.706 {
iface MIXER
name 'Phantom Power Persistence Capture Switch'
value false
comment {
access 'read write user'
type BOOLEAN
count 1
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 4 2i2.state 0000664 0000000 0000000 00000037071 14765517032 0025763 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 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 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.10 {
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.11 {
iface MIXER
name 'Line In 1-2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.12 {
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.13 {
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 -7000
dbmax 0
dbvalue.0 -6100
}
}
control.14 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.15 {
iface MIXER
name 'Line In 1 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.16 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line In 1-2 Link Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.18 {
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 -7000
dbmax 0
dbvalue.0 -6100
}
}
control.19 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
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.21 {
iface MIXER
name 'Line In 2 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.22 {
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.23 {
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.24 {
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.25 {
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.26 {
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.27 {
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.28 {
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.29 {
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.30 {
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.31 {
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.32 {
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.33 {
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.34 {
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.35 {
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.36 {
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.37 {
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.38 {
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.39 {
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.40 {
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.41 {
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.42 {
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.43 {
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.44 {
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.45 {
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.46 {
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.47 {
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.48 {
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.49 {
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.50 {
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
comment {
access 'read volatile'
type INTEGER
count 12
range '0 - 4095 (step 1)'
}
}
control.51 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.52 {
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.53 {
iface MIXER
name 'Monitor 1 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.54 {
iface MIXER
name 'Monitor 1 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.55 {
iface MIXER
name 'Monitor 1 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.56 {
iface MIXER
name 'Monitor 1 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.57 {
iface MIXER
name 'Monitor 1 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.58 {
iface MIXER
name 'Monitor 1 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.59 {
iface MIXER
name 'Monitor 1 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.60 {
iface MIXER
name 'Monitor 1 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
}
}
control.61 {
iface MIXER
name 'Monitor 2 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.62 {
iface MIXER
name 'Monitor 2 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.63 {
iface MIXER
name 'Monitor 2 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.64 {
iface MIXER
name 'Monitor 2 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.65 {
iface MIXER
name 'Monitor 2 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.66 {
iface MIXER
name 'Monitor 2 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.67 {
iface MIXER
name 'Monitor 2 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.68 {
iface MIXER
name 'Monitor 2 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 4 4i4.state 0000664 0000000 0000000 00000170654 14765517032 0025774 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
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 '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 '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.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 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.16 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
iface MIXER
name 'Line In 1 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.18 {
iface MIXER
name 'Line In 1 Safe Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.19 {
iface MIXER
name 'Line In 1-2 Link Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.20 {
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.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 Stopped
comment {
access read
type ENUMERATED
count 1
item.0 Stopped
item.1 Running
item.2 Failed
item.3 Cancelled
item.4 Unknown
}
}
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 '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.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 '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 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.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 '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 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 '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 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 '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 '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.31 {
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.32 {
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.33 {
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.34 {
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.35 {
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.36 {
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.37 {
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.38 {
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.39 {
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.40 {
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.41 {
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.42 {
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.43 {
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.44 {
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.45 {
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.46 {
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.47 {
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.48 {
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.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 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 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 160
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 0
}
}
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 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.59 {
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.60 {
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.61 {
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.62 {
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.63 {
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.64 {
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.65 {
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.66 {
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.67 {
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.68 {
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.69 {
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.70 {
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.71 {
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.72 {
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.73 {
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.74 {
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.75 {
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.76 {
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.77 {
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.78 {
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.79 {
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.80 {
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.81 {
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.82 {
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.83 {
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.84 {
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.85 {
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.86 {
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.87 {
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.88 {
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.89 {
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.90 {
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.91 {
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.92 {
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.93 {
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.94 {
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.95 {
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.96 {
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.97 {
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.98 {
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.99 {
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.100 {
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.101 {
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.102 {
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.103 {
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.104 {
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.105 {
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.106 {
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.107 {
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.108 {
iface PCM
name 'Level Meter'
value.0 3313
value.1 3418
value.2 0
value.3 0
value.4 3362
value.5 3450
value.6 1876
value.7 0
value.8 0
value.9 0
value.10 3313
value.11 3418
value.12 0
value.13 0
value.14 0
value.15 0
value.16 1876
value.17 0
value.18 1876
value.19 0
value.20 0
value.21 0
value.22 3362
value.23 3450
comment {
access 'read volatile'
type INTEGER
count 24
range '0 - 4095 (step 1)'
}
}
control.109 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
control.110 {
iface CARD
name 'Power Status Card Enum'
value Fail
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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Scarlett Gen 4 Solo.state 0000664 0000000 0000000 00000033514 14765517032 0026301 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
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Vocaster One.state 0000664 0000000 0000000 00000073077 14765517032 0025305 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
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
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 'MSD Mode Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Line In 1 DSP Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface CARD
name 'Line In 1 Compressor Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface CARD
name 'Line In 1 Compressor Threshold'
value -22
comment {
access 'read write'
type INTEGER
count 1
range '-40 - 0 (step 1)'
}
}
control.10 {
iface CARD
name 'Line In 1 Compressor Ratio'
value 8
comment {
access 'read write'
type INTEGER
count 1
range '2 - 100 (step 1)'
}
}
control.11 {
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.12 {
iface CARD
name 'Line In 1 Compressor Attack'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 255 (step 1)'
}
}
control.13 {
iface CARD
name 'Line In 1 Compressor Release'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 255 (step 1)'
}
}
control.14 {
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.15 {
iface CARD
name 'Line In 1 Pre-Comp Filter Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface CARD
name 'Line In 1 PEQ Filter Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
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.18 {
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.19 {
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.20 {
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.21 {
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.22 {
iface MIXER
name 'Line In 1 Mute Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface MIXER
name 'Line In 1 Gain Capture Volume'
value 0
comment {
access 'read write'
type INTEGER
count 1
range '0 - 70 (step 1)'
dbmin 0
dbmax 7000
dbvalue.0 0
}
}
control.25 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.26 {
iface MIXER
name 'Line In 1 Autogain Status Capture Enum'
value FailClipped
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.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 '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.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 '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.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 '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 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.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 '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 '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.33 {
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.34 {
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.35 {
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.36 {
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.37 {
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.38 {
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.39 {
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.40 {
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.41 {
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.42 {
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.43 {
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.44 {
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.45 {
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.46 {
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.47 {
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.48 {
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.49 {
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.50 {
iface MIXER
name 'Mix A Input 01 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.51 {
iface MIXER
name 'Mix A Input 02 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.52 {
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.53 {
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.54 {
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.55 {
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.56 {
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.57 {
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.58 {
iface MIXER
name 'Mix B Input 01 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.59 {
iface MIXER
name 'Mix B Input 02 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.60 {
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.61 {
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.62 {
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.63 {
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.64 {
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.65 {
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.66 {
iface MIXER
name 'Mix C Input 01 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.67 {
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.68 {
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.69 {
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.70 {
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.71 {
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.72 {
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.73 {
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.74 {
iface MIXER
name 'Mix D Input 01 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.75 {
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.76 {
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.77 {
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.78 {
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.79 {
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.80 {
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.81 {
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.82 {
iface MIXER
name 'Mix E Input 01 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.83 {
iface MIXER
name 'Mix E Input 02 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.84 {
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.85 {
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.86 {
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.87 {
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.88 {
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.89 {
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.90 {
iface MIXER
name 'Mix F Input 01 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.91 {
iface MIXER
name 'Mix F Input 02 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.92 {
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.93 {
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.94 {
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.95 {
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.96 {
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.97 {
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.98 {
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.99 {
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.100 {
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.101 {
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.102 {
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.103 {
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.104 {
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.105 {
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.106 {
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.107 {
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.108 {
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.109 {
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.110 {
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.111 {
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.112 {
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.113 {
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.114 {
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.115 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/demo/Vocaster Two.state 0000664 0000000 0000000 00000157647 14765517032 0025343 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
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
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 'MSD Mode Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.7 {
iface MIXER
name 'Line In 1 DSP Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.8 {
iface CARD
name 'Line In 1 Compressor Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.9 {
iface CARD
name 'Line In 1 Compressor Threshold'
value -22
comment {
access 'read write'
type INTEGER
count 1
range '-40 - 0 (step 1)'
}
}
control.10 {
iface CARD
name 'Line In 1 Compressor Ratio'
value 8
comment {
access 'read write'
type INTEGER
count 1
range '2 - 100 (step 1)'
}
}
control.11 {
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.12 {
iface CARD
name 'Line In 1 Compressor Attack'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 255 (step 1)'
}
}
control.13 {
iface CARD
name 'Line In 1 Compressor Release'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 255 (step 1)'
}
}
control.14 {
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.15 {
iface CARD
name 'Line In 1 Pre-Comp Filter Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.16 {
iface CARD
name 'Line In 1 PEQ Filter Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.17 {
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.18 {
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.19 {
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.20 {
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.21 {
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.22 {
iface MIXER
name 'Line In 2 DSP Capture Switch'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.23 {
iface CARD
name 'Line In 2 Compressor Enable'
value true
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.24 {
iface CARD
name 'Line In 2 Compressor Threshold'
value -22
comment {
access 'read write'
type INTEGER
count 1
range '-40 - 0 (step 1)'
}
}
control.25 {
iface CARD
name 'Line In 2 Compressor Ratio'
value 8
comment {
access 'read write'
type INTEGER
count 1
range '2 - 100 (step 1)'
}
}
control.26 {
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.27 {
iface CARD
name 'Line In 2 Compressor Attack'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 255 (step 1)'
}
}
control.28 {
iface CARD
name 'Line In 2 Compressor Release'
value 30
comment {
access 'read write'
type INTEGER
count 1
range '30 - 255 (step 1)'
}
}
control.29 {
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.30 {
iface CARD
name 'Line In 2 Pre-Comp Filter Enable'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.31 {
iface CARD
name 'Line In 2 PEQ Filter Enable'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.32 {
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.33 {
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.34 {
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.35 {
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.36 {
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.37 {
iface MIXER
name 'Line In 1 Mute Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.38 {
iface MIXER
name 'Line In 2 Mute Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.39 {
iface MIXER
name 'Line In 1 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.40 {
iface MIXER
name 'Line In 2 Phantom Power Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.41 {
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.42 {
iface MIXER
name 'Line In 1 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.43 {
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.44 {
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.45 {
iface MIXER
name 'Line In 2 Autogain Capture Switch'
value false
comment {
access 'read write'
type BOOLEAN
count 1
}
}
control.46 {
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.47 {
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.48 {
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.49 {
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.50 {
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.51 {
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.52 {
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.53 {
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.54 {
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.55 {
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.56 {
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.57 {
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.58 {
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.59 {
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.60 {
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.61 {
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.62 {
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.63 {
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.64 {
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.65 {
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.66 {
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.67 {
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.68 {
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.69 {
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.70 {
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.71 {
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.72 {
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.73 {
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.74 {
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.75 {
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.76 {
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.77 {
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.78 {
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.79 {
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.80 {
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.81 {
iface MIXER
name 'Mix A Input 01 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.82 {
iface MIXER
name 'Mix A Input 02 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.83 {
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.84 {
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.85 {
iface MIXER
name 'Mix A Input 05 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -1900
}
}
control.86 {
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.87 {
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.88 {
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.89 {
iface MIXER
name 'Mix A 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.90 {
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.91 {
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.92 {
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.93 {
iface MIXER
name 'Mix B Input 01 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.94 {
iface MIXER
name 'Mix B Input 02 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.95 {
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.96 {
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.97 {
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.98 {
iface MIXER
name 'Mix B Input 06 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -1900
}
}
control.99 {
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.100 {
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.101 {
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.102 {
iface MIXER
name 'Mix B 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.103 {
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.104 {
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.105 {
iface MIXER
name 'Mix C Input 01 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.106 {
iface MIXER
name 'Mix C Input 02 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.107 {
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.108 {
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.109 {
iface MIXER
name 'Mix C Input 05 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -1900
}
}
control.110 {
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.111 {
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.112 {
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.113 {
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.114 {
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.115 {
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.116 {
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.117 {
iface MIXER
name 'Mix D Input 01 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.118 {
iface MIXER
name 'Mix D Input 02 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.119 {
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.120 {
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.121 {
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.122 {
iface MIXER
name 'Mix D Input 06 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -1900
}
}
control.123 {
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.124 {
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.125 {
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.126 {
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.127 {
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.128 {
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.129 {
iface MIXER
name 'Mix E Input 01 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.130 {
iface MIXER
name 'Mix E Input 02 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.131 {
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.132 {
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.133 {
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.134 {
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.135 {
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.136 {
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.137 {
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.138 {
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.139 {
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.140 {
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.141 {
iface MIXER
name 'Mix F Input 01 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.142 {
iface MIXER
name 'Mix F Input 02 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.143 {
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.144 {
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.145 {
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.146 {
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.147 {
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.148 {
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.149 {
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.150 {
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.151 {
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.152 {
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.153 {
iface MIXER
name 'Mix G Input 01 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.154 {
iface MIXER
name 'Mix G Input 02 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.155 {
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.156 {
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.157 {
iface MIXER
name 'Mix G Input 05 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -1900
}
}
control.158 {
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.159 {
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.160 {
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.161 {
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.162 {
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.163 {
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.164 {
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.165 {
iface MIXER
name 'Mix H Input 01 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.166 {
iface MIXER
name 'Mix H Input 02 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.167 {
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.168 {
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.169 {
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.170 {
iface MIXER
name 'Mix H Input 06 Playback Volume'
value 122
comment {
access 'read write'
type INTEGER
count 1
range '0 - 172 (step 1)'
dbmin -8000
dbmax 600
dbvalue.0 -1900
}
}
control.171 {
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.172 {
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.173 {
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.174 {
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.175 {
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.176 {
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.177 {
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.178 {
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.179 {
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.180 {
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.181 {
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.182 {
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.183 {
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.184 {
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.185 {
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.186 {
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.187 {
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.188 {
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.189 {
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.190 {
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.191 {
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.192 {
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.193 {
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.194 {
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.195 {
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.196 {
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.197 {
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.198 {
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.199 {
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.200 {
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.201 {
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.202 {
iface MIXER
name 'Sync Status'
value Locked
comment {
access read
type ENUMERATED
count 1
item.0 Unlocked
item.1 Locked
}
}
}
geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/ 0000775 0000000 0000000 00000000000 14765517032 0021741 5 ustar 00root root 0000000 0000000 geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/INSTALL.md 0000664 0000000 0000000 00000011674 14765517032 0023402 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel Installation
## 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, you can get the latest driver from here and build it for
your current kernel if it’s not too old (the Scarlett2 and FCP drivers
are both maintained in the same tree here):
https://github.com/geoffreybennett/linux-fcp/releases
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!).
### 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 is currently
only possible through the CLI `fcp-tool` utility available in the
[fcp-support](https://github.com/geoffreybennett/fcp-support). You
need to install this package and update the firmware before
alsa-scarlett-gui will work.
## Building and Running
On Fedora, these packages need to be installed:
```
sudo dnf -y install 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
```
geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/OLDKERNEL.md 0000664 0000000 0000000 00000005343 14765517032 0023607 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
```
geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/USAGE.md 0000664 0000000 0000000 00000012072 14765517032 0023131 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.

The update will take about 15 seconds, and then your interface will
restart, showing the main window.
### 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/share/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 and File → Save Configuration menu options.
Internally, this uses `alsactl`:
- **Load**: `alsactl restore USB -f `
- **Save**: `alsactl store USB -f `
The saved state files can be used to simulate an interface if you
don’t have one attached. The `demo` directory in the distribution
contains a sample file for every supported model.
### Interface Simulation Mode
The GUI can load an `alsactl` state file saved from a real interface
and display a GUI as if the corresponding interface was connected.
This is useful if you don’t have an interface connected and want to
try, develop, or debug the GUI.
Either specify the `.state` filename on the command line or select the
menu option File → Interface Simulation to load.
## Interface Controls
The controls and menu items which are available vary widely, depending
on your specific interface.
There are five 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 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 output controls.
- [Scarlett Big 4th Gen](iface-4th-gen-big.md)
Full routing and mixing capabilities, remote-controlled input gain
and output volume controls.
## Known Bugs/Issues
- For interfaces using the FCP driver, alsa-scarlett-gui needs to be
started after the interface is connected and fcp-server has started.
- Load/Save uses `alsactl` which will be confused if the ALSA
interface name (e.g. `USB`) changes.
- Load/Save is not implemented for simulated interfaces.
- The read-only status of controls in interface simulation mode does
not change when the HW/SW button is clicked.
- When there’s more than one main window open, closing one of them
doesn’t free and close everything related to that card.
- There is no facility to group channels into stereo pairs (needs
kernel support to save this information in the interface).
- There is no facility to give channels custom names (needs kernel
support to save this information in the interface).
geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/iface-1st-gen.md 0000664 0000000 0000000 00000012752 14765517032 0024615 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.
geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/iface-4th-gen-big.md 0000664 0000000 0000000 00000015456 14765517032 0025350 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 a new “FCP” (Focusrite
Control Protocol) driver introduced in Linux 6.14. If you haven’t
installed
[fcp-support](https://github.com/geoffreybennett/fcp-support) yet, you
need to do that (and update the firmware) before you can use
alsa-scarlett-gui.
## 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 only)
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
Speaker Switching lets you swap between two pairs of monitoring
speakers very easily.
### 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.
#### 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 synthesizer, 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
condensor microphones), and damaging to some microphones (particularly
vintage ribbon microphones).
### Analogue Output Controls
The analogue output controls are a bit sparse. More controls are
coming soon.
#### Volume Knobs
The volume knobs control the volume of the analogue outputs. The two
channels of the stereo pairs are shown separately, but are internally
linked together.
#### Mute and Dim
The speaker icon buttons are “mute” and “dim” (reduce volume) buttons,
corresponding to the front-panel buttons on the interface (although
only the 18i20 has a physical dim button).
## Routing and Mixing
The routing window allows (almost) complete control of signal routing
between the hardware inputs/outputs, internal mixer, and PCM (USB)
inputs/outputs.
The routing and mixing capabilities of the big 4th Gen interfaces are
the same in concept as the older interfaces, but the mixer inputs are
fixed and not shown in the routing window as there are too many to
sensibly display.
From the main window, open the Routing window with the View → Routing
menu option or pressing 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, 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 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.
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.
To adjust the mixer output levels:
1) Open the mixer window with the main window View → Mixer menu
option, or press Ctrl-M.
2) Mixer levels can be adjusted with your keyboard or mouse in the
same way as the [Gain Controls](#gain).
## 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
the View → Levels menu option or pressing Ctrl-L.

Look at this in conjunction with the routing window to understand
which meter corresponds to which source or sink.
Thanks for reading this far! If you appreciate the hundreds of hours
of work that went into the kernel driver, the control panel, and this
documentation, please consider supporting the author with a
[donation](../README.md#donations).
geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/iface-4th-gen-small.md 0000664 0000000 0000000 00000031277 14765517032 0025716 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 interfaces or
the 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 synthesizer, 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
condensor 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.
#### 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 and Mixing
The routing and mixing 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 the View → Routing
menu option or pressing 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 “Presets” are generally not useful with the 4th Gen interfaces
as they are designed for the 2nd and 3rd Gen interfaces. If you try
these out, you’ll probably want to reset back to the factory
defaults afterwards.
- 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.
To adjust the mixer output levels:
1) Open the mixer window with the main window View → Mixer menu
option, or press Ctrl-M.
2) Mixer levels can be adjusted with your keyboard or mouse in the
same way as the [Gain Controls](#gain).
### 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 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.
## 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 by selecting the View → Levels menu option or pressing
Ctrl-L.

Look at this in conjunction with the routing window to understand
which meter corresponds to which source or sink.
Thanks for reading this far! If you appreciate the hundreds of hours
of work that went into the kernel driver, the control panel, and this
documentation, please consider supporting the author with a
[donation](../README.md#donations).
geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/iface-large.md 0000664 0000000 0000000 00000026370 14765517032 0024432 0 ustar 00root root 0000000 0000000 # ALSA Scarlett Control Panel
## Large Scarlett 2nd and 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 option lets you open three other windows which
contain additional 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 only)
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 only)
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 synthesizer, 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
condensor 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 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.

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:

### 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
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.
## Levels
The Levels window shows the current levels of the hardware outputs, the
mixer inputs, and the PCM inputs.

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.

### 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/share/firmware/scarlett2`
directory, then an option to update the firmware will be available
here.
geoffreybennett-alsa-scarlett-gui-e6fbb4f/docs/iface-small.md 0000664 0000000 0000000 00000003361 14765517032 0024443 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.
geoffreybennett-alsa-scarlett-gui-e6fbb4f/img/ 0000775 0000000 0000000 00000000000 14765517032 0021565 5 ustar 00root root 0000000 0000000 geoffreybennett-alsa-scarlett-gui-e6fbb4f/img/alsa-scarlett-gui.png 0000664 0000000 0000000 00000135316 14765517032 0025625 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