]> git.alsa-project.org Git - alsa-utils.git/commitdiff
Allow frequencies down to 30 Hz
authorDan McGee <dpmcgee@gmail.com>
Sun, 10 May 2009 00:27:06 +0000 (02:27 +0200)
committerJaroslav Kysela <perex@perex.cz>
Mon, 11 May 2009 07:06:57 +0000 (09:06 +0200)
Signed-off-by: Dan McGee <dpmcgee@gmail.com>
speaker-test/speaker-test.c

index 5e00ea4a62b450118a7b995c808d27686afc6bb5..38e546294f5d516112eb6c8fdbe2612375f79788 100644 (file)
@@ -861,7 +861,7 @@ int main(int argc, char *argv[]) {
       break;
     case 'f':
       freq = atof(optarg);
-      freq = freq < 50.0 ? 50.0 : freq;
+      freq = freq < 30.0 ? 30.0 : freq;
       freq = freq > 5000.0 ? 5000.0 : freq;
       break;
     case 'b':