[vlc-commits] PulseAudio: use channel map name rather than pretty name in debug
Rémi Denis-Courmont
git at videolan.org
Wed Jul 20 17:10:08 CEST 2011
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Jul 20 18:08:59 2011 +0300| [25f179e1f61d9a10bcf210c9a1bfe73fae43879a] | committer: Rémi Denis-Courmont
PulseAudio: use channel map name rather than pretty name in debug
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=25f179e1f61d9a10bcf210c9a1bfe73fae43879a
---
modules/audio_output/pulse.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/audio_output/pulse.c b/modules/audio_output/pulse.c
index 1381559..07632c9 100644
--- a/modules/audio_output/pulse.c
+++ b/modules/audio_output/pulse.c
@@ -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 : "?");
}
More information about the vlc-commits
mailing list