mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-09 13:29:59 -05:00
modules: Make use of new function pa_modargs_get_sample_rate()
by using pa_modargs_get_sample_rate() we avoid inconsistant validity checking of the sample rate in various places Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
742b93d32c
commit
e74d4244a2
3 changed files with 3 additions and 6 deletions
|
|
@ -387,9 +387,7 @@ int pa_modargs_get_sample_spec(pa_modargs *ma, pa_sample_spec *rss) {
|
|||
pa_assert(rss);
|
||||
|
||||
ss = *rss;
|
||||
if ((pa_modargs_get_value_u32(ma, "rate", &ss.rate)) < 0 ||
|
||||
ss.rate <= 0 ||
|
||||
ss.rate > PA_RATE_MAX)
|
||||
if ((pa_modargs_get_sample_rate(ma, &ss.rate)) < 0)
|
||||
return -1;
|
||||
|
||||
channels = ss.channels;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue