blob: d944e743744826c81259c6aff78a5ff9688f7ad4 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
#!/bin/sh
set -e
source vsp-lib.sh
genimage='./gen-image'
mediactl='media-ctl'
yavta='yavta'
# -----------------------------------------------------------------------------
# Input frame generation
#
generate_input_frame() {
local file=$1
local format=$2
local size=$3
local alpha=
local options=
case $format in
ARGB555)
alpha=255
;;
ABGR32 | ARGB32)
alpha=200
;;
XRGB555 | XBGR32 | XRGB32)
alpha=0
;;
*)
alpha=255
;;
esac
$(format_v4l2_is_yuv $format) && options="$options -y"
$genimage -f $format -s $size -a $alpha $options -o $file \
frames/frame-reference-1024x768.pnm
}
# ------------------------------------------------------------------------------
# Parse the command line and retrieve the formats
#
syntax() {
echo "Syntax: vsp-runner.sh dev cmd [...]"
echo ""
echo "Supported commands:"
echo " hgo [options]"
echo " input index infmt [options]"
echo " output index outfmt [options]"
}
parse() {
if [ $# -lt 2 ] ; then
syntax
return 1
fi
mdev=$1
dev=`$mediactl -d $mdev -p | grep 'bus info' | sed 's/.*platform://'`
if [ -z $dev ] ; then
echo "Error: Device $dev doesn't exist"
syntax
return 1
fi
cmd=$2
case $cmd in
hgo)
options=$3
;;
input)
index=$3
infmt=$4
options=$5
;;
output)
index=$3
outfmt=$4
options=$5
;;
*)
echo "Invalid command $cmd"
;;
esac
}
# ------------------------------------------------------------------------------
# Execute the command
#
execute() {
case $cmd in
hgo)
if [ "x$options" = xinfinite ] ; then
$yavta -c -n 4 $(vsp1_entity_subdev "hgo histo")
else
$yavta -c10 -n 10 --file=histo-#.bin $options \
$(vsp1_entity_subdev "hgo histo")
fi
;;
input)
rpf=rpf.$index
size=$(vsp1_entity_get_size $rpf 0)
file=${rpf}.bin
generate_input_frame $file $infmt $size
if [ "x$options" = xinfinite ] ; then
$yavta -c -n 4 -f $infmt -s $size --file=$file $options \
$(vsp1_entity_subdev "$rpf input")
else
$yavta -c10 -n 4 -f $infmt -s $size --file=$file $options \
$(vsp1_entity_subdev "$rpf input")
fi
rm -f $file
;;
output)
wpf=wpf.$index
size=$(vsp1_entity_get_size $wpf 1)
if [ "x$options" = xinfinite ] ; then
$yavta -c -n 4 -f $outfmt -s $size \
$(vsp1_entity_subdev "$wpf output")
else
$yavta -c10 -n 4 -f $outfmt -s $size --skip 7 -F $options \
$(vsp1_entity_subdev "$wpf output")
fi
;;
esac
}
parse $* && execute
|