mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-02 15:37:49 +00:00
kodi: update to 5633f59
This commit is contained in:
parent
3e13d8e722
commit
8332ddf8e9
@ -3,8 +3,8 @@
|
|||||||
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="kodi"
|
PKG_NAME="kodi"
|
||||||
PKG_VERSION="08b7599d63e063545e34a24bb17fc3738cd4dde7"
|
PKG_VERSION="5633f5940067d57bff1395aaf2dd3a8536d0e437"
|
||||||
PKG_SHA256="b673a0a0e0db95ead29387b3c1273e77de160b69ff39c18f040c142614314e6a"
|
PKG_SHA256="101cff307217ff275d9d0838e10afb6de862dd38dd82b4b0f4a1642822b3fc03"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="http://www.kodi.tv"
|
PKG_SITE="http://www.kodi.tv"
|
||||||
PKG_URL="https://github.com/xbmc/xbmc/archive/${PKG_VERSION}.tar.gz"
|
PKG_URL="https://github.com/xbmc/xbmc/archive/${PKG_VERSION}.tar.gz"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
--- kodi-rockchip_18.2rc1-Leia.orig/xbmc/peripherals/bus/virtual/PeripheralBusCEC.cpp 2019-05-12 07:24:23.921984777 +0200
|
--- a/xbmc/peripherals/bus/virtual/PeripheralBusCEC.cpp
|
||||||
+++ kodi-rockchip_18.2rc1-Leia/xbmc/peripherals/bus/virtual/PeripheralBusCEC.cpp 2019-05-12 07:03:41.221761552 +0200
|
+++ b/xbmc/peripherals/bus/virtual/PeripheralBusCEC.cpp
|
||||||
@@ -50,6 +50,10 @@
|
@@ -45,6 +45,10 @@ bool CPeripheralBusCEC::PerformDeviceSca
|
||||||
/** the Pi's adapter cannot be removed, no need to rescan */
|
case ADAPTERTYPE_P8_DAUGHTERBOARD:
|
||||||
m_bNeedsPolling = false;
|
result.m_mappedBusType = PERIPHERAL_BUS_USB;
|
||||||
break;
|
break;
|
||||||
+ case ADAPTERTYPE_LINUX:
|
+ case ADAPTERTYPE_LINUX:
|
||||||
+ /** the Linux adapter cannot be removed, no need to rescan */
|
+ /** the Linux adapter cannot be removed, no need to rescan */
|
||||||
|
@ -10,19 +10,20 @@ Subject: [PATCH] [PATCH] change pulseaudio default device name to Bluetooth
|
|||||||
|
|
||||||
--- a/xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp
|
--- a/xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp
|
||||||
+++ b/xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp
|
+++ b/xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp
|
||||||
@@ -481,13 +481,15 @@ static void SinkInfoRequestCallback(pa_c
|
@@ -489,7 +489,7 @@ static void SinkInfoRequestCallback(pa_c
|
||||||
CAEDeviceInfo defaultDevice;
|
CAEDeviceInfo defaultDevice;
|
||||||
defaultDevice.m_deviceName = std::string("Default");
|
defaultDevice.m_deviceName = std::string("Default");
|
||||||
defaultDevice.m_displayName = std::string("Default");
|
defaultDevice.m_displayName = std::string("Default");
|
||||||
- defaultDevice.m_displayNameExtra = std::string("Default Output Device (PULSEAUDIO)");
|
- defaultDevice.m_displayNameExtra = std::string("Default Output Device (PULSEAUDIO)");
|
||||||
+ defaultDevice.m_displayNameExtra = std::string("Bluetooth Audio (PULSEAUDIO)");
|
+ defaultDevice.m_displayNameExtra = std::string("Bluetooth Audio (PULSEAUDIO)");
|
||||||
defaultDevice.m_dataFormats.insert(defaultDevice.m_dataFormats.end(), defaultDataFormats, defaultDataFormats + ARRAY_SIZE(defaultDataFormats));
|
defaultDevice.m_dataFormats.insert(defaultDevice.m_dataFormats.end(),
|
||||||
|
defaultDataFormats.begin(), defaultDataFormats.end());
|
||||||
defaultDevice.m_channels = CAEChannelInfo(AE_CH_LAYOUT_2_0);
|
defaultDevice.m_channels = CAEChannelInfo(AE_CH_LAYOUT_2_0);
|
||||||
defaultDevice.m_sampleRates.assign(defaultSampleRates, defaultSampleRates + ARRAY_SIZE(defaultSampleRates));
|
@@ -497,6 +497,8 @@ static void SinkInfoRequestCallback(pa_c
|
||||||
defaultDevice.m_deviceType = AE_DEVTYPE_PCM;
|
defaultDevice.m_deviceType = AE_DEVTYPE_PCM;
|
||||||
defaultDevice.m_wantsIECPassthrough = true;
|
defaultDevice.m_wantsIECPassthrough = true;
|
||||||
sinkStruct->list->push_back(defaultDevice);
|
sinkStruct->list->push_back(defaultDevice);
|
||||||
+ // OE only wants the default device - so we are done here
|
+ // LE only wants the default device - so we are done here
|
||||||
+ return;
|
+ return;
|
||||||
}
|
}
|
||||||
if (i && i->name)
|
if (i && i->name)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user