diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 3.7 2015/02/02 12:22:30 kls Exp $ + * $Id: config.c 3.8 2015/02/06 10:10:22 kls Exp $ */ #include "config.h" @@ -473,9 +473,9 @@ cSetup::cSetup(void) PauseOnMarkJump = 1; SkipEdited = 0; PauseAtLastMark = 0; - BinarySkipInitial = 120; - BinarySkipTimeout = 3; - BinarySkipStrict = 1; + AdaptiveSkipInitial = 120; + AdaptiveSkipTimeout = 3; + AdaptiveSkipAlternate = 0; ResumeID = 0; CurrentChannel = -1; CurrentVolume = MAXVOLUME; @@ -692,9 +692,9 @@ bool cSetup::Parse(const char *Name, const char *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, "BinarySkipInitial")) BinarySkipInitial = atoi(Value); - else if (!strcasecmp(Name, "BinarySkipTimeout")) BinarySkipTimeout = atoi(Value); - else if (!strcasecmp(Name, "BinarySkipStrict")) BinarySkipStrict = atoi(Value); + else if (!strcasecmp(Name, "AdaptiveSkipInitial")) AdaptiveSkipInitial= atoi(Value); + else if (!strcasecmp(Name, "AdaptiveSkipTimeout")) AdaptiveSkipTimeout= atoi(Value); + else if (!strcasecmp(Name, "AdaptiveSkipAlternate")) AdaptiveSkipAlternate = 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); @@ -815,9 +815,9 @@ bool cSetup::Save(void) Store("PauseOnMarkJump", PauseOnMarkJump); Store("SkipEdited", SkipEdited); Store("PauseAtLastMark", PauseAtLastMark); - Store("BinarySkipInitial", BinarySkipInitial); - Store("BinarySkipTimeout", BinarySkipTimeout); - Store("BinarySkipStrict", BinarySkipStrict); + Store("AdaptiveSkipInitial",AdaptiveSkipInitial); + Store("AdaptiveSkipTimeout",AdaptiveSkipTimeout); + Store("AdaptiveSkipAlternate", AdaptiveSkipAlternate); Store("ResumeID", ResumeID); Store("CurrentChannel", CurrentChannel); Store("CurrentVolume", CurrentVolume); |