summaryrefslogtreecommitdiff
path: root/PLUGINS/src/dvbsddevice/dvbsddevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2009-12-31 15:38:18 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2009-12-31 15:38:18 +0100
commit2b7c81f72dfa4f53b2b5e2e54d709e8515e76788 (patch)
tree0ba62c895f94c372f6464aed04e58fadbba4da7a /PLUGINS/src/dvbsddevice/dvbsddevice.c
parent3d7338de5a2e93431296ecfed30821e007d3419b (diff)
downloadvdr-2b7c81f72dfa4f53b2b5e2e54d709e8515e76788.tar.gz
vdr-2b7c81f72dfa4f53b2b5e2e54d709e8515e76788.tar.bz2
Moved support for full featured DVB cards of the TT/FuSi design into the new plugin 'dvbsddevice'
Diffstat (limited to 'PLUGINS/src/dvbsddevice/dvbsddevice.c')
-rw-r--r--PLUGINS/src/dvbsddevice/dvbsddevice.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/PLUGINS/src/dvbsddevice/dvbsddevice.c b/PLUGINS/src/dvbsddevice/dvbsddevice.c
new file mode 100644
index 00000000..52317f88
--- /dev/null
+++ b/PLUGINS/src/dvbsddevice/dvbsddevice.c
@@ -0,0 +1,35 @@
+/*
+ * dvbsddevice.c: A plugin for the Video Disk Recorder
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id: dvbsddevice.c 1.1 2009/12/31 15:36:00 kls Exp $
+ */
+
+#include <vdr/plugin.h>
+#include "dvbsdffdevice.h"
+
+static const char *VERSION = "0.0.1";
+static const char *DESCRIPTION = "SD Full Featured DVB device";
+
+class cPluginDvbsddevice : public cPlugin {
+private:
+ cDvbSdFfDeviceProbe *probe;
+public:
+ cPluginDvbsddevice(void);
+ virtual ~cPluginDvbsddevice();
+ virtual const char *Version(void) { return VERSION; }
+ virtual const char *Description(void) { return DESCRIPTION; }
+ };
+
+cPluginDvbsddevice::cPluginDvbsddevice(void)
+{
+ probe = new cDvbSdFfDeviceProbe;
+}
+
+cPluginDvbsddevice::~cPluginDvbsddevice()
+{
+ delete probe;
+}
+
+VDRPLUGINCREATOR(cPluginDvbsddevice); // Don't touch this!