diff options
Diffstat (limited to 'hlsPlayerControl.h')
-rw-r--r-- | hlsPlayerControl.h | 4 |
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); }; |