[vlc-devel] commit: libvlc: get right name of audio output module (Lukas Durfina )
git version control
git at videolan.org
Wed Nov 19 00:05:30 CET 2008
vlc | branch: master | Lukas Durfina <lukas.durfina at gmail.com> | Tue Nov 18 22:46:40 2008 +0100| [65ba74b32823a342293d860ad3dbd902ae6e71e1] | committer: Jean-Baptiste Kempf
libvlc: get right name of audio output module
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=65ba74b32823a342293d860ad3dbd902ae6e71e1
---
src/control/audio.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/control/audio.c b/src/control/audio.c
index 21147fe..e1575ce 100644
--- a/src/control/audio.c
+++ b/src/control/audio.c
@@ -87,7 +87,7 @@ VLC_PUBLIC_API libvlc_audio_output_t *
p_previous = p_actual;
}
}
- p_actual->psz_name = strdup( module_get_name( p_module, false ) );
+ p_actual->psz_name = strdup( module_get_object( p_module ) );
p_actual->psz_description = strdup( module_get_name( p_module, true ) );
p_actual->p_next = NULL;
if( p_previous != p_actual ) /* not first item */
More information about the vlc-devel
mailing list