use of org.videolan.libvlc.IVLCVout in project vlc-android by GeoffreyMetais.
the class VideoPlayerActivity method sendMouseEvent.
private void sendMouseEvent(int action, int x, int y) {
if (mService == null)
return;
final IVLCVout vlcVout = mService.getVLCVout();
vlcVout.sendMouseEvent(action, 0, x, y);
}
Aggregations