/usr/bin/ssr is in soundscaperenderer-common 0.4.2~dfsg-5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/bin/bash
# default executable
SSR_EXECUTABLE=ssr-binaural
# add all options except renderer type to $OPTIONS:
while [[ $1 ]]; do
case "$1" in
--binaural)
SSR_EXECUTABLE=ssr-binaural
;;
--brs)
SSR_EXECUTABLE=ssr-brs
;;
--bpb)
SSR_EXECUTABLE=ssr-bpb
;;
--wfs)
SSR_EXECUTABLE=ssr-wfs
;;
--aap)
SSR_EXECUTABLE=ssr-aap
;;
--vbap)
SSR_EXECUTABLE=ssr-vbap
;;
--generic)
SSR_EXECUTABLE=ssr-generic
;;
--nfc-hoa)
SSR_EXECUTABLE=ssr-nfc-hoa
;;
*)
OPTIONS+=("$1")
;;
esac
shift
done
SSR_EXECUTABLE=$(dirname $0)/$SSR_EXECUTABLE
if [ ! -x $SSR_EXECUTABLE ]
then
echo "'$SSR_EXECUTABLE' isn't available. Did you compile and install it?"
exit 1
fi
$SSR_EXECUTABLE "${OPTIONS[@]}"
|