diff options
author | phintuka <phintuka> | 2010-03-13 12:11:51 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-03-13 12:11:51 +0000 |
commit | 855829ab2c808eaeecfb8ba51138b6bf35ccadf3 (patch) | |
tree | 64d4af7c5a4d072f80521773bee2002c3c22fbf3 | |
parent | 42f49b66a1e8a5218dac82d337887d558edb56dc (diff) | |
download | xineliboutput-855829ab2c808eaeecfb8ba51138b6bf35ccadf3.tar.gz xineliboutput-855829ab2c808eaeecfb8ba51138b6bf35ccadf3.tar.bz2 |
Play(): Pass StreamId to xine input plugin
-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 973d0d50..62e57913 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.46 2010-03-13 12:04:29 phintuka Exp $ + * $Id: frontend_local.c,v 1.47 2010-03-13 12:11:51 phintuka Exp $ * */ @@ -123,7 +123,7 @@ int cXinelibLocal::Play(const uchar *data, int len, eStreamId StreamId) { LOCK_FE; if (fe && Running()) { - int done = fe->xine_queue_pes_packet(fe, 0, m_StreamPos, (const char *)data, len); + int done = fe->xine_queue_pes_packet(fe, StreamId, m_StreamPos, (const char *)data, len); if (done >= 0) return cXinelibThread::Play(data, done, StreamId); } |