diff options
author | phintuka <phintuka> | 2007-01-06 04:31:21 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-01-06 04:31:21 +0000 |
commit | 13f4c35bde179aa81a5bcdf870001d6328fe8610 (patch) | |
tree | 7cc3ef7643596334536c1e17e2b49812bb82898b /frontend.c | |
parent | f3007128f9a0da8bcc802928ba36b4d294d996e2 (diff) | |
download | xineliboutput-13f4c35bde179aa81a5bcdf870001d6328fe8610.tar.gz xineliboutput-13f4c35bde179aa81a5bcdf870001d6328fe8610.tar.bz2 |
Start in live mode
Diffstat (limited to 'frontend.c')
-rw-r--r-- | frontend.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend.c,v 1.26 2007-01-01 08:37:47 phintuka Exp $ + * $Id: frontend.c,v 1.27 2007-01-06 04:31:21 phintuka Exp $ * */ @@ -180,7 +180,7 @@ cXinelibThread::cXinelibThread(const char *Description) : cThread(Description) m_bReady = false; m_bIsFinished = false; m_bNoVideo = true; - m_bLiveMode = false; + m_bLiveMode = true; /* can't be replaying when there is no output device */ m_StreamPos = 0; m_Frames = 0; m_bEndOfStreamReached = false; @@ -276,14 +276,12 @@ void cXinelibThread::SetLiveMode(bool LiveModeOn) Unlock(); Xine_Control("LIVE", m_bLiveMode ? 1 : 0); - Xine_Sync(); } void cXinelibThread::SetStillMode(bool StillModeOn) { TRACEF("cXinelibThread::SetStillMode"); Xine_Control("STILL", StillModeOn ? 1 : 0); - Xine_Sync(); } void cXinelibThread::SetNoVideo(bool bVal) |