diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-07-28 11:41:51 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-07-28 11:41:51 +0200 |
commit | ab4e3c7ef8fe6ae252abbb06f0a605e5ea159467 (patch) | |
tree | c07d7c1b5a2af4a45b005a44a7b4d6cae0bb6496 | |
parent | 780cd3d52f1ca4654d62ec7a30902bd6fc83e597 (diff) | |
download | vdr-ab4e3c7ef8fe6ae252abbb06f0a605e5ea159467.tar.gz vdr-ab4e3c7ef8fe6ae252abbb06f0a605e5ea159467.tar.bz2 |
Fixed replaying in case there is no index file
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dvbapi.c | 6 |
2 files changed, 5 insertions, 2 deletions
@@ -587,3 +587,4 @@ Video Disk Recorder Revision History may be necessary if your multiswitch gets irritated by the default DiSEqC codes '0' (thanks to Markus Lang). - Avoiding audio/video distortions in 'Transfer Mode'. +- Fixed replaying in case there is no index file. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.c 1.91 2001/07/28 11:23:59 kls Exp $ + * $Id: dvbapi.c 1.92 2001/07/28 11:38:21 kls Exp $ */ #include "dvbapi.h" @@ -735,7 +735,7 @@ void cReplayBuffer::Input(void) r = ReadFrame(replayFile, b, Length, sizeof(b)); StripAudioPackets(b, r); } - else { + else if (index) { lastIndex = -1; playIndex = (playIndex >= 0) ? playIndex + 1 : index->Get(fileName.Number(), fileOffset); uchar FileNumber; @@ -745,6 +745,8 @@ void cReplayBuffer::Input(void) r = ReadFrame(replayFile, b, Length, sizeof(b)); StripAudioPackets(b, r, audioTrack); } + else // allows replay even if the index file is missing + r = read(replayFile, b, sizeof(b)); if (r > 0) { uchar *p = b; while (r > 0 && Busy() && !blockInput) { |