From ec217a1a71e34fdbb4cd6a82e38f60063dcf7653 Mon Sep 17 00:00:00 2001 From: mark Date: Thu, 30 Nov 2006 10:34:55 +0000 Subject: [PATCH] Added an audioplayer preload call in the initialization, which hopefully speeds things up. Also increased init-time to 10 seconds. Refer to #2043 --- campcaster/src/products/scheduler/src/PlaylistEvent.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/campcaster/src/products/scheduler/src/PlaylistEvent.cxx b/campcaster/src/products/scheduler/src/PlaylistEvent.cxx index de255bcc5..43320fb40 100644 --- a/campcaster/src/products/scheduler/src/PlaylistEvent.cxx +++ b/campcaster/src/products/scheduler/src/PlaylistEvent.cxx @@ -41,6 +41,7 @@ #include + #include "LiveSupport/Core/TimeConversion.h" #include "LiveSupport/Core/SessionId.h" @@ -80,7 +81,7 @@ PlaylistEvent :: PlaylistEvent( this->scheduleEntry = scheduleEntry; // this init time is a wild guess, say 5 seconds should be enough - initTime.reset(new posix_time::time_duration(0, 0, 5, 0)); + initTime.reset(new posix_time::time_duration(0, 0, 10, 0)); state = created; } @@ -109,6 +110,8 @@ std::cerr << "PlaylistEvent :: initialize acquired playlist\n"; errorMessage += e.what(); throw std::logic_error(errorMessage); } + + audioPlayer->preload(*playlist->getUri()); state = initialized; }