mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-02 09:01:48 -05:00
hdspmixer: Add RME HDSPe AES and AES32 support.
Code provided by Fredrik Lingvall <fredrik.lingvall@gmail.com> It seems the PCIe (AES) and PCI (AES32) versions behave the same, so we can kill two birds with one stone. Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
cef20c040c
commit
69991756aa
6 changed files with 52 additions and 0 deletions
|
|
@ -77,6 +77,10 @@ int main(int argc, char **argv)
|
|||
printf("RME MADI found!\n");
|
||||
hdsp_cards[cards] = new HDSPMixerCard(HDSPeMADI, card);
|
||||
cards++;
|
||||
} else if (!strncmp(name, "RME AES32", 8)) {
|
||||
printf("RME AES32 or HDSPe AES found!\n");
|
||||
hdsp_cards[cards] = new HDSPMixerCard(HDSP_AES, card);
|
||||
cards++;
|
||||
} else if (!strncmp(name, "RME RayDAT", 10)) {
|
||||
printf("RME RayDAT found!\n");
|
||||
hdsp_cards[cards] = new HDSPMixerCard(HDSPeRayDAT, card);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue