summaryrefslogtreecommitdiff
path: root/dvbdevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'dvbdevice.h')
-rw-r--r--dvbdevice.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/dvbdevice.h b/dvbdevice.h
index 8784c74e..46f1d106 100644
--- a/dvbdevice.h
+++ b/dvbdevice.h
@@ -4,17 +4,13 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.h 1.15 2002/10/26 11:35:04 kls Exp $
+ * $Id: dvbdevice.h 1.16 2002/11/01 10:05:41 kls Exp $
*/
#ifndef __DVBDEVICE_H
#define __DVBDEVICE_H
-#ifdef NEWSTRUCT
#include <linux/dvb/frontend.h>
-#else
-#include <ost/frontend.h>
-#endif
#include "device.h"
#include "dvbspu.h"
#include "eit.h"
@@ -31,13 +27,8 @@ public:
// Initializes the DVB devices.
// Must be called before accessing any DVB functions.
private:
-#ifdef NEWSTRUCT
fe_type_t frontendType;
int fd_osd, fd_frontend, fd_audio, fd_video, fd_dvr;
-#else
- FrontendType frontendType;
- int fd_osd, fd_frontend, fd_sec, fd_audio, fd_video, fd_dvr;
-#endif
int OsdDeviceHandle(void) const { return fd_osd; }
protected:
virtual void MakePrimaryDevice(bool On);