diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-12-25 13:36:51 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-12-25 13:36:51 +0100 |
commit | 4e22b621927c7c17e2cb5d77ee1bf52335f4ba5b (patch) | |
tree | 654aafd4f9506091a9857383958df386f0bb61c5 /device.h | |
parent | 21c8829783f7f4d6b7bc13bc405196182910c3e6 (diff) | |
download | vdr-4e22b621927c7c17e2cb5d77ee1bf52335f4ba5b.tar.gz vdr-4e22b621927c7c17e2cb5d77ee1bf52335f4ba5b.tar.bz2 |
cDevice::TrickSpeed() now has an additional parameter named Forward
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 3.4 2013/12/25 13:08:44 kls Exp $ + * $Id: device.h 3.5 2013/12/25 13:19:58 kls Exp $ */ #ifndef __DEVICE_H @@ -698,10 +698,11 @@ public: virtual bool HasIBPTrickSpeed(void) { return false; } ///< Returns true if this device can handle all frames in 'fast forward' ///< trick speeds. - virtual void TrickSpeed(int Speed); + virtual void TrickSpeed(int Speed, bool Forward); ///< Sets the device into a mode where replay is done slower. ///< Every single frame shall then be displayed the given number of - ///< times. + ///< times. Forward is true if replay is done in the normal (forward) + ///< direction, false if it is done reverse. ///< The cDvbPlayer uses the following values for the various speeds: ///< 1x 2x 3x ///< Fast Forward 6 3 1 |