Changeset 35947aedd19d3b8bc968c15acccf0ab75e676a25
- Timestamp:
- 31/03/06 17:28:12 (3 years ago)
- git-parent:
- Files:
-
- bindings/java/Makefile.am (modified) (3 diffs)
- bindings/java/README (modified) (2 diffs)
- bindings/java/org/videolan/jvlc/AudioIntf.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/InputIntf.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/JLibVLC.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/JVLC.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/JVLCCanvas.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/JVLCPanel.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/Playlist.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/PlaylistIntf.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/SWTVideoWidget.java (modified) (1 diff)
- bindings/java/org/videolan/jvlc/VLMIntf.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
bindings/java/Makefile.am
rcf6397c r35947ae 5 5 if BUILD_JAVA 6 6 7 OBJECTS = org/videolan/jvlc/JVLCNoSuchVariableNameException.class org/videolan/jvlc/JVLCBoolVariable.class org/videolan/jvlc/JVLCIntVariable.class org/videolan/jvlc/JVLCTimeVariable.class org/videolan/jvlc/JVLCVarValue.class org/videolan/jvlc/JVLCVariable.class org/videolan/jvlc/JVLCFloatVariable.class org/videolan/jvlc/JVLCStringVariable.class org/videolan/jvlc/JVLCVarVariable.class org/videolan/jvlc/JVLC.class org/videolan/jvlc/JVLCCanvas.class7 JVLCOBJECTS = org/videolan/jvlc/JVLCCanvas.class org/videolan/jvlc/JVLCPanel.class org/videolan/jvlc/AudioIntf.class org/videolan/jvlc/InputIntf.class org/videolan/jvlc/PlaylistIntf.class org/videolan/jvlc/VideoIntf.class org/videolan/jvlc/VLMIntf.class org/videolan/jvlc/Playlist.class org/videolan/jvlc/JLibVLC.class org/videolan/jvlc/JVLC.class org/videolan/jvlc/SWTVideoWidget.class 8 8 9 JNIHEADERS = org /videolan/jvlc/JVLCNoSuchVariableNameException.h org_videolan_jvlc_JVLCBoolVariable.h org_videolan_jvlc_JVLCFloatVariable.h org_videolan_jvlc_JVLC.h org_videolan_jvlc_JVLCIntVariable.h org_videolan_jvlc_JVLCStringVariable.h org_videolan_jvlc_JVLCTimeVariable.h org_videolan_jvlc_JVLCVariable.h org_videolan_jvlc_JVLCVarValue.h org_videolan_jvlc_JVLCVarVariable.h org_videolan_jvlc_JVLCCanvas.h9 JNIHEADERS = org_videolan_jvlc_JVLC.h org_videolan_jvlc_JVLCCanvas.h org_videolan_jvlc_JVLCPanel.h 10 10 11 11 # Include some JAVA stuff … … 13 13 JINCLUDES = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux 14 14 LIBJINCLUDES = -L$(JAVA_HOME)/jre/lib/$(PROCESSOR_FAMILY) -ljawt 15 SWT_PATH = /usr/share/java 15 16 16 17 17 18 # Binaries 18 JCC = gcj -g 19 JCC = gcj -g -I${SWT_PATH}/swt-gtk.jar 19 20 JCH = gcjh -jni 20 21 … … 26 27 all: libjvlc.so VlcClient 27 28 28 libjvlc.so: vlc- glue-jni.o vlc-graphics-jni.o29 $(CXX) -shared vlc- glue-jni.o vlc-graphics-jni.o $(LIBJINCLUDES) $(LDFLAGS) $(JAVALDFLAGS) -o libjvlc.so29 libjvlc.so: vlc-libvlc-jni.o vlc-graphics-jni.o 30 $(CXX) -shared vlc-libvlc-jni.o vlc-graphics-jni.o $(LIBJINCLUDES) $(LDFLAGS) $(JAVALDFLAGS) -o libjvlc.so 30 31 31 32 vlc-graphics-jni.o: VlcClient 32 33 $(CXX) -c vlc-graphics-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS) 33 34 34 vlc- glue-jni.o: VlcClient35 $(CXX) -c vlc- glue-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS)35 vlc-libvlc-jni.o: VlcClient 36 $(CXX) -c vlc-libvlc-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS) 36 37 37 38 VlcClient: $(OBJECTS) bindings/java/README
r53e8222 r35947ae 1 1 $Id$ 2 2 First of all, this is a *developers* only version 3 3 … … 36 36 get linking errors when you run the program. 37 37 38 To try the SWT version of the player, issue: 39 40 javac -cp /usr/share/java/swt-gtk.jar:. SWTUglyPlayer.java 41 java -cp /usr/share/java/swt-gtk.jar:. -Djava.library.path=.:/usr/lib/jni SWTUglyPlayer 42 43 using the appropriate paths. 44 38 45 Happy playing. bindings/java/org/videolan/jvlc/AudioIntf.java
r7629cf1 r35947ae 1 /* 2 * Created on 28-feb-2006 1 /***************************************************************************** 2 * AudioIntf.java: Audio methods interface 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 4 * $Id : AudioIntf.java 8 2006-02-28 12:03:47Z little$6 * $Id$ 5 7 * 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/InputIntf.java
r7629cf1 r35947ae 1 /* 2 * Created on 28-feb-2006 1 /***************************************************************************** 2 * InputIntf.java: Input interface 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 4 * $Id : InputIntf.java 8 2006-02-28 12:03:47Z little$6 * $Id$ 5 7 * 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/JLibVLC.java
r7629cf1 r35947ae 1 /* 2 * Created on 28-feb-2006 1 /***************************************************************************** 2 * JLibVLC.java: Main library interface 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 4 * $Id : JLibVLC.java 9 2006-02-28 18:30:52Z little$6 * $Id$ 5 7 * 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/JVLC.java
r7629cf1 r35947ae 1 /* 2 * Created on 28-feb-2006 1 /***************************************************************************** 2 * JVLC.java: Main Java Class, represents a libvlc_instance_t object 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 4 * $Id : JVLCPlayer.java 10 2006-02-28 19:07:17Z little$6 * $Id$ 5 7 * 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/JVLCCanvas.java
r7629cf1 r35947ae 1 /* 2 * Created on 25-nov-2005 1 /***************************************************************************** 2 * JVLCCanvas.java: AWT Canvas containing VLC Video Output 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 6 * $Id$ 4 7 * 5 * $Id: JVLCCanvas.java 11 2006-02-28 19:15:51Z little $ 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/JVLCPanel.java
r7629cf1 r35947ae 1 /* 2 * Created on 28-nov-2005 1 /***************************************************************************** 2 * JVLCPanel.java: Java Swing JPanel embedding VLC Video Output 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 6 * $Id$ 4 7 * 5 * $Id: JVLCPanel.java 11 2006-02-28 19:15:51Z little $ 6 * 7 * This program is free software; you can redistribute it 8 * and/or modify it under the terms of the GNU General Public License 9 * as published by the Free Software Foundation; either version 2 of the 10 * License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, but 13 * WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public 18 * License along with this program; if not, write to the Free Software 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 20 * 21 */ 22 /** 23 * @author Filippo Carone <filippo@carone.org> 24 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 25 24 26 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/Playlist.java
r7629cf1 r35947ae 1 /* 2 * Created on 28-feb-2006 1 /***************************************************************************** 2 * Playlist.java: The playlist class 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 4 6 * $Id$ 5 7 * 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/PlaylistIntf.java
r7629cf1 r35947ae 1 /* 2 * Created on 28-feb-2006 1 /***************************************************************************** 2 * PlaylistIntf.java: The playlist interface 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 4 * $Id : PlaylistIntf.java 10 2006-02-28 19:07:17Z little$6 * $Id$ 5 7 * 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/SWTVideoWidget.java
r7629cf1 r35947ae 1 /* 2 * Created on 31-mar-2006 1 /***************************************************************************** 2 * SWTVideoWidget.java: A component usable in SWT Application, embeds JVLC 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 4 * $Id $6 * $Id$ 5 7 * 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc; bindings/java/org/videolan/jvlc/VLMIntf.java
r7629cf1 r35947ae 1 /* 2 * Created on 28-feb-2006 1 /***************************************************************************** 2 * VLMIntf.java: VLM Interface 3 ***************************************************************************** 4 * Copyright (C) 1998-2004 the VideoLAN team 3 5 * 4 * $Id : VLMIntf.java 8 2006-02-28 12:03:47Z little$6 * $Id$ 5 7 * 6 * This program is free software; you can redistribute it 7 * and/or modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but 12 * WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public 17 * License along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 /** 22 * @author Filippo Carone <filippo@carone.org> 23 */ 8 * Authors: Filippo Carone <filippo@carone.org> 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License as published by 12 * the Free Software Foundation; either version 2 of the License, or 13 * (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with this program; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 23 *****************************************************************************/ 24 24 25 25 package org.videolan.jvlc;
