diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-08 09:03:10 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-08 09:03:10 +0200 |
commit | c792c552979366bf781c9d9c817487bdd2926189 (patch) | |
tree | 788131b78d8485c53f294eaa4ad0cb439ab91d63 /dvbdevice.h | |
parent | f24f820e7deb5a9cadfb56f72ad39cb313c87092 (diff) | |
download | vdr-c792c552979366bf781c9d9c817487bdd2926189.tar.gz vdr-c792c552979366bf781c9d9c817487bdd2926189.tar.bz2 |
Implemented cTSBuffer
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index 05ac4437..7de89665 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.h 1.8 2002/09/06 14:10:17 kls Exp $ + * $Id: dvbdevice.h 1.9 2002/09/07 09:06:40 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -106,10 +106,12 @@ public: // Receiver facilities +private: + cTSBuffer *tsBuffer; protected: virtual bool OpenDvr(void); virtual void CloseDvr(void); - virtual int GetTSPacket(uchar *Data); + virtual bool GetTSPacket(uchar *&Data); }; #endif //__DVBDEVICE_H |