Commit 65ba74b3 authored by Lukas Durfina's avatar Lukas Durfina Committed by Jean-Baptiste Kempf

libvlc: get right name of audio output module

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent fff34513
...@@ -87,7 +87,7 @@ VLC_PUBLIC_API libvlc_audio_output_t * ...@@ -87,7 +87,7 @@ VLC_PUBLIC_API libvlc_audio_output_t *
p_previous = p_actual; 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->psz_description = strdup( module_get_name( p_module, true ) );
p_actual->p_next = NULL; p_actual->p_next = NULL;
if( p_previous != p_actual ) /* not first item */ if( p_previous != p_actual ) /* not first item */
......
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