]> git.sesse.net Git - vlc/commitdiff
Makefile updated for new java bindings classes.
authorFilippo Carone <littlejohn@videolan.org>
Fri, 31 Mar 2006 15:28:12 +0000 (15:28 +0000)
committerFilippo Carone <littlejohn@videolan.org>
Fri, 31 Mar 2006 15:28:12 +0000 (15:28 +0000)
copyright and svn:id fixed for new classes

12 files changed:
bindings/java/Makefile.am
bindings/java/README
bindings/java/org/videolan/jvlc/AudioIntf.java
bindings/java/org/videolan/jvlc/InputIntf.java
bindings/java/org/videolan/jvlc/JLibVLC.java
bindings/java/org/videolan/jvlc/JVLC.java
bindings/java/org/videolan/jvlc/JVLCCanvas.java
bindings/java/org/videolan/jvlc/JVLCPanel.java
bindings/java/org/videolan/jvlc/Playlist.java
bindings/java/org/videolan/jvlc/PlaylistIntf.java
bindings/java/org/videolan/jvlc/SWTVideoWidget.java
bindings/java/org/videolan/jvlc/VLMIntf.java

index 06c7e188baaf04f710506187894c51c5a5145712..3a07a7c3815aa4dc69c13fa6bd46baec843c363b 100644 (file)
@@ -4,18 +4,19 @@
 
 if BUILD_JAVA
 
-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.class
+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
 
-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.h
+JNIHEADERS = org_videolan_jvlc_JVLC.h org_videolan_jvlc_JVLCCanvas.h org_videolan_jvlc_JVLCPanel.h
 
 # Include some JAVA stuff
 PROCESSOR_FAMILY = `uname -m | sed -e 's/^i.86/i386/' | sed -e 's/^x86_64/amd64/'`
 JINCLUDES = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux
 LIBJINCLUDES = -L$(JAVA_HOME)/jre/lib/$(PROCESSOR_FAMILY) -ljawt
+SWT_PATH = /usr/share/java
 
 
 # Binaries
-JCC = gcj -g
+JCC = gcj -g -I${SWT_PATH}/swt-gtk.jar
 JCH = gcjh -jni
 
 # Compile flags
