diff options
author | phintuka <phintuka> | 2009-08-18 12:53:42 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-08-18 12:53:42 +0000 |
commit | 262f89a730b40f058a3f8accb62ba3e906411f4c (patch) | |
tree | 17471f66fe9dabf5c145ac0a1723e72767789a23 | |
parent | deaafe6d159aefa45a03e4fdc706b64b4b7f5bc7 (diff) | |
download | xineliboutput-262f89a730b40f058a3f8accb62ba3e906411f4c.tar.gz xineliboutput-262f89a730b40f058a3f8accb62ba3e906411f4c.tar.bz2 |
Removed IsFinished()
-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; |