summaryrefslogtreecommitdiff
path: root/src/vdr-plugin/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vdr-plugin/player.h')
-rw-r--r--src/vdr-plugin/player.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/vdr-plugin/player.h b/src/vdr-plugin/player.h
new file mode 100644
index 0000000..dbaf448
--- /dev/null
+++ b/src/vdr-plugin/player.h
@@ -0,0 +1,29 @@
+/*
+ * menu.h: Web video plugin for the Video Disk Recorder
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id$
+ */
+
+#ifndef __WEBVIDEO_PLAYER_H
+#define __WEBVIDEO_PLAYER_H
+
+class cMediaPlayer {
+public:
+ virtual ~cMediaPlayer() {};
+ virtual bool Launch(const char *url) = 0;
+};
+
+class cXineliboutputPlayer : public cMediaPlayer {
+public:
+ bool Launch(const char *url);
+};
+
+class cMPlayerPlayer : public cMediaPlayer {
+public:
+ bool Launch(const char *url);
+};
+
+
+#endif