From 4fcd3ba56e37ced65a7591d9165322154ed86fce Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 26 Jan 2015 10:20:51 +0100 Subject: Added functionality based on the "jumpplay" patch --- config.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'config.c') diff --git a/config.c b/config.c index af791b32..69a26245 100644 --- a/config.c +++ b/config.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 3.3 2015/01/12 14:32:17 kls Exp $ + * $Id: config.c 3.4 2015/01/25 14:17:45 kls Exp $ */ #include "config.h" @@ -470,6 +470,9 @@ cSetup::cSetup(void) ShowRemainingTime = 0; ProgressDisplayTime = 0; PauseOnMarkSet = 0; + PauseOnMarkJump = 1; + SkipEdited = 0; + PauseAtLastMark = 0; ResumeID = 0; CurrentChannel = -1; CurrentVolume = MAXVOLUME; @@ -683,6 +686,9 @@ bool cSetup::Parse(const char *Name, const char *Value) else if (!strcasecmp(Name, "ShowRemainingTime")) ShowRemainingTime = atoi(Value); else if (!strcasecmp(Name, "ProgressDisplayTime")) ProgressDisplayTime= atoi(Value); else if (!strcasecmp(Name, "PauseOnMarkSet")) PauseOnMarkSet = atoi(Value); + else if (!strcasecmp(Name, "PauseOnMarkJump")) PauseOnMarkJump = atoi(Value); + else if (!strcasecmp(Name, "SkipEdited")) SkipEdited = atoi(Value); + else if (!strcasecmp(Name, "PauseAtLastMark")) PauseAtLastMark = atoi(Value); else if (!strcasecmp(Name, "ResumeID")) ResumeID = atoi(Value); else if (!strcasecmp(Name, "CurrentChannel")) CurrentChannel = atoi(Value); else if (!strcasecmp(Name, "CurrentVolume")) CurrentVolume = atoi(Value); @@ -800,6 +806,9 @@ bool cSetup::Save(void) Store("ShowRemainingTime", ShowRemainingTime); Store("ProgressDisplayTime",ProgressDisplayTime); Store("PauseOnMarkSet", PauseOnMarkSet); + Store("PauseOnMarkJump", PauseOnMarkJump); + Store("SkipEdited", SkipEdited); + Store("PauseAtLastMark", PauseAtLastMark); Store("ResumeID", ResumeID); Store("CurrentChannel", CurrentChannel); Store("CurrentVolume", CurrentVolume); -- cgit v1.2.3