diff options
-rw-r--r-- | frontend.c | 8 | ||||
-rw-r--r-- | frontend.h | 4 |
2 files changed, 2 insertions, 10 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.71 2009-08-18 12:43:37 phintuka Exp $ + * $Id: frontend.c,v 1.72 2009-08-18 12:53:42 phintuka Exp $ * */ @@ -249,12 +249,6 @@ bool cXinelibThread::IsReady(void) return m_bReady; } -bool cXinelibThread::IsFinished(void) -{ - LOCK_THREAD; - return m_bIsFinished; -} - // // Playback control // @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend.h,v 1.30 2009-08-18 12:43:37 phintuka Exp $ + * $Id: frontend.h,v 1.31 2009-08-18 12:53:42 phintuka Exp $ * */ @@ -34,7 +34,6 @@ class cXinelibThread : public cThread, public cListObject public: bool IsReady(void); - bool IsFinished(void); // // Playback control @@ -130,7 +129,6 @@ class cXinelibThread : public cThread, public cListObject protected: bool m_bReady; - bool m_bIsFinished; bool m_bNoVideo; bool m_bLiveMode; bool m_bEndOfStreamReached; |