From 508ba3458094f0c30b278cc05abc626b6f3940e0 Mon Sep 17 00:00:00 2001 From: chriszero Date: Sun, 11 Jan 2015 15:14:03 +0100 Subject: Removed Mplayer support. Added HLS Streaming Player for directly play in VDR --- hlsPlayerControl.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 hlsPlayerControl.cpp (limited to 'hlsPlayerControl.cpp') 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) +{ +} -- cgit v1.2.3