test: Use float values for brightness, contrast and saturation
Two tests use the brightness, contrast and saturation controls with integer failures. They were not updated by commiteff4b1aa01which turned those controls into floats. This doesn't cause test failures as the control API converts the value types. For correctness, update the tests to use float values. Fixes:eff4b1aa01("libcamera: controls: Reorder and update description of existing controls") Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
@@ -42,9 +42,9 @@ protected:
|
||||
const ControlInfoMap &infoMap = camera_->controls();
|
||||
ControlList list(infoMap);
|
||||
|
||||
list.set(controls::Brightness, 255);
|
||||
list.set(controls::Contrast, 128);
|
||||
list.set(controls::Saturation, 50);
|
||||
list.set(controls::Brightness, 0.5f);
|
||||
list.set(controls::Contrast, 1.2f);
|
||||
list.set(controls::Saturation, 0.2f);
|
||||
|
||||
/*
|
||||
* Serialize the control list, this should fail as the control
|
||||
|
||||
Reference in New Issue
Block a user