summaryrefslogtreecommitdiff
path: root/dvbapi.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-05-03 16:06:54 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-05-03 16:06:54 +0200
commit5d2cb386a0a6ff9313f78dadcb2c91f5d47a5530 (patch)
tree1c96e110f030da13ae239b30d8f35267cca306bb /dvbapi.c
parent04d356f805908c75d66181d4d75eb7f4d3a1bcb1 (diff)
downloadvdr-5d2cb386a0a6ff9313f78dadcb2c91f5d47a5530.tar.gz
vdr-5d2cb386a0a6ff9313f78dadcb2c91f5d47a5530.tar.bz2
Fixed skipping forward in time shift mode near the end of the recording
Diffstat (limited to 'dvbapi.c')
-rw-r--r--dvbapi.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/dvbapi.c b/dvbapi.c
index 0006e436..77e53726 100644
--- a/dvbapi.c
+++ b/dvbapi.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbapi.c 1.173 2002/04/21 11:55:48 kls Exp $
+ * $Id: dvbapi.c 1.174 2002/05/03 15:59:32 kls Exp $
*/
#include "dvbapi.h"
@@ -279,8 +279,7 @@ bool cIndexFile::Get(int Index, uchar *FileNumber, int *FileOffset, uchar *Pictu
int cIndexFile::GetNextIFrame(int Index, bool Forward, uchar *FileNumber, int *FileOffset, int *Length, bool StayOffEnd)
{
if (index) {
- if (Forward)
- CatchUp();
+ CatchUp();
int d = Forward ? 1 : -1;
for (;;) {
Index += d;