@@ -25,14 +26,14 @@ JAVALDFLAGS = -L../../lib -lvlc_pic `top_builddir=../.. ../../vlc-config --libs
 # Build targets
 all: libjvlc.so VlcClient
 
-libjvlc.so: vlc-glue-jni.o vlc-graphics-jni.o
-       $(CXX) -shared vlc-glue-jni.o vlc-graphics-jni.o $(LIBJINCLUDES) $(LDFLAGS) $(JAVALDFLAGS) -o libjvlc.so
+libjvlc.so: vlc-libvlc-jni.o vlc-graphics-jni.o
+       $(CXX) -shared vlc-libvlc-jni.o vlc-graphics-jni.o $(LIBJINCLUDES) $(LDFLAGS) $(JAVALDFLAGS) -o libjvlc.so
 
 vlc-graphics-jni.o: VlcClient
        $(CXX) -c vlc-graphics-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS)
 
-vlc-glue-jni.o: VlcClient
-       $(CXX) -c vlc-glue-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS)
+vlc-libvlc-jni.o: VlcClient
+       $(CXX) -c vlc-libvlc-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS)
 
 VlcClient: $(OBJECTS)
        $(JCC) -C VlcClient.java
index 808246376b740cb72a13f7dcf228d371e9d4c395..76732ce5065936f363c10ccfc6116632c4d8fdf7 100644 (file)
@@ -1,4 +1,4 @@
-
+$Id$
             First of all, this is a *developers* only version
 
 
@@ -35,4 +35,11 @@ java -Djava.library.path=. VlcClient
  Be sure your ldconfig can find libjawt.so and libmawt.so or you will
 get linking errors when you run the program.
 
- Happy playing.
\ No newline at end of file
+ To try the SWT version of the player, issue:
+
+javac -cp /usr/share/java/swt-gtk.jar:. SWTUglyPlayer.java
+java -cp /usr/share/java/swt-gtk.jar:. -Djava.library.path=.:/usr/lib/jni SWTUglyPlayer
+
+ using the appropriate paths.
+
+ Happy playing.
index f42e848182d9f4548d781aecd43ad7f6e102fac5..df11f840d020fc2ab598d42334b1173bc82ebdfe 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 28-feb-2006
+/*****************************************************************************
+ * AudioIntf.java: Audio methods interface
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
- * $Id: AudioIntf.java 8 2006-02-28 12:03:47Z little $
+ * $Id$
  *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index b89521d420d0aa32650f760e92a372babc160d45..405f30a278b02f9f496ad61c048712e9c4bc943c 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 28-feb-2006
+/*****************************************************************************
+ * InputIntf.java: Input interface
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
- * $Id: InputIntf.java 8 2006-02-28 12:03:47Z little $
+ * $Id$
  *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index c94998897c2042fbf009b800d01aea6d8f072efe..680ad0a87ba6ee86cd1e6b229be23c56dc958b15 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 28-feb-2006
+/*****************************************************************************
+ * JLibVLC.java: Main library interface 
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
- * $Id: JLibVLC.java 9 2006-02-28 18:30:52Z little $
+ * $Id$
  *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index 0ebef81c77a124bf7ca7314cc1133e695bf83a97..e789ad9644748c20dca55d6a278b91577ba29095 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 28-feb-2006
+/*****************************************************************************
+ * JVLC.java: Main Java Class, represents a libvlc_instance_t object
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
- * $Id: JVLCPlayer.java 10 2006-02-28 19:07:17Z little $
+ * $Id$
  *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index 05866fec7eb83bf68ecf9bdf4c586bb0524690f2..ef2940ecbfac96cd354bbb93d796e75bf6416768 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 25-nov-2005
+/*****************************************************************************
+ * JVLCCanvas.java: AWT Canvas containing VLC Video Output
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
+ * $Id$
  *
- * $Id: JVLCCanvas.java 11 2006-02-28 19:15:51Z little $
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index c41cbd15a7117dcf740ff3ba62c5fe4a0d60d275..8a227be2e0e1639b617f451a75eb4b6c6c805a1a 100644 (file)
@@ -1,27 +1,26 @@
-/*
- * Created on 28-nov-2005
+/*****************************************************************************
+ * JVLCPanel.java: Java Swing JPanel embedding VLC Video Output
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
+ * $Id$
  *
- * $Id: JVLCPanel.java 11 2006-02-28 19:15:51Z little $
- * 
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index d118b6a7331510bcee56deeca1cf92ad6c2d2b49..e15cb50885aa72ba40a7c601054379b7933013fd 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 28-feb-2006
+/*****************************************************************************
+ * Playlist.java: The playlist class
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
  * $Id$
  *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index aa799ee7766902729c4c05b874bce9f6f93b1f15..2a812a1e04bb68d97079d955bdab59385655bf09 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 28-feb-2006
+/*****************************************************************************
+ * PlaylistIntf.java: The playlist interface
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
- * $Id: PlaylistIntf.java 10 2006-02-28 19:07:17Z little $
+ * $Id$
  *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index 7f44955beb4303f890291409d066f4018939939f..69eddd6205a1c36c1c9f74d37362d26634f532e3 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 31-mar-2006
+/*****************************************************************************
+ * SWTVideoWidget.java: A component usable in SWT Application, embeds JVLC
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
- * $Id $
+ * $Id$
  *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;
 
index e13dc910adb8a62933a1d4b014e53118f6545751..7d3f2ca679ada432f70bede1c5c24ec19d64fdd4 100644 (file)
@@ -1,26 +1,26 @@
-/*
- * Created on 28-feb-2006
+/*****************************************************************************
+ * VLMIntf.java: VLM Interface
+ *****************************************************************************
+ * Copyright (C) 1998-2004 the VideoLAN team
  *
- * $Id: VLMIntf.java 8 2006-02-28 12:03:47Z little $
+ * $Id$
  *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
- * 
- */
-/**
- * @author Filippo Carone <filippo@carone.org>
- */
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 package org.videolan.jvlc;