forked from sox_ng/sox_ng
12 lines
158 B
Bash
12 lines
158 B
Bash
#! /bin/sh
|
|
|
|
# Test reading of AIFC ALAW encoding
|
|
|
|
rm -f core core.* out.wav
|
|
|
|
${sox:-sox} alaw.aifc out.wav
|
|
status=$?
|
|
|
|
rm -f core core.* out.wav
|
|
|
|
exit $status
|