summaryrefslogtreecommitdiff
path: root/dvbdevice.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-09-08 09:03:10 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-09-08 09:03:10 +0200
commitc792c552979366bf781c9d9c817487bdd2926189 (patch)
tree788131b78d8485c53f294eaa4ad0cb439ab91d63 /dvbdevice.h
parentf24f820e7deb5a9cadfb56f72ad39cb313c87092 (diff)
downloadvdr-c792c552979366bf781c9d9c817487bdd2926189.tar.gz
vdr-c792c552979366bf781c9d9c817487bdd2926189.tar.bz2
Implemented cTSBuffer
Diffstat (limited to 'dvbdevice.h')
-rw-r--r--dvbdevice.h6
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