add audio setup options

This commit is contained in:
Tomasz Moń
2009-02-25 19:10:52 +01:00
parent 79912510b4
commit 2c6afe730d
4 changed files with 17 additions and 1 deletions

12
tests.c
View File

@@ -861,6 +861,17 @@ void test_exp()
set_option(EXP_MAX, EXP_POSITION, x);
}
void test_usb()
{
int x;
for (x=0; x<=100; x++)
set_option(USB_AUDIO_PLAYBACK_MIX, USB_POSITION, x);
for (x=0; x<=36; x++)
set_option(USB_AUDIO_LEVEL, USB_POSITION, x);
}
void test_all()
{
test_wah();
@@ -874,4 +885,5 @@ void test_all()
test_delay();
test_reverb();
test_exp();
test_usb();
}