mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Smoothing Remove ouputrate as duplicate to update frequency
This commit is contained in:
parent
9df21b9ddd
commit
b0bcb5e461
@ -443,8 +443,6 @@
|
|||||||
"edt_conf_smooth_heading_title": "Smoothing",
|
"edt_conf_smooth_heading_title": "Smoothing",
|
||||||
"edt_conf_smooth_interpolationRate_expl": "Speed of the calculation of smooth intermediate frames.",
|
"edt_conf_smooth_interpolationRate_expl": "Speed of the calculation of smooth intermediate frames.",
|
||||||
"edt_conf_smooth_interpolationRate_title": "Interpolation Rate",
|
"edt_conf_smooth_interpolationRate_title": "Interpolation Rate",
|
||||||
"edt_conf_smooth_outputRate_expl": "The output speed to your LED controller.",
|
|
||||||
"edt_conf_smooth_outputRate_title": "Output Rate",
|
|
||||||
"edt_conf_smooth_time_ms_expl": "How long should the smoothing gather pictures?",
|
"edt_conf_smooth_time_ms_expl": "How long should the smoothing gather pictures?",
|
||||||
"edt_conf_smooth_time_ms_title": "Time",
|
"edt_conf_smooth_time_ms_title": "Time",
|
||||||
"edt_conf_smooth_type_expl": "Type of smoothing.",
|
"edt_conf_smooth_type_expl": "Type of smoothing.",
|
||||||
|
@ -60,7 +60,6 @@
|
|||||||
"time_ms" : 200,
|
"time_ms" : 200,
|
||||||
"updateFrequency" : 25.0000,
|
"updateFrequency" : 25.0000,
|
||||||
"interpolationRate" : 25.0000,
|
"interpolationRate" : 25.0000,
|
||||||
"outputRate" : 25.0000,
|
|
||||||
"decay" : 1,
|
"decay" : 1,
|
||||||
"dithering" : false,
|
"dithering" : false,
|
||||||
"updateDelay" : 0
|
"updateDelay" : 0
|
||||||
|
@ -230,9 +230,6 @@ private:
|
|||||||
/// Flag for pausing
|
/// Flag for pausing
|
||||||
bool _pause;
|
bool _pause;
|
||||||
|
|
||||||
/// The rate at which color frames should be written to LED device.
|
|
||||||
double _outputRate;
|
|
||||||
|
|
||||||
/// The interval time in microseconds for writing of LED Frames.
|
/// The interval time in microseconds for writing of LED Frames.
|
||||||
int64_t _outputIntervalMicros;
|
int64_t _outputIntervalMicros;
|
||||||
|
|
||||||
@ -268,9 +265,6 @@ private:
|
|||||||
/// The type of smoothing to perform
|
/// The type of smoothing to perform
|
||||||
SmoothingType _type;
|
SmoothingType _type;
|
||||||
|
|
||||||
/// The rate at which color frames should be written to LED device.
|
|
||||||
double _outputRate;
|
|
||||||
|
|
||||||
/// The rate at which interpolation of LED frames should be performed.
|
/// The rate at which interpolation of LED frames should be performed.
|
||||||
double _interpolationRate;
|
double _interpolationRate;
|
||||||
|
|
||||||
@ -284,7 +278,7 @@ private:
|
|||||||
double _decay;
|
double _decay;
|
||||||
|
|
||||||
SmoothingCfg();
|
SmoothingCfg();
|
||||||
SmoothingCfg(bool pause, int64_t settlingTime, int updateInterval, SmoothingType type = SmoothingType::Linear, double outputRate = 0, double interpolationRate = 0, unsigned outputDelay = 0, bool dithering = false, double decay = 1);
|
SmoothingCfg(bool pause, int64_t settlingTime, int updateInterval, SmoothingType type = SmoothingType::Linear, double interpolationRate = 0, unsigned outputDelay = 0, bool dithering = false, double decay = 1);
|
||||||
|
|
||||||
static QString EnumToString(SmoothingType type);
|
static QString EnumToString(SmoothingType type);
|
||||||
};
|
};
|
||||||
|
@ -47,7 +47,6 @@ const char* SETTINGS_KEY_OUTPUT_DELAY = "updateDelay";
|
|||||||
|
|
||||||
const char* SETTINGS_KEY_DECAY = "decay";
|
const char* SETTINGS_KEY_DECAY = "decay";
|
||||||
const char* SETTINGS_KEY_INTERPOLATION_RATE = "interpolationRate";
|
const char* SETTINGS_KEY_INTERPOLATION_RATE = "interpolationRate";
|
||||||
const char* SETTINGS_KEY_OUTPUT_RATE = "outputRate";
|
|
||||||
const char* SETTINGS_KEY_DITHERING = "dithering";
|
const char* SETTINGS_KEY_DITHERING = "dithering";
|
||||||
|
|
||||||
const int64_t DEFAULT_SETTLINGTIME = 200; // in ms
|
const int64_t DEFAULT_SETTLINGTIME = 200; // in ms
|
||||||
@ -133,7 +132,6 @@ void LinearColorSmoothing::handleSettingsUpdate(settings::type type, const QJson
|
|||||||
cfg._pause = false;
|
cfg._pause = false;
|
||||||
cfg._outputDelay = static_cast<unsigned>(obj[SETTINGS_KEY_OUTPUT_DELAY].toInt(DEFAULT_OUTPUTDEPLAY));
|
cfg._outputDelay = static_cast<unsigned>(obj[SETTINGS_KEY_OUTPUT_DELAY].toInt(DEFAULT_OUTPUTDEPLAY));
|
||||||
|
|
||||||
cfg._outputRate = obj[SETTINGS_KEY_OUTPUT_RATE].toDouble(DEFAULT_UPDATEFREQUENCY);
|
|
||||||
cfg._interpolationRate = obj[SETTINGS_KEY_INTERPOLATION_RATE].toDouble(DEFAULT_UPDATEFREQUENCY);
|
cfg._interpolationRate = obj[SETTINGS_KEY_INTERPOLATION_RATE].toDouble(DEFAULT_UPDATEFREQUENCY);
|
||||||
cfg._dithering = obj[SETTINGS_KEY_DITHERING].toBool(false);
|
cfg._dithering = obj[SETTINGS_KEY_DITHERING].toBool(false);
|
||||||
cfg._decay = obj[SETTINGS_KEY_DECAY].toDouble(1.0);
|
cfg._decay = obj[SETTINGS_KEY_DECAY].toDouble(1.0);
|
||||||
@ -584,7 +582,6 @@ unsigned LinearColorSmoothing::addConfig(int settlingTime_ms, double ledUpdateFr
|
|||||||
static_cast<int>(MS_PER_MICRO / ledUpdateFrequency_hz),
|
static_cast<int>(MS_PER_MICRO / ledUpdateFrequency_hz),
|
||||||
SmoothingType::Linear,
|
SmoothingType::Linear,
|
||||||
ledUpdateFrequency_hz,
|
ledUpdateFrequency_hz,
|
||||||
ledUpdateFrequency_hz,
|
|
||||||
updateDelay
|
updateDelay
|
||||||
};
|
};
|
||||||
_cfgList.append(cfg);
|
_cfgList.append(cfg);
|
||||||
@ -605,7 +602,6 @@ unsigned LinearColorSmoothing::updateConfig(int cfgID, int settlingTime_ms, doub
|
|||||||
static_cast<int>(MS_PER_MICRO / ledUpdateFrequency_hz),
|
static_cast<int>(MS_PER_MICRO / ledUpdateFrequency_hz),
|
||||||
SmoothingType::Linear,
|
SmoothingType::Linear,
|
||||||
ledUpdateFrequency_hz,
|
ledUpdateFrequency_hz,
|
||||||
ledUpdateFrequency_hz,
|
|
||||||
updateDelay
|
updateDelay
|
||||||
};
|
};
|
||||||
_cfgList[updatedCfgID] = cfg;
|
_cfgList[updatedCfgID] = cfg;
|
||||||
@ -631,8 +627,7 @@ bool LinearColorSmoothing::selectConfig(int cfgID, bool force)
|
|||||||
_settlingTime = _cfgList[cfgID]._settlingTime;
|
_settlingTime = _cfgList[cfgID]._settlingTime;
|
||||||
_outputDelay = _cfgList[cfgID]._outputDelay;
|
_outputDelay = _cfgList[cfgID]._outputDelay;
|
||||||
_pause = _cfgList[cfgID]._pause;
|
_pause = _cfgList[cfgID]._pause;
|
||||||
_outputRate = _cfgList[cfgID]._outputRate;
|
_outputIntervalMicros = int64_t(1000000.0 / _updateInterval); // 1s = 1e6 µs
|
||||||
_outputIntervalMicros = int64_t(1000000.0 / _outputRate); // 1s = 1e6 µs
|
|
||||||
_interpolationRate = _cfgList[cfgID]._interpolationRate;
|
_interpolationRate = _cfgList[cfgID]._interpolationRate;
|
||||||
_interpolationIntervalMicros = int64_t(1000000.0 / _interpolationRate);
|
_interpolationIntervalMicros = int64_t(1000000.0 / _interpolationRate);
|
||||||
_dithering = _cfgList[cfgID]._dithering;
|
_dithering = _cfgList[cfgID]._dithering;
|
||||||
@ -711,8 +706,7 @@ QString LinearColorSmoothing::getConfig(int cfgID)
|
|||||||
case SmoothingType::Decay:
|
case SmoothingType::Decay:
|
||||||
{
|
{
|
||||||
const double thalf = (1.0-std::pow(1.0/2, 1.0/_decay))*_settlingTime;
|
const double thalf = (1.0-std::pow(1.0/2, 1.0/_decay))*_settlingTime;
|
||||||
configText += QString (", outputRate %1Hz, interpolationRate: %2Hz, dithering: %3, decay: %4 -> halftime: %5ms")
|
configText += QString (", interpolationRate: %1Hz, dithering: %2, decay: %3 -> halftime: %4ms")
|
||||||
.arg(cfg._outputRate,0,'f',2)
|
|
||||||
.arg(cfg._interpolationRate,0,'f',2)
|
.arg(cfg._interpolationRate,0,'f',2)
|
||||||
.arg((cfg._dithering) ? "true" : "false")
|
.arg((cfg._dithering) ? "true" : "false")
|
||||||
.arg(cfg._decay,0,'f',2)
|
.arg(cfg._decay,0,'f',2)
|
||||||
@ -732,12 +726,11 @@ LinearColorSmoothing::SmoothingCfg::SmoothingCfg() :
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
LinearColorSmoothing::SmoothingCfg::SmoothingCfg(bool pause, int64_t settlingTime, int updateInterval, SmoothingType type, double outputRate, double interpolationRate, unsigned outputDelay, bool dithering, double decay) :
|
LinearColorSmoothing::SmoothingCfg::SmoothingCfg(bool pause, int64_t settlingTime, int updateInterval, SmoothingType type, double interpolationRate, unsigned outputDelay, bool dithering, double decay) :
|
||||||
_pause(pause),
|
_pause(pause),
|
||||||
_settlingTime(settlingTime),
|
_settlingTime(settlingTime),
|
||||||
_updateInterval(updateInterval),
|
_updateInterval(updateInterval),
|
||||||
_type(type),
|
_type(type),
|
||||||
_outputRate(outputRate),
|
|
||||||
_interpolationRate(interpolationRate),
|
_interpolationRate(interpolationRate),
|
||||||
_outputDelay(outputDelay),
|
_outputDelay(outputDelay),
|
||||||
_dithering(dithering),
|
_dithering(dithering),
|
||||||
|
@ -50,20 +50,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"outputRate": {
|
|
||||||
"type": "number",
|
|
||||||
"title": "edt_conf_smooth_outputRate_title",
|
|
||||||
"minimum": 1.0,
|
|
||||||
"maximum": 1000.0,
|
|
||||||
"default": 1.0,
|
|
||||||
"append": "edt_append_hz",
|
|
||||||
"propertyOrder": 6,
|
|
||||||
"options": {
|
|
||||||
"dependencies": {
|
|
||||||
"type": "decay"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"decay": {
|
"decay": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"title": "edt_conf_smooth_decay_title",
|
"title": "edt_conf_smooth_decay_title",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user