diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-01-07 17:00:50 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-01-07 17:00:50 +0100 |
commit | 7c79f61dd53bb1de38e5bb82161de4600b963358 (patch) | |
tree | d5ff0498bddca528f93f5804f43fb95b32326faa /dvbapi.h | |
parent | 05c61fe6243e3d43db90941f019acb8ec579df96 (diff) | |
download | vdr-7c79f61dd53bb1de38e5bb82161de4600b963358.tar.gz vdr-7c79f61dd53bb1de38e5bb82161de4600b963358.tar.bz2 |
Adapted frame detection to driver 0.8+
Diffstat (limited to 'dvbapi.h')
-rw-r--r-- | dvbapi.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: dvbapi.h 1.29 2000/12/25 15:17:03 kls Exp $ + * $Id: dvbapi.h 1.30 2001/01/07 15:56:10 kls Exp $ */ #ifndef __DVBAPI_H @@ -239,8 +239,9 @@ public: bool GetIndex(int &Current, int &Total, bool SnapToIFrame = false); // Returns the current and total frame index, optionally snapped to the // nearest I-frame. - void Goto(int Index); - // Positions to the given index and displays that frame as a still picture. + void Goto(int Index, bool Still = false); + // Positions to the given index and displays that frame as a still picture + // if Still is true. }; class cEITScanner { |