Commit 25f179e1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

PulseAudio: use channel map name rather than pretty name in debug

parent a8f7c6da
...@@ -477,7 +477,7 @@ static int Open(vlc_object_t *obj) ...@@ -477,7 +477,7 @@ static int Open(vlc_object_t *obj)
msg_Err(aout, "unsupported channel map"); msg_Err(aout, "unsupported channel map");
return VLC_EGENERIC; return VLC_EGENERIC;
} else { } 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 : "?"); msg_Dbg(aout, "using %s channel map", (name != NULL) ? name : "?");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment