From 1b2a62623c2e3c8f0d37b8d586ce185d68d190e1 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 6 Feb 2015 10:25:25 +0100 Subject: Changed the naming of "binary skip mode" to "adaptive skip mode" --- config.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'config.c') diff --git a/config.c b/config.c index bc9c9b8d..37f90588 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.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); -- cgit v1.2.3