]> git.sesse.net Git - vlc/commitdiff
PulseAudio: use channel map name rather than pretty name in debug
authorRémi Denis-Courmont <remi@remlab.net>
Wed, 20 Jul 2011 15:08:59 +0000 (18:08 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Wed, 20 Jul 2011 15:10:02 +0000 (18:10 +0300)
modules/audio_output/pulse.c

index 13815599a23459adcb45bba9d537ca2437b5f717..07632c9e0153a19647ed943b0f23597028adad2f 100644 (file)
@@ -477,7 +477,7 @@ static int Open(vlc_object_t *obj)
         msg_Err(aout, "unsupported channel map");
         return VLC_EGENERIC;
     } else {
-        const char *name = pa_channel_map_to_pretty_name(&map);
+        const char *name = pa_channel_map_to_name(&map);
         msg_Dbg(aout, "using %s channel map", (name != NULL) ? name : "?");
     }