diff options
Diffstat (limited to 'frontend_local.c')
-rw-r--r-- | frontend_local.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend_local.c b/frontend_local.c index d48cc743..973d0d50 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.45 2010-03-13 12:00:05 phintuka Exp $ + * $Id: frontend_local.c,v 1.46 2010-03-13 12:04:29 phintuka Exp $ * */ @@ -116,16 +116,16 @@ cXinelibLocal::~cXinelibLocal() // Data transfer // -int cXinelibLocal::Play_PES(const uchar *data, int len) +int cXinelibLocal::Play(const uchar *data, int len, eStreamId StreamId) { - TRACEF("cXinelibLocal::Play_PES"); + TRACEF("cXinelibLocal::Play"); { LOCK_FE; if (fe && Running()) { int done = fe->xine_queue_pes_packet(fe, 0, m_StreamPos, (const char *)data, len); if (done >= 0) - return cXinelibThread::Play_PES(data, len); + return cXinelibThread::Play(data, done, StreamId); } } |