#!/bin/sh
#
# Run aplay to feed silence to the amp. This avoids 'pops' on the speaker,
# caused by a voltage diff on the amp input. Also avoids certain amps from
# being automatically powered off.
#

start()
{
    /usr/bin/qiba-aplay-loop.sh &
}

case "$1" in

"start")
    start
    ;;

"stop")
    ;;

esac
