3dd5725a84
The rkisp1 IPA has some utility functions to convert between fixed and floating point numbers. Move those to libipa so they're available for use in other IPA modules too. Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18 lines
534 B
Meson
18 lines
534 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
subdir('libipa')
|
|
|
|
ipa_test = [
|
|
{'name': 'ipa_module_test', 'sources': ['ipa_module_test.cpp']},
|
|
{'name': 'ipa_interface_test', 'sources': ['ipa_interface_test.cpp']},
|
|
]
|
|
|
|
foreach test : ipa_test
|
|
exe = executable(test['name'], test['sources'],
|
|
dependencies : [libcamera_private, libipa_dep],
|
|
link_with : [test_libraries],
|
|
include_directories : [test_includes_internal])
|
|
|
|
test(test['name'], exe, suite : 'ipa')
|
|
endforeach
|