xbmc: update to xbmc-14-501ad2d

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-09-29 03:19:53 +02:00
parent a1d0799fb0
commit 2ec4afad4c
3 changed files with 2 additions and 27 deletions

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="xbmc-theme-Confluence"
PKG_VERSION="14-021933e"
PKG_VERSION="14-501ad2d"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="xbmc"
PKG_VERSION="14-021933e"
PKG_VERSION="14-501ad2d"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -2408,28 +2408,3 @@ index f5f4654..5de26a4 100644
Sleep(10);
continue;
}
From 081329cae7472154ac2e9db70bb067eda81f0c06 Mon Sep 17 00:00:00 2001
From: Rainer Hochecker <fernetmenta@online.de>
Date: Sun, 21 Sep 2014 15:48:25 +0200
Subject: [PATCH 24/24] AE: only send resample ratio if it was changed
---
xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp
index b536f22..fec0313 100644
--- a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp
+++ b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp
@@ -437,8 +437,9 @@ double CActiveAEStream::GetResampleRatio()
bool CActiveAEStream::SetResampleRatio(double ratio)
{
+ if (ratio != m_streamResampleRatio)
+ AE.SetStreamResampleRatio(this, ratio);
m_streamResampleRatio = ratio;
- AE.SetStreamResampleRatio(this, m_streamResampleRatio);
return true;
}