diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-13 12:28:35 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-13 12:28:35 +0200 |
commit | 78ecc96e17981a688f5d373c47298ca2b448a6fa (patch) | |
tree | 2bd22a9b6eaead1b08475650da02003581fe8b34 /device.h | |
parent | b943bf2c503baa79184d8088d28fa740b656db74 (diff) | |
download | vdr-78ecc96e17981a688f5d373c47298ca2b448a6fa.tar.gz vdr-78ecc96e17981a688f5d373c47298ca2b448a6fa.tar.bz2 |
Implemented sending all frames to devices that can handle them in fast forward trick speeds
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 1.83 2007/10/12 13:53:50 kls Exp $ + * $Id: device.h 1.84 2007/10/13 12:25:26 kls Exp $ */ #ifndef __DEVICE_H @@ -494,6 +494,9 @@ public: ///< Gets the current System Time Counter, which can be used to ///< synchronize audio and video. If this device is unable to ///< provide the STC, -1 will be returned. + 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); ///< Sets the device into a mode where replay is done slower. ///< Every single frame shall then be displayed the given number of |