mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
spa-resample: quality 0 is a valid value.
This commit is contained in:
parent
046f41c31c
commit
484d211119
1 changed files with 1 additions and 1 deletions
|
|
@ -252,7 +252,7 @@ int main(int argc, char *argv[])
|
|||
break;
|
||||
case 'q':
|
||||
ret = atoi(optarg);
|
||||
if (ret <= 0) {
|
||||
if (ret < 0) {
|
||||
fprintf(stderr, "error: bad quality %s\n", optarg);
|
||||
goto error_usage;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue