mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-15 16:35:06 +03:00
Test that both discrete and range based stream format descriptions result in good discrete frame sizes. The range based stream formats needs to be fitted with a table of resolutions inside libcamera so if that table is updated this test might need to be updated. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11 lines
351 B
Meson
11 lines
351 B
Meson
stream_tests = [
|
|
[ 'stream_formats', 'stream_formats.cpp' ],
|
|
]
|
|
|
|
foreach t : stream_tests
|
|
exe = executable(t[0], t[1],
|
|
dependencies : libcamera_dep,
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
test(t[0], exe, suite: 'stream', is_parallel: false)
|
|
endforeach
|