diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2017-02-10 13:30:08 +0000 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2017-02-12 23:55:38 +0200 |
commit | 50123fc029703b0e8aff01f09679dc18978f1275 (patch) | |
tree | 5c8e8d9f1c892d618df9b7f02cba09ee87c97870 /tests/vsp-unit-test-0018.sh | |
parent | bd78062df3293f9af8625624264bb9568ba5dc2f (diff) |
tests: Add RPF cropping test
Test both the input cropping size and position
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'tests/vsp-unit-test-0018.sh')
-rwxr-xr-x | tests/vsp-unit-test-0018.sh | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/vsp-unit-test-0018.sh b/tests/vsp-unit-test-0018.sh new file mode 100755 index 0000000..9d692cf --- /dev/null +++ b/tests/vsp-unit-test-0018.sh @@ -0,0 +1,36 @@ +#!/bin/sh + +# +# Test RPF crop using RGB. Use a RPF -> WPF pipeline, passing a selection of +# cropping windows. +# + +source vsp-lib.sh + +features="rpf.0 wpf.0" +crops="(0,0)/512x384 (32,32)/512x384 (32,64)/512x384 (64,32)/512x384" + +test_rpf_cropping() { + test_start "RPF crop from $crop" + + pipe_configure rpf-wpf 0 0 + format_configure rpf-wpf 0 0 RGB24 1024x768 ARGB32 --rpfcrop=$crop + + vsp_runner rpf.0 & + vsp_runner wpf.0 + + local result=$(compare_frames crop=${crop}) + + test_complete $result +} + +test_main() { + local crop + + for crop in $crops ; do + test_rpf_cropping $crop + done +} + +test_init $0 "$features" +test_run |