Commit 177d9f10 authored by Antoine Cellerier's avatar Antoine Cellerier

Revert "libvlc does not need an object name"

This prevents the libvlc object from having it's name set to
"memcpymmxext" by module_Need.
This reverts commit 15e7d182.
parent cd133b2d
...@@ -207,6 +207,7 @@ libvlc_int_t * libvlc_InternalCreate( void ) ...@@ -207,6 +207,7 @@ libvlc_int_t * libvlc_InternalCreate( void )
priv->p_playlist = NULL; priv->p_playlist = NULL;
priv->p_interaction = NULL; priv->p_interaction = NULL;
priv->p_vlm = NULL; priv->p_vlm = NULL;
p_libvlc->psz_object_name = strdup( "libvlc" );
/* Initialize message queue */ /* Initialize message queue */
msg_Create( p_libvlc ); msg_Create( p_libvlc );
......
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