mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-12 14:59:44 +03:00
test: ipa: rkisp1-utils: Fix capitalization of hex numbers
Fix capitalization of the hexdecimal numbers in the test for conversion between floating point and fixed point numbers. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
9d152e9c66
commit
9b29eba7a2
1 changed files with 7 additions and 7 deletions
|
@ -53,13 +53,13 @@ protected:
|
|||
* affect the result.
|
||||
*/
|
||||
std::map<double, uint16_t> testCases = {
|
||||
{ 7.992, 0x3FF },
|
||||
{ 7.992, 0xBFF },
|
||||
{ 0.2, 0x01A },
|
||||
{ -0.2, 0x7E6 },
|
||||
{ -0.8, 0x79A },
|
||||
{ -0.4, 0x7CD },
|
||||
{ -1.4, 0x74D },
|
||||
{ 7.992, 0x3ff },
|
||||
{ 7.992, 0xbff },
|
||||
{ 0.2, 0x01a },
|
||||
{ -0.2, 0x7e6 },
|
||||
{ -0.8, 0x79a },
|
||||
{ -0.4, 0x7cd },
|
||||
{ -1.4, 0x74d },
|
||||
{ -8, 0x400 },
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue