I'm experimenting with a plugin that uses intf_thread_t.  I tried doing something like<br> VLC_TimeSet(p_intf->p_libvlc->i_object_id, 10, 0);<br>But now I see that I'm supposed to be using the new API.<br><a href="http://wiki.videolan.org/LibVLC_Tutorial">http://wiki.videolan.org/LibVLC_Tutorial</a><br>
<br>Its not clear to me how I'm supposed to get a libvlc_instance_t pointer from a libvlc_int_t or how to get a libvlc_media_instance_t for a libvlc_int_t.<br><br>Given a "intf_thread_t *p_intf" pointer and using the new API, how would I do the equivalent of <br>
 VLC_TimeSet(p_intf->p_libvlc->i_object_id, 10, 0);<br><br><br>