I found methods:<br>libvlc_media_player_get_time( libvlc_media_player_t *, libvlc_exception_t *)<br>libvlc_media_player_set_time( libvlc_media_player_t *, libvlc_exception_t *)<br>libvlc_audio_toggle_mute( libvlc_instance_t *)<br>

libvlc_audio_get_mute( libvlc_instance_t *)<br><br>How can I access these methods within the Run function of a plugin?<br><br>I have a pointer to an instance of libvlc_int_t through <a href="http://www.videolan.org/developers/vlc/doc/doxygen/html/structintf__thread__t.html">p_intf</a>->p_libvlc.  Is it possible to get a pointer to <a href="http://www.videolan.org/developers/vlc/doc/doxygen/html/structlibvlc__media__player__t.html">libvlc_media_player_t</a> or <a href="http://www.videolan.org/developers/vlc/doc/doxygen/html/structlibvlc__instance__t.html">libvlc_instance_t</a> so I can use these methods?<br>
<br><br>