diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-08 14:17:51 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-08 14:17:51 +0200 |
commit | 9133fdcf630192fb57b7db4e3b35839588c3451d (patch) | |
tree | 38b51eb9d1bd241f1a7a28192d42f7bd91f59523 /dvbdevice.h | |
parent | 1b396902e488e093234ac181bbc0e514dd098942 (diff) | |
download | vdr-9133fdcf630192fb57b7db4e3b35839588c3451d.tar.gz vdr-9133fdcf630192fb57b7db4e3b35839588c3451d.tar.bz2 |
Implemented an SPU decoder
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index 7de89665..b135ff66 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.9 2002/09/07 09:06:40 kls Exp $ + * $Id: dvbdevice.h 1.10 2002/09/08 14:05:29 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -21,6 +21,7 @@ #include <ost/frontend.h> #endif #include "device.h" +#include "dvbspu.h" #include "eit.h" #define MAXDVBDEVICES 4 @@ -51,8 +52,11 @@ public: // OSD facilities +private: + cDvbSpuDecoder *spuDecoder; public: cOsdBase *NewOsd(int x, int y); + virtual cSpuDecoder *GetSpuDecoder(void); // Channel facilities |