summaryrefslogtreecommitdiff
path: root/hlsPlayer.h
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-01-18 20:27:16 +0100
committerchriszero <zerov83@gmail.com>2015-01-18 20:27:16 +0100
commit8d7655c7eb7086a56b7722908291c163d596843d (patch)
tree61181d40ebc59a3155bc53748a9096f302cf6116 /hlsPlayer.h
parentd3777dd6bcb11ceea85eca91e670d7872ba7b1ea (diff)
downloadvdr-plugin-plex-8d7655c7eb7086a56b7722908291c163d596843d.tar.gz
vdr-plugin-plex-8d7655c7eb7086a56b7722908291c163d596843d.tar.bz2
Implemented skip backwards/forward. Key Green/Yellow
Diffstat (limited to 'hlsPlayer.h')
-rw-r--r--hlsPlayer.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/hlsPlayer.h b/hlsPlayer.h
index 20b58e5..353f0b9 100644
--- a/hlsPlayer.h
+++ b/hlsPlayer.h
@@ -68,6 +68,11 @@ class cHlsPlayer : public cPlayer, cThread
private:
cHlsSegmentLoader* m_pSegmentLoader;
plexclient::Video* m_pVideo;
+ cMutex s_mutex;
+
+ int m_jumpOffset;
+ int m_timeOffset;
+ bool m_doJump;
int m_videoLenght;
int m_actualSegment;
@@ -95,6 +100,8 @@ public:
void Play(void);
void Stop(void);
bool Active(void);
+ void JumpTo(int seconds);
+ void JumpRelative(int seconds);
};