From 863c47cebe7c341d4034669d5793ce92a875ad13 Mon Sep 17 00:00:00 2001 From: Adrian Knoth Date: Tue, 1 Mar 2011 10:42:27 +0100 Subject: [PATCH] hdspmixer: Fix labels on H9652 The H9652 uses the same layout as the Digiface, except Digiface features an additional headphones out. That's why the channel mappings are the same, but Digiface has mexdest=14 while H9652 has maxdest=13 (12 ADAT pairs, another pair for S/PDIF and headphone-L/R on Digiface) Signed-off-by: Adrian Knoth Signed-off-by: Takashi Iwai --- hdspmixer/src/HDSPMixerOutput.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hdspmixer/src/HDSPMixerOutput.cxx b/hdspmixer/src/HDSPMixerOutput.cxx index b0064c2..5047825 100644 --- a/hdspmixer/src/HDSPMixerOutput.cxx +++ b/hdspmixer/src/HDSPMixerOutput.cxx @@ -220,7 +220,7 @@ void HDSPMixerOutput::setLabels() return; }; - if (type == Digiface) { + if (type == Digiface || type == H9652) { if (sm) labels_input = labels_playback = labels_df_ds; else -- 2.47.1