From 7c4ca246a6be1d76bca3482893d5e1b35c5c7fb9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 2 Sep 2009 19:44:55 +0300 Subject: [PATCH] PulseAudio: higher priority than ALSA Without this, the PulseAudio output is completely useless. PulseAudio provides ALSA emulation, so VLC would always use ALSA. Now, it will use ALSA if PulseAudio is not available, but avoid the PulseAudio ALSA emulation which makes more sense. Either way, if your PulseAudio setup is broken, you are screwed - this change makes no difference. --- modules/audio_output/pulse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/audio_output/pulse.c b/modules/audio_output/pulse.c index 2fc17a4eb2..f915a6b56e 100644 --- a/modules/audio_output/pulse.c +++ b/modules/audio_output/pulse.c @@ -97,7 +97,7 @@ static void uninit(aout_instance_t *p_aout); vlc_module_begin () set_shortname( "Pulse Audio" ) set_description( N_("Pulseaudio audio output") ) - set_capability( "audio output", 40 ) + set_capability( "audio output", 160 ) set_category( CAT_AUDIO ) set_subcategory( SUBCAT_AUDIO_AOUT ) add_shortcut( "pulseaudio" ) -- 2.39.5