From ed766859d7416fa6a23b98d3709632dbffb4553c Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 2 Feb 2015 09:51:32 +0100 Subject: Added code from the "jumpplay" patch that makes the recording still be considered unviewed when stopping replay within RESUMEBACKUP seconds of the first mark --- dvbplayer.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'dvbplayer.c') diff --git a/dvbplayer.c b/dvbplayer.c index 0d7b3904..9e561ca1 100644 --- a/dvbplayer.c +++ b/dvbplayer.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbplayer.c 3.3 2015/02/01 10:45:41 kls Exp $ + * $Id: dvbplayer.c 3.4 2015/02/02 09:51:32 kls Exp $ */ #include "dvbplayer.h" @@ -377,6 +377,8 @@ bool cDvbPlayer::Save(void) if (index) { int Index = ptsIndex.FindIndex(DeviceGetSTC()); if (Index >= 0) { + if (Setup.SkipEdited && marks.First() && abs(Index - marks.First()->Position()) <= int(round(RESUMEBACKUP * framesPerSecond))) + Index = 0; // when stopping within RESUMEBACKUP seconds of the first mark the recording shall still be considered unviewed Index -= int(round(RESUMEBACKUP * framesPerSecond)); if (Index > 0) Index = index->GetNextIFrame(Index, false); -- cgit v1.2.3