Commit 72f3bf6b authored by Filippo Carone's avatar Filippo Carone

audio / video libvlc functions binded.

parent fcd621cc
/*****************************************************************************
* JVLC.java: Main Java Class, represents a libvlc_instance_t object
*****************************************************************************
*
* Copyright (C) 1998-2006 the VideoLAN team
*
* Author: Filippo Carone <filippo@carone.org>
*
* Created on 28-feb-2006
*
* $Id$
*
* Authors: Filippo Carone <filippo@carone.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*
*/
/**
* @author Filippo Carone <filippo@carone.org>
*/
package org.videolan.jvlc;
public class JVLC implements JLibVLC {
static {
System.load(System.getProperty("user.dir") + "/libjvlc.so");
System.load(System.getProperty( "user.dir" ) + "/libjvlc.so" );
}
......@@ -36,50 +43,72 @@ public class JVLC implements JLibVLC {
public JVLC() {
_instance = createInstance();
playlist = new Playlist(_instance);
playlist = new Playlist( _instance );
}
public JVLC(String[] args) {
_instance = createInstance(args);
playlist = new Playlist(_instance);
_instance = createInstance( args );
playlist = new Playlist( _instance );
}
/*
* Core methods
*/
private native long createInstance();
private native long createInstance(String[] args);
private native long createInstance( String[] args );
/*
* Audio native methods
*/
private native boolean _getMute();
private native void _setMute( boolean value );
private native void _toggleMute();
private native int _getVolume();
private native void _setVolume( int volume );
public void getMute() {
/*
* Video native methods
*/
private native void _toggleFullscreen();
private native void _setFullscreen( boolean value);
private native boolean _getFullscreen();
public boolean getMute() {
// TODO Auto-generated method stub
return _getMute();
}
public void setMute() {
// TODO Auto-generated method stub
public void setMute(boolean value) {
_setMute( value );
}
public void toggleMute() {
_toggleMute();
}
public void getVolume() {
// TODO Auto-generated method stub
public int getVolume() {
return _getVolume();
}
public void setVolume() {
// TODO Auto-generated method stub
public void setVolume(int volume) {
_setVolume( volume );
}
public void toggleFullscreen() {
// TODO Auto-generated method stub
_toggleFullscreen();
}
public void setFullscreen() {
// TODO Auto-generated method stub
public void setFullscreen( boolean value ) {
_setFullscreen( value );
}
public void getFullscreen() {
// TODO Auto-generated method stub
public boolean getFullscreen() {
return _getFullscreen();
}
public void getLength() {
......@@ -111,4 +140,11 @@ public class JVLC implements JLibVLC {
return _instance;
}
/*
* Getters and setters
*/
public Playlist getPlaylist() {
return playlist;
}
}
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment