aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-01-28 09:16:40 -0800
committerScott Jackson <daneren2005@gmail.com>2015-01-28 09:16:40 -0800
commitfb19d0cc5a1191c005eccc36e5c075da5c4384b6 (patch)
tree04335bc036de90320d57c561bcf5f27683200530 /src
parent797d0fd2816a73a36c8e5851191a3b8530a866ac (diff)
downloaddsub-fb19d0cc5a1191c005eccc36e5c075da5c4384b6.tar.gz
dsub-fb19d0cc5a1191c005eccc36e5c075da5c4384b6.tar.bz2
dsub-fb19d0cc5a1191c005eccc36e5c075da5c4384b6.zip
Fix for licecycle setting setup to true while mediaPlayer is preparing still
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java b/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java
index e93fb88d..3a9c697f 100644
--- a/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java
+++ b/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java
@@ -43,6 +43,8 @@ import github.daneren2005.dsub.util.Constants;
import github.daneren2005.dsub.util.FileUtil;
import github.daneren2005.dsub.util.Util;
+import static github.daneren2005.dsub.domain.PlayerState.PREPARING;
+
/**
* @author Sindre Mehus
*/
@@ -107,6 +109,12 @@ public class DownloadServiceLifecycleSupport {
try {
lock.lock();
deserializeDownloadQueueNow();
+
+ // Wait until PREPARING is done to mark lifecycle as ready to receive events
+ while(downloadService.getPlayerState() == PREPARING) {
+ Util.sleepQuietly(50L);
+ }
+
setup.set(true);
} finally {
lock.unlock();