mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
alsasink: fix high sample rates being rejected
An ALSA sink may select a different rate (as we use the _set_rate_near API, which is not guaranteed to set the exact target rate). The rest of the code seems to already handle this well, as output from a 88200 Hz file seems to have the correct pitch when selecting a 96 kHz rate.
This commit is contained in:
parent
361f2b169c
commit
8d29fe8834
1 changed files with 0 additions and 9 deletions
|
@ -376,8 +376,6 @@ retry:
|
|||
rrate = alsa->rate;
|
||||
CHECK (snd_pcm_hw_params_set_rate_near (alsa->handle, params, &rrate, NULL),
|
||||
no_rate);
|
||||
if (rrate != alsa->rate)
|
||||
goto rate_match;
|
||||
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
/* get and dump some limits */
|
||||
|
@ -507,13 +505,6 @@ no_rate:
|
|||
alsa->rate, snd_strerror (err)));
|
||||
return err;
|
||||
}
|
||||
rate_match:
|
||||
{
|
||||
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
||||
("Rate doesn't match (requested %iHz, get %iHz)", alsa->rate, rrate));
|
||||
snd_pcm_hw_params_free (params);
|
||||
return -EINVAL;
|
||||
}
|
||||
buffer_size:
|
||||
{
|
||||
GST_ELEMENT_ERROR (alsa, RESOURCE, SETTINGS, (NULL),
|
||||
|
|
Loading…
Reference in a new issue