summaryrefslogtreecommitdiff
path: root/src/vdr-plugin/player.h
diff options
context:
space:
mode:
authorAntti Ajanki <antti.ajanki@iki.fi>2010-07-23 20:55:11 +0300
committerAntti Ajanki <antti.ajanki@iki.fi>2010-07-23 20:55:11 +0300
commit310743fb9ebbf68b253b923a309cc5f635da89a1 (patch)
tree59c365db7459649344b4ab6d58fde1ceb362506d /src/vdr-plugin/player.h
downloadvdr-plugin-webvideo-310743fb9ebbf68b253b923a309cc5f635da89a1.tar.gz
vdr-plugin-webvideo-310743fb9ebbf68b253b923a309cc5f635da89a1.tar.bz2
release 0.3.0
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