diff options
Diffstat (limited to 'vdrboblight.c')
-rw-r--r-- | vdrboblight.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vdrboblight.c b/vdrboblight.c index d48fe99..5a90b77 100644 --- a/vdrboblight.c +++ b/vdrboblight.c @@ -85,6 +85,7 @@ void cPluginBoblight::Save() { SetupStore("StartupViewMode", cfg.startupViewMode); SetupStore("DetectCineBars", cfg.detectCineBars); + SetupStore("CineBarsThreshold", cfg.cineBarsThreshold); SetupStore("Updaterate", cfg.frequence); SetupStore("Threshold", cfg.threshold); @@ -135,6 +136,7 @@ bool cPluginBoblight::SetupParse(const char* Name, const char* Value) } else if (!strcasecmp(Name, "DetectCineBars")) cfg.detectCineBars = (cAmbiService::Cinebars)atoi(Value); + else if (!strcasecmp(Name, "CineBarsThreshold")) cfg.cineBarsThreshold = atoi(Value); else if (!strcasecmp(Name, "Frequence")) cfg.frequence = atoi(Value); else if (!strcasecmp(Name, "Threshold")) cfg.threshold = atoi(Value); |