From 5f73d029b9e32ff36d0d44793ee072e7c6b4e888 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sun, 18 Jan 2015 11:06:09 -0200 Subject: rename xbmc to kodi, remove xbmc-lts --- ...-don-t-try-to-stick-a-value-255-in-a-byte.patch | 41 ---------------------- 1 file changed, 41 deletions(-) delete mode 100644 libre/xbmc/0001-CEC-fixed-don-t-try-to-stick-a-value-255-in-a-byte.patch (limited to 'libre/xbmc/0001-CEC-fixed-don-t-try-to-stick-a-value-255-in-a-byte.patch') diff --git a/libre/xbmc/0001-CEC-fixed-don-t-try-to-stick-a-value-255-in-a-byte.patch b/libre/xbmc/0001-CEC-fixed-don-t-try-to-stick-a-value-255-in-a-byte.patch deleted file mode 100644 index f2fc11b85..000000000 --- a/libre/xbmc/0001-CEC-fixed-don-t-try-to-stick-a-value-255-in-a-byte.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 4037c9fd07fbec1873549e71e0b1c2833a5a87db Mon Sep 17 00:00:00 2001 -From: Lars Op den Kamp -Date: Mon, 27 Oct 2014 14:42:30 +0100 -Subject: [PATCH 1/8] [CEC] fixed: don't try to stick a value > 255 in a byte - ---- - system/peripherals.xml | 2 +- - xbmc/peripherals/devices/PeripheralCecAdapter.cpp | 4 ++-- - 2 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/system/peripherals.xml b/system/peripherals.xml -index 57af5d1..5fcff7c 100644 ---- a/system/peripherals.xml -+++ b/system/peripherals.xml -@@ -30,7 +30,7 @@ - - - -- -+ - - - -diff --git a/xbmc/peripherals/devices/PeripheralCecAdapter.cpp b/xbmc/peripherals/devices/PeripheralCecAdapter.cpp -index 9907ba2..1d068dc 100644 ---- a/xbmc/peripherals/devices/PeripheralCecAdapter.cpp -+++ b/xbmc/peripherals/devices/PeripheralCecAdapter.cpp -@@ -1347,8 +1347,8 @@ void CPeripheralCecAdapter::SetConfigurationFromSettings(void) - m_configuration.bPowerOffOnStandby = iStandbyAction == 13011 ? 1 : 0; - m_configuration.bShutdownOnStandby = iStandbyAction == 13005 ? 1 : 0; - -- // double tap prevention timeout in ms -- m_configuration.iDoubleTapTimeoutMs = GetSettingInt("double_tap_timeout_ms"); -+ // double tap prevention timeout in ms. libCEC uses 50ms units for this in 2.2.0, so divide by 50 -+ m_configuration.iDoubleTapTimeoutMs = GetSettingInt("double_tap_timeout_ms") / 50; - } - - void CPeripheralCecAdapter::ReadLogicalAddresses(const CStdString &strString, cec_logical_addresses &addresses) --- -2.1.2 - -- cgit v1.2.3-2-g168b