summaryrefslogtreecommitdiff
path: root/dvbdevice.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <kls (at) cadsoft (dot) de>2003-11-08 18:00:00 +0100
committerKlaus Schmidinger <kls (at) cadsoft (dot) de>2003-11-08 18:00:00 +0100
commit17c5b4169e50c127991cb20d9f8050a5e47b18c2 (patch)
tree1d4a827800e238f44bda9fbdcb69a36c03e7cf15 /dvbdevice.h
parentd62fbea7bad99cfa34ec42a678d4cf38ec1593d8 (diff)
downloadvdr-patch-lnbsharing-17c5b4169e50c127991cb20d9f8050a5e47b18c2.tar.gz
vdr-patch-lnbsharing-17c5b4169e50c127991cb20d9f8050a5e47b18c2.tar.bz2
Version 1.2.6pre5vdr-1.2.6pre5
- Added cDevice::GetSTC() (suggested by Sven Goethel). - Added Asia-Pacific satellites to 'sources.conf' (thanks to Richard Scobie). - Added North American satellites to 'sources.conf' (thanks to Luke Jenkins). - Fixed getting the list of recordings in case VDR is started from a directory where it doesn't have access to (thanks to Dirk Mueller).
Diffstat (limited to 'dvbdevice.h')
-rw-r--r--dvbdevice.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/dvbdevice.h b/dvbdevice.h
index 78df221..56f1c2b 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.23 2003/10/04 11:54:50 kls Exp $
+ * $Id: dvbdevice.h 1.24 2003/11/07 13:17:13 kls Exp $
*/
#ifndef __DVBDEVICE_H
@@ -38,7 +38,7 @@ public:
///< \return True if any devices are available.
private:
fe_type_t frontendType;
- int fd_osd, fd_audio, fd_video, fd_dvr;
+ int fd_osd, fd_audio, fd_video, fd_dvr, fd_stc;
int OsdDeviceHandle(void) const { return fd_osd; }
protected:
virtual void MakePrimaryDevice(bool On);
@@ -107,6 +107,7 @@ protected:
virtual bool CanReplay(void) const;
virtual bool SetPlayMode(ePlayMode PlayMode);
public:
+ virtual int64_t GetSTC(void);
virtual void TrickSpeed(int Speed);
virtual void Clear(void);
virtual void Play(void);