[MPlayer-cvslog] r26035 - in trunk/drivers: 3dfx.h generic_math.h mga_vid.c mga_vid.h mga_vid_test.c radeon.h radeon_vid.c radeon_vid.h tdfx_vid.c tdfx_vid.h tdfx_vid_test.c

diego subversion at mplayerhq.hu
Wed Feb 20 00:27:23 CET 2008


Author: diego
Date: Wed Feb 20 00:27:23 2008
New Revision: 26035

Log:
Add standard license header and make copyright notices consistent.


Modified:
   trunk/drivers/3dfx.h
   trunk/drivers/generic_math.h
   trunk/drivers/mga_vid.c
   trunk/drivers/mga_vid.h
   trunk/drivers/mga_vid_test.c
   trunk/drivers/radeon.h
   trunk/drivers/radeon_vid.c
   trunk/drivers/radeon_vid.h
   trunk/drivers/tdfx_vid.c
   trunk/drivers/tdfx_vid.h
   trunk/drivers/tdfx_vid_test.c

Modified: trunk/drivers/3dfx.h
==============================================================================
--- trunk/drivers/3dfx.h	(original)
+++ trunk/drivers/3dfx.h	Wed Feb 20 00:27:23 2008
@@ -1,23 +1,22 @@
-/* 
- *    3dfx.h
+/*
+ * Copyright (C) Colin Cross Apr 2000
+ * changed by zsteva Aug/Sep 2001, see vo_3dfx.c
  *
- *  changed by zsteva Aug/Sep 2001, see vo_3dfx.c
+ * This file is part of MPlayer.
  *
- *	Copyright (C) Colin Cross Apr 2000
- *	
- *  mpeg2dec 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, or (at your option)
- *  any later version.
- *   
- *  mpeg2dec 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 mpeg2dec; if not, write to the Free Software Foundation, Inc.,
- *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef MPLAYER_3DFX_H

Modified: trunk/drivers/generic_math.h
==============================================================================
--- trunk/drivers/generic_math.h	(original)
+++ trunk/drivers/generic_math.h	Wed Feb 20 00:27:23 2008
@@ -1,9 +1,23 @@
 /*
-   generic implementation of sin(x) and cos(x) functions.
-   Specially for Linux.
-   Licence: GPL
-   Copyright (C) 2002 Nick Kurshev
-*/
+ * generic implementation of sin(x) and cos(x) functions specially for Linux
+ * Copyright (C) 2002 Nick Kurshev
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #ifndef GENERIC_MATH_H
 #define GENERIC_MATH_H

Modified: trunk/drivers/mga_vid.c
==============================================================================
--- trunk/drivers/mga_vid.c	(original)
+++ trunk/drivers/mga_vid.c	Wed Feb 20 00:27:23 2008
@@ -1,10 +1,5 @@
 //#define CRTC2
 
-// YUY2 support (see config.format) added by A'rpi/ESP-team
-// double buffering added by A'rpi/ESP-team
-// brightness/contrast introduced by eyck
-// multiple card support by Attila Kinali <attila at kinali.ch>
-
 // Set this value, if autodetection fails! (video ram size in megabytes)
 // #define MGA_MEMORY_SIZE 16
 
@@ -13,20 +8,33 @@
 #define MGA_VSYNC_POS 2
 
 /*
- *
- * mga_vid.c
+ * Matrox MGA G200/G400 YUV Video Interface module Version 0.1.0
+ * BES == Back End Scaler
  *
  * Copyright (C) 1999 Aaron Holtzman
- * 
- * Module skeleton based on gutted agpgart module by Jeff Hartmann 
- * <slicer at ionet.net>
  *
- * Matrox MGA G200/G400 YUV Video Interface module Version 0.1.0
- * 
- * BES == Back End Scaler
- * 
- * This software has been released under the terms of the GNU Public
- * license. See http://www.gnu.org/copyleft/gpl.html for details.
+ * Module skeleton based on gutted agpgart module by
+ * Jeff Hartmann <slicer at ionet.net>
+ * YUY2 support (see config.format) added by A'rpi/ESP-team
+ * double buffering added by A'rpi/ESP-team
+ * brightness/contrast introduced by eyck
+ * multiple card support by Attila Kinali <attila at kinali.ch>
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 //It's entirely possible this major conflicts with something else

Modified: trunk/drivers/mga_vid.h
==============================================================================
--- trunk/drivers/mga_vid.h	(original)
+++ trunk/drivers/mga_vid.h	Wed Feb 20 00:27:23 2008
@@ -1,15 +1,24 @@
 /*
- *
- * mga_vid.h
- *
- * Copyright (C) 1999 Aaron Holtzman
- * 
  * Matrox MGA G200/G400 YUV Video Interface module Version 0.1.0
- * 
  * BES == Back End Scaler
- * 
- * This software has been released under the terms of the GNU Public
- * license. See http://www.gnu.org/copyleft/gpl.html for details.
+ *
+ * Copyright (C) 1999 Aaron Holtzman
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef MGA_VID_H

Modified: trunk/drivers/mga_vid_test.c
==============================================================================
--- trunk/drivers/mga_vid_test.c	(original)
+++ trunk/drivers/mga_vid_test.c	Wed Feb 20 00:27:23 2008
@@ -1,12 +1,21 @@
 /*
+ * Copyright (C) 1999 Aaron Holtzman <aholtzma at ess.engr.uvic.ca>
  *
- * mga_vid_test.c
+ * This file is part of MPlayer.
  *
- * Aaron Holtzman <aholtzma at ess.engr.uvic.ca>
- * Sept 1999
+ * MPlayer 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 software has been released under the terms of the GNU Public
- * license. See http://www.gnu.org/copyleft/gpl.html for details.
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 //#include <stddef.h>

Modified: trunk/drivers/radeon.h
==============================================================================
--- trunk/drivers/radeon.h	(original)
+++ trunk/drivers/radeon.h	Wed Feb 20 00:27:23 2008
@@ -1,12 +1,24 @@
 /*
- * radeon.h
- * This	software has been released under the terms of the GNU Public
- * license. See	http://www.gnu.org/copyleft/gpl.html for details.
+ * This collection of definitions was written by Nick Kurshev.
+ * It is based on radeonfb, X11 and GATOS sources and is partly
+ * compatible with Rage128 set (in OV0, CAP0, CAP1 parts).
  *
- * This	collection of definition was written by	Nick Kurshev
- * It's	based on radeonfb, X11,	GATOS sources
- * and partly compatible with Rage128 set (in OV0, CAP0, CAP1 parts)
-*/
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #ifndef	RADEON_H
 #define	RADEON_H

