mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 22:05:41 +01:00
Allow frequencies down to 30 Hz
Signed-off-by: Dan McGee <dpmcgee@gmail.com>
This commit is contained in:
parent
7d051f7e10
commit
f0a3bdc88b
1 changed files with 1 additions and 1 deletions
|
@ -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':
|
||||
|
|
Loading…
Reference in a new issue