Commit 91815b7b authored by Rafaël Carré's avatar Rafaël Carré

Mosaic: don't reinvent GetAddress

parent 535cb1f3
...@@ -43,17 +43,6 @@ typedef struct bridge_t ...@@ -43,17 +43,6 @@ typedef struct bridge_t
static bridge_t *GetBridge( vlc_object_t *p_object ) static bridge_t *GetBridge( vlc_object_t *p_object )
{ {
vlc_object_t *p_libvlc = VLC_OBJECT( p_object->p_libvlc ); return var_GetAddress(VLC_OBJECT(p_object->p_libvlc), "mosaic-struct");
vlc_value_t val;
if( var_Get( p_libvlc, "mosaic-struct", &val ) != VLC_SUCCESS )
{
return NULL;
}
else
{
return val.p_address;
}
} }
#define GetBridge(a) GetBridge( VLC_OBJECT(a) ) #define GetBridge(a) GetBridge( VLC_OBJECT(a) )
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