Modified: trunk/drivers/radeon_vid.c
==============================================================================
--- trunk/drivers/radeon_vid.c	(original)
+++ trunk/drivers/radeon_vid.c	Wed Feb 20 00:27:23 2008
@@ -1,20 +1,29 @@
 /*
- *
- * radeon_vid.c
+ * BES YUV video overlay driver for Radeon/Rage128Pro/Rage128 cards
  *
  * Copyright (C) 2001 Nick Kurshev
- * 
- * BES YUV video overlay driver for Radeon/Rage128Pro/Rage128 cards
- * 
- * This software has been released under the terms of the GNU Public
- * license. See http://www.gnu.org/copyleft/gpl.html for details.
  *
- * This file is partly based on mga_vid and sis_vid stuff from
- * mplayer's package.
- * Also here was used code from CVS of GATOS project and X11 trees.
+ * This file is partly based on mga_vid and sis_vid from MPlayer.
+ * Code from CVS of GATOS project and X11 trees was also used.
  *
  * SPECIAL THANKS TO: Hans-Peter Raschke for active testing and hacking
  * Rage128(pro) stuff of this driver.
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #define RADEON_VID_VERSION "1.2.1"

Modified: trunk/drivers/radeon_vid.h
==============================================================================
--- trunk/drivers/radeon_vid.h	(original)
+++ trunk/drivers/radeon_vid.h	Wed Feb 20 00:27:23 2008
@@ -1,16 +1,25 @@
 /*
- *
- * radeon_vid.h
+ * BES YUV Framebuffer driver for Radeon cards
  *
  * Copyright (C) 2001 Nick Kurshev
- * 
- * BES YUV Framebuffer driver for Radeon cards
- * 
- * This software has been released under the terms of the GNU Public
- * license. See http://www.gnu.org/copyleft/gpl.html for details.
  *
- * This file is partly based on mga_vid and sis_vid stuff from
- * mplayer's package.
+ * This file is partly based on mga_vid and sis_vid from MPlayer.
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef RADEON_VID_H

Modified: trunk/drivers/tdfx_vid.c
==============================================================================
--- trunk/drivers/tdfx_vid.c	(original)
+++ trunk/drivers/tdfx_vid.c	Wed Feb 20 00:27:23 2008
@@ -1,3 +1,22 @@
+/*
+ * Copyright (C) 2003 Alban Bedel
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #include <linux/config.h>
 #include <linux/version.h>

Modified: trunk/drivers/tdfx_vid.h
==============================================================================
--- trunk/drivers/tdfx_vid.h	(original)
+++ trunk/drivers/tdfx_vid.h	Wed Feb 20 00:27:23 2008
@@ -1,3 +1,23 @@
+/*
+ * Copyright (C) 2003 Alban Bedel
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 #ifndef TDFX_VID_H
 #define TDFX_VID_H
 

Modified: trunk/drivers/tdfx_vid_test.c
==============================================================================
--- trunk/drivers/tdfx_vid_test.c	(original)
+++ trunk/drivers/tdfx_vid_test.c	Wed Feb 20 00:27:23 2008
@@ -1,3 +1,22 @@
+/*
+ * Copyright (C) 2003 Alban Bedel
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer 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.
+ *
+ * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #include <stdlib.h>
 #include <stdio.h>



More information about the MPlayer-cvslog mailing list