blob: 396e05383df2060aff517713f36fad9838b531bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
#
# Test 1D histogram generation. Use a RPF -> WPF pipeline with the HGO hooked
# up at the RPF output.
#
source vsp-lib.sh
features="hgo rpf.0 wpf.0"
formats="RGB24 YUV444M"
test_histogram() {
test_start "histogram in $format"
pipe_configure rpf-hgo
format_configure rpf-hgo $format 1024x768
vsp_runner hgo &
vsp_runner rpf.0 &
vsp_runner wpf.0
result=$(compare_histograms)
test_complete $result
}
test_main() {
for format in $formats ; do
test_histogram $format
done
}
test_init $0 "$features"
test_run
|