params.add("--fullscreen");
}
params.add("--aspect-ratio="+SettingsForm.getAspectRatio());
String args[] = new String[params.size()];
try {
jvlc = new JVLC((String[]) params.toArray(args));
mlp = new MediaListPlayer(jvlc);
pack();
setSize(640,480);
}
catch (Throwable ule) {