Commit 26fb9276 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

aout: use vlc_custom_create

parent c1abcb01
......@@ -79,7 +79,8 @@ aout_instance_t * __aout_New( vlc_object_t * p_parent )
aout_instance_t * p_aout;
/* Allocate descriptor. */
p_aout = vlc_object_create( p_parent, VLC_OBJECT_AOUT );
p_aout = vlc_custom_create( p_parent, sizeof( *p_aout ), VLC_OBJECT_AOUT,
"audio output" );
if( p_aout == NULL )
{
return NULL;
......
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