summaryrefslogtreecommitdiff
path: root/hlsPlayerControl.cpp
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-01-11 15:14:03 +0100
committerchriszero <zerov83@gmail.com>2015-01-11 15:14:03 +0100
commit508ba3458094f0c30b278cc05abc626b6f3940e0 (patch)
tree12592e3fb841f80ad1c61d07b3f9242ad94d2cbe /hlsPlayerControl.cpp
parenta9dd0c6a322f139e03a0ba4570e2a78508ddd6c3 (diff)
downloadvdr-plugin-plex-508ba3458094f0c30b278cc05abc626b6f3940e0.tar.gz
vdr-plugin-plex-508ba3458094f0c30b278cc05abc626b6f3940e0.tar.bz2
Removed Mplayer support.
Added HLS Streaming Player for directly play in VDR
Diffstat (limited to 'hlsPlayerControl.cpp')
-rw-r--r--hlsPlayerControl.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/hlsPlayerControl.cpp b/hlsPlayerControl.cpp
new file mode 100644
index 0000000..f572604
--- /dev/null
+++ b/hlsPlayerControl.cpp
@@ -0,0 +1,24 @@
+#include "hlsPlayerControl.h"
+
+cHlsPlayerControl::cHlsPlayerControl(cHlsPlayer* Player, std::string title) :cControl(Player)
+{
+ m_pPlayer = Player;
+ m_title = title;
+}
+
+cHlsPlayerControl::~cHlsPlayerControl()
+{
+}
+
+cString cHlsPlayerControl::GetHeader(void)
+{
+ return m_title.c_str();
+}
+
+void cHlsPlayerControl::Hide(void)
+{
+}
+
+void cHlsPlayerControl::Show(void)
+{
+}