mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	alsa: rewrite mixer open/close, cache mixer accesses in probe
The ALSA mixer can be opened multiple times (especially for UCM in the probe). This adds a simple mixer cache to prevent multiple open calls. Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
		
							parent
							
								
									6438e5c46d
								
							
						
					
					
						commit
						3bd7c70c51
					
				
					 9 changed files with 177 additions and 151 deletions
				
			
		| 
						 | 
				
			
			@ -1726,85 +1726,88 @@ static int prepare_mixer(snd_mixer_t *mixer, const char *dev) {
 | 
			
		|||
    return 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
snd_mixer_t *pa_alsa_open_mixer(int alsa_card_index, char **ctl_device) {
 | 
			
		||||
    int err;
 | 
			
		||||
    snd_mixer_t *m;
 | 
			
		||||
    char *md;
 | 
			
		||||
    snd_pcm_info_t* info;
 | 
			
		||||
    snd_pcm_info_alloca(&info);
 | 
			
		||||
 | 
			
		||||
    if ((err = snd_mixer_open(&m, 0)) < 0) {
 | 
			
		||||
        pa_log("Error opening mixer: %s", pa_alsa_strerror(err));
 | 
			
		||||
        return NULL;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /* Then, try by card index */
 | 
			
		||||
    md = pa_sprintf_malloc("hw:%i", alsa_card_index);
 | 
			
		||||
    if (prepare_mixer(m, md) >= 0) {
 | 
			
		||||
 | 
			
		||||
        if (ctl_device)
 | 
			
		||||
            *ctl_device = md;
 | 
			
		||||
        else
 | 
			
		||||
            pa_xfree(md);
 | 
			
		||||
 | 
			
		||||
        return m;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
snd_mixer_t *pa_alsa_open_mixer(pa_hashmap *mixers, int alsa_card_index, bool probe) {
 | 
			
		||||
    char *md = pa_sprintf_malloc("hw:%i", alsa_card_index);
 | 
			
		||||
    snd_mixer_t *m = pa_alsa_open_mixer_by_name(mixers, md, probe);
 | 
			
		||||
    pa_xfree(md);
 | 
			
		||||
 | 
			
		||||
    snd_mixer_close(m);
 | 
			
		||||
    return NULL;
 | 
			
		||||
    return m;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
snd_mixer_t *pa_alsa_open_mixer_by_name(const char *dev) {
 | 
			
		||||
snd_mixer_t *pa_alsa_open_mixer_by_name(pa_hashmap *mixers, const char *dev, bool probe) {
 | 
			
		||||
    int err;
 | 
			
		||||
    snd_mixer_t *m;
 | 
			
		||||
    pa_alsa_mixer *pm;
 | 
			
		||||
 | 
			
		||||
    pa_assert(mixers);
 | 
			
		||||
    pa_assert(dev);
 | 
			
		||||
 | 
			
		||||
    pm = pa_hashmap_get(mixers, dev);
 | 
			
		||||
    if (pm) {
 | 
			
		||||
        if (!probe)
 | 
			
		||||
            pm->used_for_probe_only = false;
 | 
			
		||||
        return pm->mixer_handle;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if ((err = snd_mixer_open(&m, 0)) < 0) {
 | 
			
		||||
        pa_log("Error opening mixer: %s", pa_alsa_strerror(err));
 | 
			
		||||
        return NULL;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (prepare_mixer(m, dev) >= 0)
 | 
			
		||||
        return m;
 | 
			
		||||
    if (prepare_mixer(m, dev) >= 0) {
 | 
			
		||||
        pm = pa_xnew0(pa_alsa_mixer, 1);
 | 
			
		||||
        if (pm) {
 | 
			
		||||
            pm->used_for_probe_only = probe;
 | 
			
		||||
            pm->mixer_handle = m;
 | 
			
		||||
            pa_hashmap_put(mixers, pa_xstrdup(dev), pm);
 | 
			
		||||
            return m;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    snd_mixer_close(m);
 | 
			
		||||
    return NULL;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
snd_mixer_t *pa_alsa_open_mixer_for_pcm(snd_pcm_t *pcm, char **ctl_device) {
 | 
			
		||||
    snd_mixer_t *m;
 | 
			
		||||
snd_mixer_t *pa_alsa_open_mixer_for_pcm(pa_hashmap *mixers, snd_pcm_t *pcm, bool probe) {
 | 
			
		||||
    snd_pcm_info_t* info;
 | 
			
		||||
    snd_pcm_info_alloca(&info);
 | 
			
		||||
 | 
			
		||||
    pa_assert(pcm);
 | 
			
		||||
 | 
			
		||||
    if (snd_pcm_info(pcm, info) >= 0) {
 | 
			
		||||
        char *md;
 | 
			
		||||
        int card_idx;
 | 
			
		||||
 | 
			
		||||
        if ((card_idx = snd_pcm_info_get_card(info)) >= 0) {
 | 
			
		||||
 | 
			
		||||
            md = pa_sprintf_malloc("hw:%i", card_idx);
 | 
			
		||||
            m = pa_alsa_open_mixer_by_name(md);
 | 
			
		||||
            if (m) {
 | 
			
		||||
                if (ctl_device)
 | 
			
		||||
                    *ctl_device = md;
 | 
			
		||||
                else
 | 
			
		||||
                    pa_xfree(md);
 | 
			
		||||
 | 
			
		||||
                return m;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            pa_xfree(md);
 | 
			
		||||
        }
 | 
			
		||||
        if ((card_idx = snd_pcm_info_get_card(info)) >= 0)
 | 
			
		||||
            return pa_alsa_open_mixer(mixers, card_idx, probe);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return NULL;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void pa_alsa_mixer_set_fdlist(pa_hashmap *mixers, snd_mixer_t *mixer_handle, pa_mainloop_api *ml)
 | 
			
		||||
{
 | 
			
		||||
    pa_alsa_mixer *pm;
 | 
			
		||||
    void *state;
 | 
			
		||||
 | 
			
		||||
    PA_HASHMAP_FOREACH(pm, mixers, state)
 | 
			
		||||
        if (pm->mixer_handle == mixer_handle) {
 | 
			
		||||
            pm->used_for_probe_only = false;
 | 
			
		||||
            if (!pm->fdl) {
 | 
			
		||||
                pm->fdl = pa_alsa_fdlist_new();
 | 
			
		||||
                if (pm->fdl)
 | 
			
		||||
                    pa_alsa_fdlist_set_handle(pm->fdl, pm->mixer_handle, NULL, ml);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void pa_alsa_mixer_free(pa_alsa_mixer *mixer)
 | 
			
		||||
{
 | 
			
		||||
    if (mixer->fdl)
 | 
			
		||||
        pa_alsa_fdlist_free(mixer->fdl);
 | 
			
		||||
    if (mixer->mixer_handle)
 | 
			
		||||
        snd_mixer_close(mixer->mixer_handle);
 | 
			
		||||
    pa_xfree(mixer);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int pa_alsa_get_hdmi_eld(snd_hctl_elem_t *elem, pa_hdmi_eld *eld) {
 | 
			
		||||
 | 
			
		||||
    /* The ELD format is specific to HDA Intel sound cards and defined in the
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue