summaryrefslogtreecommitdiff
path: root/scripts/vsp-runner.sh
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2016-06-18 02:23:36 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2016-06-20 02:29:33 +0300
commit306c53b308c2ff7b6344b413332bf7ea040e852a (patch)
treeb261f44ae828d5651c9fde114cf379d5333e8799 /scripts/vsp-runner.sh
parent6b5959c04c5afebded4471430fa7eceac81c1183 (diff)
vsp-lib: Replace vsp-runner script with a function from vsp-lib
This allows reusing variables internal to vsp-lib and getting rid of the mdev and format arguments to the vsp-runner invocations. As part of the transition, handle additional options with an explicit list of supported options instead of passing them straight to yavta. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'scripts/vsp-runner.sh')
-rwxr-xr-xscripts/vsp-runner.sh149
1 files changed, 0 insertions, 149 deletions
diff --git a/scripts/vsp-runner.sh b/scripts/vsp-runner.sh
deleted file mode 100755
index c4745c3..0000000
--- a/scripts/vsp-runner.sh
+++ /dev/null
@@ -1,149 +0,0 @@
-#!/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
- cmd=$2
-
- case $cmd in
- hgo)
- options=$3
- log=hgo
- ;;
-
- input)
- index=$3
- infmt=$4
- options=$5
- log=input.$index
- ;;
-
- output)
- index=$3
- outfmt=$4
- options=$5
- log=output.$index
- ;;
-
- *)
- echo "Invalid command $cmd"
- ;;
- esac
-}
-
-# ------------------------------------------------------------------------------
-# Execute the command
-#
-
-execute() {
- 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
-
- 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 $* || exit 1
-execute | ./logger.sh $log >> $logfile