diff options
author | chriszero <zerov83@gmail.com> | 2015-02-08 17:52:01 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-08 17:52:01 +0100 |
commit | 9b62917c4da85e5ec403792fd9a198b1cb005013 (patch) | |
tree | 3bed88f24cab7d722fe0071af4b29f9436b17415 /hlsPlayerControl.cpp | |
parent | aae151d3808c9c72a6c155261295b2eeaba57c00 (diff) | |
download | vdr-plugin-plex-9b62917c4da85e5ec403792fd9a198b1cb005013.tar.gz vdr-plugin-plex-9b62917c4da85e5ec403792fd9a198b1cb005013.tar.bz2 |
Fixes not working control of casted media.
Diffstat (limited to 'hlsPlayerControl.cpp')
-rw-r--r-- | hlsPlayerControl.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hlsPlayerControl.cpp b/hlsPlayerControl.cpp index 17bbc12..b76fb63 100644 --- a/hlsPlayerControl.cpp +++ b/hlsPlayerControl.cpp @@ -205,6 +205,12 @@ void cHlsPlayerControl::SeekTo(int offset) } } +void cHlsPlayerControl::JumpRelative(int offset) +{ + if (player) + player->JumpRelative(offset); +} + void cHlsPlayerControl::ShowMode(void) { //dsyslog("[plex]: '%s'\n", __FUNCTION__); |