I have been using (https://bitbucket.org/edwardcw/libvlc-a ... sample/src) sample code as refernce to create a custom video player using libvlc.I am streaming a rtp stream which contains embedded teletext .I need to enable teletext and go to full screen from my android code.I have found in vlc forum(https://www.videolan.org/developers/vlc ... video.html) that following two native function are available:
libvlc_toggle_teletext (libvlc_media_player_t *p_mi)
libvlc_toggle_fullscreen (libvlc_media_player_t *p_mi)
Can anyone help me how to use above two function from android source or how to enable these two functionality from native to android?