diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-12 14:53:59 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-12 14:53:59 +0100 |
commit | ed10aaf68bbd519856430b7f6e6223a243feffc0 (patch) | |
tree | b39124d14626ec594ad939fe53331e7c277847c3 /recording.h | |
parent | 9fa1654d0442bdf83dda528f88f306e37bf56c1c (diff) | |
download | vdr-ed10aaf68bbd519856430b7f6e6223a243feffc0.tar.gz vdr-ed10aaf68bbd519856430b7f6e6223a243feffc0.tar.bz2 |
Improved fast forwarding to the end of a timeshift recording
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.h b/recording.h index 8e6b4b13..80c2817a 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 2.28 2012/03/11 15:26:01 kls Exp $ + * $Id: recording.h 2.29 2012/03/12 11:44:06 kls Exp $ */ #ifndef __RECORDING_H @@ -284,7 +284,7 @@ public: bool Ok(void) { return index != NULL; } bool Write(bool Independent, uint16_t FileNumber, off_t FileOffset); bool Get(int Index, uint16_t *FileNumber, off_t *FileOffset, bool *Independent = NULL, int *Length = NULL); - int GetNextIFrame(int Index, bool Forward, uint16_t *FileNumber = NULL, off_t *FileOffset = NULL, int *Length = NULL, bool StayOffEnd = false); + int GetNextIFrame(int Index, bool Forward, uint16_t *FileNumber = NULL, off_t *FileOffset = NULL, int *Length = NULL); int Get(uint16_t FileNumber, off_t FileOffset); int Last(void) { CatchUp(); return last; } int GetResume(void) { return resumeFile.Read(); } |