2010-08-18 08:29:03 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#DBG="gdb --args "
|
|
|
|
#DBG="strace"
|
2010-10-08 22:23:05 +02:00
|
|
|
#DBG="valgrind --leak-check=full"
|
2010-08-18 08:29:03 +02:00
|
|
|
CFGFILE="/tmp/alsaloop.test.cfg"
|
|
|
|
|
|
|
|
test1() {
|
|
|
|
echo "TEST1"
|
2010-10-07 20:38:36 +02:00
|
|
|
$DBG ./alsaloop -C hw:1,0 -P plughw:0,0 \
|
2010-08-18 08:29:03 +02:00
|
|
|
--tlatency 50000 \
|
|
|
|
--mixer "name='Master Playback Volume'@name='Master Playback Volume'" \
|
|
|
|
--mixer "name='Master Playback Switch'@name='Master Playback Switch'" \
|
2010-10-08 15:10:23 +02:00
|
|
|
--mixer "name='PCM Playback Volume'" \
|
|
|
|
--ossmixer "Master@VOLUME" \
|
|
|
|
--ossmixer "PCM@PCM"
|
2010-08-18 08:29:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
test2() {
|
|
|
|
echo "TEST2"
|
|
|
|
cat > $CFGFILE <<EOF
|
|
|
|
# first job
|
|
|
|
-C hw:1,0,0 -P hw:0,0,0 --tlatency 50000 --thread 1 \
|
|
|
|
--mixer "name='Master Playback Volume'@name='Master Playback Volume'" \
|
|
|
|
--mixer "name='Master Playback Switch'@name='Master Playback Switch'" \
|
|
|
|
--mixer "name='PCM Playback Volume'"
|
|
|
|
# next line - second job
|
|
|
|
-C hw:1,0,1 -P hw:0,1,0 --tlatency 50000 --thread 2
|
|
|
|
EOF
|
|
|
|
$DBG ./alsaloop -d --config $CFGFILE
|
|
|
|
}
|
|
|
|
|
2010-10-06 18:51:29 +02:00
|
|
|
test3() {
|
2010-10-06 20:34:03 +02:00
|
|
|
echo "TEST3"
|
2010-10-06 18:51:29 +02:00
|
|
|
cat > $CFGFILE <<EOF
|
2010-10-06 20:34:03 +02:00
|
|
|
-C hw:1,0,0 -P plug:dmix:0 --tlatency 50000 --thread 0 \
|
2010-10-06 18:51:29 +02:00
|
|
|
--mixer "name='Master Playback Volume'@name='Master Playback Volume'" \
|
|
|
|
--mixer "name='Master Playback Switch'@name='Master Playback Switch'" \
|
2010-10-08 22:23:05 +02:00
|
|
|
--mixer "name='PCM Playback Volume'" \
|
|
|
|
--ossmixer "name=Master@VOLUME"
|
2010-10-06 20:34:03 +02:00
|
|
|
-C hw:1,0,1 -P plug:dmix:0 --tlatency 50000 --thread 1
|
|
|
|
-C hw:1,0,2 -P plug:dmix:0 --tlatency 50000 --thread 2
|
|
|
|
-C hw:1,0,3 -P plug:dmix:0 --tlatency 50000 --thread 3
|
|
|
|
-C hw:1,0,4 -P plug:dmix:0 --tlatency 50000 --thread 4
|
|
|
|
-C hw:1,0,5 -P plug:dmix:0 --tlatency 50000 --thread 5
|
|
|
|
-C hw:1,0,6 -P plug:dmix:0 --tlatency 50000 --thread 6
|
|
|
|
-C hw:1,0,7 -P plug:dmix:0 --tlatency 50000 --thread 7
|
2010-10-06 18:51:29 +02:00
|
|
|
EOF
|
|
|
|
$DBG ./alsaloop --config $CFGFILE
|
|
|
|
}
|
|
|
|
|
2010-10-07 20:38:36 +02:00
|
|
|
test4() {
|
|
|
|
echo "TEST4"
|
|
|
|
$DBG ./alsaloop -C hw:1,0 -P plughw:0,0 -a off -r 11025 \
|
|
|
|
--tlatency 50000 \
|
|
|
|
--mixer "name='Master Playback Volume'@name='Master Playback Volume'" \
|
|
|
|
--mixer "name='Master Playback Switch'@name='Master Playback Switch'" \
|
|
|
|
--mixer "name='PCM Playback Volume'"
|
|
|
|
}
|
|
|
|
|
2010-10-08 22:23:05 +02:00
|
|
|
test5() {
|
|
|
|
echo "TEST5"
|
|
|
|
cat > $CFGFILE <<EOF
|
|
|
|
-C hw:1,0,0 -P plughw:0,0 --tlatency 50000 --thread 1 \
|
|
|
|
--mixer "name='Master Playback Volume'@name='Master Playback Volume'" \
|
|
|
|
--mixer "name='Master Playback Switch'@name='Master Playback Switch'" \
|
|
|
|
--mixer "name='PCM Playback Volume'" \
|
|
|
|
--ossmixer "name=Master@VOLUME"
|
|
|
|
-C hw:1,0,1 -P plughw:0,1 --tlatency 50000 --thread 2
|
|
|
|
EOF
|
|
|
|
$DBG ./alsaloop --config $CFGFILE
|
|
|
|
}
|
|
|
|
|
2010-08-18 08:29:03 +02:00
|
|
|
case "$1" in
|
|
|
|
test1) test1 ;;
|
|
|
|
test2) test2 ;;
|
2010-10-06 18:51:29 +02:00
|
|
|
test3) test3 ;;
|
2010-10-07 20:38:36 +02:00
|
|
|
test4) test4 ;;
|
2010-10-08 22:23:05 +02:00
|
|
|
test5) test5 ;;
|
2010-08-18 08:29:03 +02:00
|
|
|
*) test1 ;;
|
|
|
|
esac
|