kodi: update to kodi-14-19893f8

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-11-15 12:56:57 +01:00
parent 669021932b
commit e290fc492a
3 changed files with 2 additions and 24 deletions

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="kodi-theme-Confluence"
PKG_VERSION="14-050ba05"
PKG_VERSION="14-19893f8"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="kodi"
PKG_VERSION="14-050ba05"
PKG_VERSION="14-19893f8"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -1,22 +0,0 @@
From 3ec5e532f374344e18decc72818e4225296e35c4 Mon Sep 17 00:00:00 2001
From: Rainer Hochecker <fernetmenta@online.de>
Date: Thu, 13 Nov 2014 11:56:31 +0100
Subject: [PATCH] AE: always request float from sink when in fixed mode, fixes
unwanted re-init of sink
---
xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
index 0e4d8da..70327db 100644
--- a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
+++ b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
@@ -1508,6 +1508,7 @@ void CActiveAE::ApplySettingsToFormat(AEAudioFormat &format, AudioSettings &sett
if (m_settings.config == AE_CONFIG_FIXED)
{
format.m_sampleRate = m_settings.samplerate;
+ format.m_dataFormat = AE_FMT_FLOAT;
CLog::Log(LOGINFO, "CActiveAE::ApplySettings - Forcing samplerate to %d", format.m_sampleRate);
}