From: Filippo Carone Date: Sun, 9 Mar 2008 11:54:09 +0000 (+0100) Subject: do not catch VLCException in sample X-Git-Tag: 0.9.0-test0~2222 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=78461b33d410dbf95b95050c4c5b32b6c5cacd50;hp=9760d127ea6cdd08df0b311bee7d068147e42b3f;p=vlc do not catch VLCException in sample --- diff --git a/bindings/java/VLCExample.java b/bindings/java/VLCExample.java index e679698ee9..22bf29ab7e 100644 --- a/bindings/java/VLCExample.java +++ b/bindings/java/VLCExample.java @@ -71,28 +71,21 @@ public class VLCExample Thread.sleep(100); } - try - { - Video video = new Video(jvlc); - System.out.print(video.getWidth(mediaInstance)); - System.out.print("x"); - System.out.println(video.getHeight(mediaInstance)); - System.out.print("Fullscreen... "); - video.setFullscreen(mediaInstance, true); - Thread.sleep(3000); - System.out.println("real size."); - video.setFullscreen(mediaInstance, false); - System.out.print("Taking snapshot... "); - video.getSnapshot(mediaInstance, System.getProperty("user.dir") + "/snap.png", 0, 0); - System.out.println("taken. (see " + System.getProperty("user.dir") + "/snap.png )"); - Thread.sleep(2000); - System.out.println("Resizing to 300x300"); - video.setSize(300, 300); - } - catch (VLCException e) - { - e.printStackTrace(); - } + Video video = new Video(jvlc); + System.out.print(video.getWidth(mediaInstance)); + System.out.print("x"); + System.out.println(video.getHeight(mediaInstance)); + System.out.print("Fullscreen... "); + video.setFullscreen(mediaInstance, true); + Thread.sleep(3000); + System.out.println("real size."); + video.setFullscreen(mediaInstance, false); + System.out.print("Taking snapshot... "); + video.getSnapshot(mediaInstance, System.getProperty("user.dir") + "/snap.png", 0, 0); + System.out.println("taken. (see " + System.getProperty("user.dir") + "/snap.png )"); + Thread.sleep(2000); + System.out.println("Resizing to 300x300"); + video.setSize(300, 300); System.out.print("Muting..."); Audio audio = new Audio(jvlc);