diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2015-02-01 11:20:54 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2015-02-01 11:20:54 +0100 |
commit | 0a5eb88696738110bc796ff8b71199d9396021e1 (patch) | |
tree | 58cafad3d58ed1b25d7dcc391bfe9a90dfc8d3e0 /dvbplayer.h | |
parent | 63372cd4aa4670560698154973d8029ccdf68d9c (diff) | |
download | vdr-0a5eb88696738110bc796ff8b71199d9396021e1.tar.gz vdr-0a5eb88696738110bc796ff8b71199d9396021e1.tar.bz2 |
Fixed setting the read index in cDvbPlayer::Goto() in case Still is false; The function cDvbPlayer::Goto() now automatically calls Play() if Still is false
Diffstat (limited to 'dvbplayer.h')
-rw-r--r-- | dvbplayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbplayer.h b/dvbplayer.h index e2f2082d..678c9693 100644 --- a/dvbplayer.h +++ b/dvbplayer.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbplayer.h 2.1 2012/02/19 11:40:36 kls Exp $ + * $Id: dvbplayer.h 3.1 2015/02/01 11:20:54 kls Exp $ */ #ifndef __DVBPLAYER_H @@ -56,7 +56,7 @@ public: // and >0 if this is multi speed mode. void Goto(int Index, bool Still = false); // Positions to the given index and displays that frame as a still picture - // if Still is true. + // if Still is true. If Still is false, Play() will be called. }; #endif //__DVBPLAYER_H |