diff options
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__); |