From 1459cb92701d4db3cde0efc39130968cd5586dee Mon Sep 17 00:00:00 2001 From: Memphiz <memphis@machzwo.de> Date: Sun, 29 Jun 2014 21:37:19 +0200 Subject: Merge pull request #4955 from Memphiz/osxfixoptical2 [AE/osxsink] - fix optical usb devices with > 2 channels --- xbmc/cores/AudioEngine/Sinks/AESinkDARWINOSX.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xbmc/cores/AudioEngine/Sinks/AESinkDARWINOSX.cpp b/xbmc/cores/AudioEngine/Sinks/AESinkDARWINOSX.cpp index 030f8f2260..d3903687f4 100644 --- a/xbmc/cores/AudioEngine/Sinks/AESinkDARWINOSX.cpp +++ b/xbmc/cores/AudioEngine/Sinks/AESinkDARWINOSX.cpp @@ -438,6 +438,10 @@ static void EnumerateDevices(CADeviceList &list) } else// treat all other digital passthrough devices as optical device.m_deviceType = AE_DEVTYPE_IEC958; + + //treat all other digital devices as HDMI to let options open to the user + if (device.m_deviceType == AE_DEVTYPE_PCM) + device.m_deviceType = AE_DEVTYPE_HDMI; } // devicename based overwrites from former code - maybe FIXME at some point when we -- cgit v1.2.3