aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_hdmi.c
diff options
context:
space:
mode:
authorAnssi Hannula <anssi.hannula@iki.fi>2013-10-04 19:25:38 -0400
committerTakashi Iwai <tiwai@suse.de>2013-10-07 06:46:00 -0400
commit56cac413dd6d43af8355f5d1f90a199b540f73fc (patch)
tree9c28952233f7edcd91d847ee803eee7c365ff72a /sound/pci/hda/patch_hdmi.c
parent05c79b772f0236b857abf8034d9b0af2ecae901c (diff)
ALSA: hda - hdmi: Fix reported channel map on common default layouts
hdmi_setup_fake_chmap() is supposed to set the reported channel map when the channel map is not specified by the user. However, the function indexes channel_allocations[] with a wrong value and extracts the wrong nibble from hdmi_channel_mapping[], causing wrong channel maps to be shown. Fix those issues. Tested on Intel HDMI to correctly generate various channel maps, for example 3,4,14,15,7,8,5,6 (instead of incorrect 3,4,8,7,5,6,14,0) for standard 7.1 channel audio. (Note that the side and rear channels are reported as RL/RR and RLC/RRC, respectively, as per the CEA-861 standard, instead of the more traditional SL/SR and RL/RR.) Note that this only fixes the layouts that only contain traditional 7.1 speakers (2.0, 2.1, 4.0, 5.1, 7.1, etc.). E.g. the rear center of 6.1 is still being shown wrongly due to an issue with from_cea_slot() which will be fixed in a later patch. Signed-off-by: Anssi Hannula <anssi.hannula@iki.fi> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_hdmi.c')
-rw-r--r--sound/pci/hda/patch_hdmi.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c
index 7ea0245fc6bd..dcc4c1cb0ab1 100644
--- a/sound/pci/hda/patch_hdmi.c
+++ b/sound/pci/hda/patch_hdmi.c
@@ -740,9 +740,10 @@ static int hdmi_manual_setup_channel_mapping(struct hda_codec *codec,
740static void hdmi_setup_fake_chmap(unsigned char *map, int ca) 740static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
741{ 741{
742 int i; 742 int i;
743 int ordered_ca = get_channel_allocation_order(ca);
743 for (i = 0; i < 8; i++) { 744 for (i = 0; i < 8; i++) {
744 if (i < channel_allocations[ca].channels) 745 if (i < channel_allocations[ordered_ca].channels)
745 map[i] = from_cea_slot((hdmi_channel_mapping[ca][i] >> 4) & 0x0f); 746 map[i] = from_cea_slot(hdmi_channel_mapping[ca][i] & 0x0f);
746 else 747 else
747 map[i] = 0; 748 map[i] = 0;
748 } 749 }