diff options
| -rw-r--r-- | device.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: device.h,v 1.57 2010-03-15 12:26:53 phintuka Exp $ + * $Id: device.h,v 1.58 2010-03-15 12:50:29 phintuka Exp $ * */ @@ -245,12 +245,13 @@ class cXinelibDevice : public cDevice virtual void StillPicture(const uchar *Data, int Length); + // MPEG-PES virtual int PlayVideo(const uchar *Data, int Length); virtual int PlayAudio(const uchar *Data, int Length, uchar Id); virtual int PlaySubtitle(const uchar *Data, int Length); #if VDRVERSNUM >= 10701 - /* join multiple TS packets to xineliboutput transport packet */ + // join multiple TS packets to xineliboutput transport packet cMutex m_TsBufLock; uint8_t m_TsBuf[4096]; uint m_TsBufSize; @@ -260,6 +261,7 @@ class cXinelibDevice : public cDevice int PlayTsAny(const uchar *Data, int Length); + // MPEG-TS virtual int PlayTsVideo(const uchar *Data, int Length); virtual int PlayTsAudio(const uchar *Data, int Length); virtual int PlayTsSubtitle(const uchar *Data, int Length); |
