Changeset 35947aedd19d3b8bc968c15acccf0ab75e676a25

Show
Ignore:
Timestamp:
31/03/06 17:28:12 (3 years ago)
Author:
Filippo Carone <littlejohn@videolan.org>
git-committer:
Filippo Carone <littlejohn@videolan.org> 1143818892 +0000
git-parent:

[8e394d70cd2a16876f85b424473cf109555dae21]

git-author:
Filippo Carone <littlejohn@videolan.org> 1143818892 +0000
Message:

Makefile updated for new java bindings classes.
copyright and svn:id fixed for new classes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bindings/java/Makefile.am

    rcf6397c r35947ae  
    55if BUILD_JAVA 
    66 
    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.class 
     7JVLCOBJECTS = 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 
    88 
    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.h 
     9JNIHEADERS = org_videolan_jvlc_JVLC.h org_videolan_jvlc_JVLCCanvas.h org_videolan_jvlc_JVLCPanel.h 
    1010 
    1111# Include some JAVA stuff 
     
    1313JINCLUDES = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux 
    1414LIBJINCLUDES = -L$(JAVA_HOME)/jre/lib/$(PROCESSOR_FAMILY) -ljawt 
     15SWT_PATH = /usr/share/java 
    1516 
    1617 
    1718# Binaries 
    18 JCC = gcj -g 
     19JCC = gcj -g -I${SWT_PATH}/swt-gtk.jar 
    1920JCH = gcjh -jni 
    2021 
     
    2627all: libjvlc.so VlcClient 
    2728 
    28 libjvlc.so: vlc-glue-jni.o vlc-graphics-jni.o 
    29     $(CXX) -shared vlc-glue-jni.o vlc-graphics-jni.o $(LIBJINCLUDES) $(LDFLAGS) $(JAVALDFLAGS) -o libjvlc.so 
     29libjvlc.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 
    3031 
    3132vlc-graphics-jni.o: VlcClient 
    3233    $(CXX) -c vlc-graphics-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS) 
    3334 
    34 vlc-glue-jni.o: VlcClient 
    35     $(CXX) -c vlc-glue-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS) 
     35vlc-libvlc-jni.o: VlcClient 
     36    $(CXX) -c vlc-libvlc-jni.cc $(CXXFLAGS) $(JAVACXXFLAGS) 
    3637 
    3738VlcClient: $(OBJECTS) 
  • bindings/java/README

    r53e8222 r35947ae  
    1  
     1$Id$ 
    22            First of all, this is a *developers* only version 
    33 
     
    3636get linking errors when you run the program. 
    3737 
     38 To try the SWT version of the player, issue: 
     39 
     40javac -cp /usr/share/java/swt-gtk.jar:. SWTUglyPlayer.java 
     41java -cp /usr/share/java/swt-gtk.jar:. -Djava.library.path=.:/usr/lib/jni SWTUglyPlayer 
     42 
     43 using the appropriate paths. 
     44 
    3845 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 
    35 * 
    4  * $Id: AudioIntf.java 8 2006-02-28 12:03:47Z little
     6 * $Id
    57 * 
    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 *****************************************************************************/ 
    2424 
    2525package 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 
    35 * 
    4  * $Id: InputIntf.java 8 2006-02-28 12:03:47Z little
     6 * $Id
    57 * 
    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 *****************************************************************************/ 
    2424 
    2525package 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 
    35 * 
    4  * $Id: JLibVLC.java 9 2006-02-28 18:30:52Z little
     6 * $Id
    57 * 
    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 *****************************************************************************/ 
    2424 
    2525package 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 
    35 * 
    4  * $Id: JVLCPlayer.java 10 2006-02-28 19:07:17Z little
     6 * $Id
    57 * 
    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 *****************************************************************************/ 
    2424 
    2525package 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 
    35 * 
     6 * $Id$ 
    47 * 
    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 *****************************************************************************/ 
    2424 
    2525package 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 
    35 * 
     6 * $Id$ 
    47 * 
    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 *****************************************************************************/ 
    2524 
    2625package 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 
    35 * 
    46 * $Id$ 
    57 * 
    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 *****************************************************************************/ 
    2424 
    2525package 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 
    35 * 
    4  * $Id: PlaylistIntf.java 10 2006-02-28 19:07:17Z little
     6 * $Id
    57 * 
    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 *****************************************************************************/ 
    2424 
    2525package 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 
    35 * 
    4  * $Id
     6 * $Id
    57 * 
    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 *****************************************************************************/ 
    2424 
    2525package 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 
    35 * 
    4  * $Id: VLMIntf.java 8 2006-02-28 12:03:47Z little
     6 * $Id
    57 * 
    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 *****************************************************************************/ 
    2424 
    2525package org.videolan.jvlc;