Commit 3c345df2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

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

(cherry picked from commit 25f179e1f61d9a10bcf210c9a1bfe73fae43879a)
parent 541a18d0
...@@ -383,7 +383,7 @@ static int Open(vlc_object_t *obj) ...@@ -383,7 +383,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