sof/tools/test/audio/asrc_run.sh

15 lines
370 B
Bash
Raw Normal View History

#!/bin/bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2020 Intel Corporation. All rights reserved.
if [ -z "$6" ]; then
echo "Usage: $0 <bits in> <bits out> <rate in> <rate out> <input> <output>"
echo "Example: $0 16 16 32000 48000 input.raw output.raw"
exit
fi
COMP=asrc
DIRECTION=playback
./comp_run.sh $COMP $DIRECTION $1 $2 $3 $4 $5 $6