aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <martijn@xbmc.org>2015-03-11 09:09:47 +0100
committerMartijn Kaijser <martijn@xbmc.org>2015-03-11 09:09:47 +0100
commit4d42836d0076ad08c3e33a639fa33a3154dcac88 (patch)
tree150bd4f41fcea6901edfd052ba23d037aeac58b0
parentca0fe2d350dd37cc507d0a9a11a2eccaecbdaf02 (diff)
parentfd9b6598765b0bff900ef9eae5d7dbbca69a5add (diff)
Merge pull request #6659 from fritsch/helix-aeincrease20
ActiveAE: Wait 60 seconds max for init
-rw-r--r--xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
index 6e9900f593..248a655627 100644
--- a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
+++ b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.cpp
@@ -2176,7 +2176,7 @@ bool CActiveAE::Initialize()
Message *reply;
if (m_controlPort.SendOutMessageSync(CActiveAEControlProtocol::INIT,
&reply,
- 10000))
+ 60000))
{
bool success = reply->signal == CActiveAEControlProtocol::ACC;
reply->Release();