summaryrefslogtreecommitdiff
path: root/hlsPlayerControl.h
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-02-05 21:32:55 +0100
committerchriszero <zerov83@gmail.com>2015-02-05 21:32:55 +0100
commit312c13f4f6b299a976787542869f96b1e66549cf (patch)
tree7ee2732eaec79d50e0c9718960fd58e2436f10f6 /hlsPlayerControl.h
parent1ecdb2a5d9e05e0d30dae89e3d675218ca4c255e (diff)
downloadvdr-plugin-plex-312c13f4f6b299a976787542869f96b1e66549cf.tar.gz
vdr-plugin-plex-312c13f4f6b299a976787542869f96b1e66549cf.tar.bz2
Plex remote support.
Control via Plexapps (Android, IOS...)
Diffstat (limited to 'hlsPlayerControl.h')
-rw-r--r--hlsPlayerControl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/hlsPlayerControl.h b/hlsPlayerControl.h
index 2f7347b..9a3fc60 100644
--- a/hlsPlayerControl.h
+++ b/hlsPlayerControl.h
@@ -13,7 +13,6 @@ class cHlsPlayerControl : public cControl
private:
static volatile int active;
plexclient::MediaContainer* m_pMediaContainer;
- plexclient::Video* m_pVideo;
cHlsPlayer* player;
std::string m_title;
@@ -32,6 +31,8 @@ protected:
//void ShowMode();
public:
+ plexclient::Video* m_pVideo;
+
static cControl* Create(plexclient::Video* Video);
cHlsPlayerControl(cHlsPlayer* Player, plexclient::MediaContainer* Container);
virtual ~cHlsPlayerControl();
@@ -47,6 +48,7 @@ public:
void Pause(void);
void Play(void);
void Stop(void);
+ void SeekTo(int offset);
};