diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-05-27 15:54:44 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-06-19 15:26:01 +0300 |
commit | e0b6971cb5e15529396b0c4795058dec2329f97e (patch) | |
tree | 7e4f5089cde972cb5503636ab0636d1042e97465 /scripts/vsp-runner.sh | |
parent | b5f052feec329a39d4f176ef07f9b99370c7583d (diff) |
vsp-lib: Create a function to get subdev from entity name
And use the function in the vsp-runner script instead of duplicating the
same code in multiple locations.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'scripts/vsp-runner.sh')
-rwxr-xr-x | scripts/vsp-runner.sh | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/scripts/vsp-runner.sh b/scripts/vsp-runner.sh index 6aa72a2..d944e74 100755 --- a/scripts/vsp-runner.sh +++ b/scripts/vsp-runner.sh @@ -102,11 +102,10 @@ execute() { case $cmd in hgo) if [ "x$options" = xinfinite ] ; then - $yavta -c -n 4 \ - `$mediactl -d $mdev -e "$dev hgo histo"` + $yavta -c -n 4 $(vsp1_entity_subdev "hgo histo") else $yavta -c10 -n 10 --file=histo-#.bin $options \ - `$mediactl -d $mdev -e "$dev hgo histo"` + $(vsp1_entity_subdev "hgo histo") fi ;; @@ -119,10 +118,10 @@ execute() { if [ "x$options" = xinfinite ] ; then $yavta -c -n 4 -f $infmt -s $size --file=$file $options \ - `$mediactl -d $mdev -e "$dev $rpf input"` + $(vsp1_entity_subdev "$rpf input") else $yavta -c10 -n 4 -f $infmt -s $size --file=$file $options \ - `$mediactl -d $mdev -e "$dev $rpf input"` + $(vsp1_entity_subdev "$rpf input") fi rm -f $file @@ -134,10 +133,10 @@ execute() { if [ "x$options" = xinfinite ] ; then $yavta -c -n 4 -f $outfmt -s $size \ - `$mediactl -d $mdev -e "$dev $wpf output"` + $(vsp1_entity_subdev "$wpf output") else $yavta -c10 -n 4 -f $outfmt -s $size --skip 7 -F $options \ - `$mediactl -d $mdev -e "$dev $wpf output"` + $(vsp1_entity_subdev "$wpf output") fi ;; esac |