diff options
author | Christian Völlinger <zerov83@gmail.com> | 2014-01-06 12:00:02 +0100 |
---|---|---|
committer | Christian Völlinger <zerov83@gmail.com> | 2014-01-06 12:00:02 +0100 |
commit | d4649f5f68226bf2c92415b401194a67e5749d5e (patch) | |
tree | 5e03d4180946f24571c0a9c6c96bac264730b4b0 /vdrboblight.c | |
parent | 00e51c9708642efff7c23f235921a324e1df9a37 (diff) | |
download | vdr-plugin-boblight-d4649f5f68226bf2c92415b401194a67e5749d5e.tar.gz vdr-plugin-boblight-d4649f5f68226bf2c92415b401194a67e5749d5e.tar.bz2 |
Performance improvements
Fixes some OSD Bugs
Fixes bug in loading settings
Diffstat (limited to 'vdrboblight.c')
-rw-r--r-- | vdrboblight.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vdrboblight.c b/vdrboblight.c index 5a90b77..4e47dbf 100644 --- a/vdrboblight.c +++ b/vdrboblight.c @@ -138,7 +138,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, "Updaterate")) cfg.frequence = atoi(Value); else if (!strcasecmp(Name, "Threshold")) cfg.threshold = atoi(Value); else if (!strcasecmp(Name, "Value")) cfg.value = atoi(Value); else if (!strcasecmp(Name, "Saturation")) cfg.saturation = atoi(Value); @@ -146,6 +146,7 @@ bool cPluginBoblight::SetupParse(const char* Name, const char* Value) else if (!strcasecmp(Name, "Autospeed")) cfg.autospeed = atoi(Value); else if (!strcasecmp(Name, "Interpolation")) cfg.interpolation = atoi(Value); else if (!strcasecmp(Name, "Priority")) cfg.priority = atoi(Value); + else if (!strcasecmp(Name, "Gamma")) cfg.gamma = atoi(Value); else if (!strcasecmp(Name, "FixedColorRed")) cfg.fixedR = atoi(Value); |