summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2009-08-18 12:53:42 +0000
committerphintuka <phintuka>2009-08-18 12:53:42 +0000
commit262f89a730b40f058a3f8accb62ba3e906411f4c (patch)
tree17471f66fe9dabf5c145ac0a1723e72767789a23
parentdeaafe6d159aefa45a03e4fdc706b64b4b7f5bc7 (diff)
downloadxineliboutput-262f89a730b40f058a3f8accb62ba3e906411f4c.tar.gz
xineliboutput-262f89a730b40f058a3f8accb62ba3e906411f4c.tar.bz2
Removed IsFinished()
-rw-r--r--frontend.c8
-rw-r--r--frontend.h4
2 files changed, 2 insertions, 10 deletions
diff --git a/frontend.c b/frontend.c
index a00456ba..332c20c0 100644
--- a/frontend.c
+++ b/frontend.c
@@ -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
//
diff --git a/frontend.h b/frontend.h
index 02496d94..f7ae9804 100644
--- a/frontend.h
+++ b/frontend.h
@@ -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;