diff options
author | phintuka <phintuka> | 2007-01-27 14:15:25 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-01-27 14:15:25 +0000 |
commit | e81b18c632099c84e861494dbdc8abc8be2ad85a (patch) | |
tree | d69654c0337679d4f4e0a677ab03ecb7489363e1 | |
parent | 47974d192c66cce8350697dadbd3d81f791b40e7 (diff) | |
download | xineliboutput-e81b18c632099c84e861494dbdc8abc8be2ad85a.tar.gz xineliboutput-e81b18c632099c84e861494dbdc8abc8be2ad85a.tar.bz2 |
Allow queuing data during setup
-rw-r--r-- | frontend_local.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend_local.c b/frontend_local.c index 83996913..8c3f1c26 100644 --- a/frontend_local.c +++ b/frontend_local.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_local.c,v 1.18 2007-01-26 16:48:42 phintuka Exp $ + * $Id: frontend_local.c,v 1.19 2007-01-27 14:15:25 phintuka Exp $ * */ @@ -95,7 +95,7 @@ int cXinelibLocal::Play_PES(const uchar *data, int len) { LOCK_FE; - if(fe && m_bReady) { + if(fe && !m_bStopThread) { int done = fe->xine_queue_pes_packet(fe, (char*)data, len); if(done>0) { Lock(); |