mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-07 13:30:03 -05:00
Merge branch 'master' of ssh://rootserver/home/lennart/git/public/pulseaudio
This commit is contained in:
commit
6ba3333030
41 changed files with 4140 additions and 2911 deletions
|
|
@ -1173,7 +1173,7 @@ static void sink_update_requested_latency_cb(pa_sink *s) {
|
|||
|
||||
/* Let's check whether we now use only a smaller part of the
|
||||
buffer then before. If so, we need to make sure that subsequent
|
||||
rewinds are relative to the new maxium fill level and not to the
|
||||
rewinds are relative to the new maximum fill level and not to the
|
||||
current fill level. Thus, let's do a full rewind once, to clear
|
||||
things up. */
|
||||
|
||||
|
|
@ -1300,7 +1300,7 @@ static void thread_func(void *userdata) {
|
|||
/* USB devices on ALSA seem to hit a buffer
|
||||
* underrun during the first iterations much
|
||||
* quicker then we calculate here, probably due to
|
||||
* the transport latency. To accomodate for that
|
||||
* the transport latency. To accommodate for that
|
||||
* we artificially decrease the sleep time until
|
||||
* we have filled the buffer at least once
|
||||
* completely.*/
|
||||
|
|
@ -1620,6 +1620,11 @@ pa_sink *pa_alsa_sink_new(pa_module *m, pa_modargs *ma, const char*driver, pa_ca
|
|||
pa_assert(u->device_name);
|
||||
pa_log_info("Successfully opened device %s.", u->device_name);
|
||||
|
||||
if (pa_alsa_pcm_is_modem(u->pcm_handle)) {
|
||||
pa_log_notice("Device %s is modem, refusing further initialization.", u->device_name);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (profile)
|
||||
pa_log_info("Selected configuration '%s' (%s).", profile->description, profile->name);
|
||||
|
||||
|
|
|
|||
|
|
@ -1475,6 +1475,11 @@ pa_source *pa_alsa_source_new(pa_module *m, pa_modargs *ma, const char*driver, p
|
|||
pa_assert(u->device_name);
|
||||
pa_log_info("Successfully opened device %s.", u->device_name);
|
||||
|
||||
if (pa_alsa_pcm_is_modem(u->pcm_handle)) {
|
||||
pa_log_notice("Device %s is modem, refusing further initialization.", u->device_name);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (profile)
|
||||
pa_log_info("Selected configuration '%s' (%s).", profile->description, profile->name);
|
||||
|
||||
|
|
|
|||
|
|
@ -705,7 +705,7 @@ snd_pcm_t *pa_alsa_open_by_device_id_auto(
|
|||
} else {
|
||||
/* Hmm, so the next entry does not have the same
|
||||
* number of channels, so let's go backwards until we
|
||||
* find the next entry with a differnt number of
|
||||
* find the next entry with a different number of
|
||||
* channels */
|
||||
|
||||
for (i--; i >= 0; i--)
|
||||
|
|
@ -1063,7 +1063,7 @@ snd_mixer_elem_t *pa_alsa_find_elem(snd_mixer_t *mixer, const char *name, const
|
|||
fallback_elem = NULL;
|
||||
}
|
||||
|
||||
pa_log_warn("Cannot find fallback mixer control \"%s\" or mixer control is no combination of switch/volume.", snd_mixer_selem_id_get_name(sid));
|
||||
pa_log_info("Cannot find fallback mixer control \"%s\" or mixer control is no combination of switch/volume.", snd_mixer_selem_id_get_name(sid));
|
||||
}
|
||||
|
||||
if (elem && fallback_elem) {
|
||||
|
|
@ -1769,3 +1769,15 @@ pa_bool_t pa_alsa_pcm_is_hw(snd_pcm_t *pcm) {
|
|||
|
||||
return snd_pcm_info_get_card(info) >= 0;
|
||||
}
|
||||
|
||||
pa_bool_t pa_alsa_pcm_is_modem(snd_pcm_t *pcm) {
|
||||
snd_pcm_info_t* info;
|
||||
snd_pcm_info_alloca(&info);
|
||||
|
||||
pa_assert(pcm);
|
||||
|
||||
if (snd_pcm_info(pcm, info) < 0)
|
||||
return FALSE;
|
||||
|
||||
return snd_pcm_info_get_class(info) == SND_PCM_CLASS_MODEM;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -141,4 +141,6 @@ char *pa_alsa_get_reserve_name(const char *device);
|
|||
|
||||
pa_bool_t pa_alsa_pcm_is_hw(snd_pcm_t *pcm);
|
||||
|
||||
pa_bool_t pa_alsa_pcm_is_modem(snd_pcm_t *pcm);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue