[vlc-commits] PulseAudio: use channel map name rather than pretty name in debug
Rémi Denis-Courmont
git at videolan.org
Wed Jul 20 18:52:57 CEST 2011
vlc/vlc-1.1 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Jul 20 18:08:59 2011 +0300| [3c345df202d6b6e0755e89fab1521ada35f91611] | committer: Rémi Denis-Courmont
PulseAudio: use channel map name rather than pretty name in debug
(cherry picked from commit 25f179e1f61d9a10bcf210c9a1bfe73fae43879a)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=3c345df202d6b6e0755e89fab1521ada35f91611
---
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 46e57ac..b2f426b 100644
--- a/modules/audio_output/pulse.c
+++ b/modules/audio_output/pulse.c
@@ -383,7 +383,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