Lines Matching refs:floatVal
224 float floatVal; in setParameters() local
243 if ((param.getFloat(kHDMIDelayCompParamKey, floatVal) == NO_ERROR) && in setParameters()
244 (floatVal >= 0.0) && in setParameters()
245 (floatVal <= AudioOutput::kMaxDelayCompensationMSec)) { in setParameters()
246 uint32_t delay_comp = static_cast<uint32_t>(floatVal * 1000.0); in setParameters()
256 if ((param.getFloat(kFixedHDMIOutputLevelParamKey, floatVal) == NO_ERROR) in setParameters()
257 && (floatVal <= 0.0)) { in setParameters()
258 s.hdmi.fixedLvl = floatVal; in setParameters()
265 if ((param.getFloat(kVideoDelayCompParamKey, floatVal) == NO_ERROR) && in setParameters()
266 (floatVal >= 0.0) && in setParameters()
267 (floatVal <= AudioOutput::kMaxDelayCompensationMSec)) { in setParameters()
268 s.videoDelayCompUsec = static_cast<uint32_t>(floatVal * 1000.0); in setParameters()