summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-19 23:27:23 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-19 23:27:23 +0000
commit0e8fba9ec80e0503c9f2d2530175a7620b9d9c8e (patch)
treed5a0181ff1805e2d99246c9da83eefb9e6848018 /drivers
parentf4cab7e69a11fcb513f36436118bc944da2f6d12 (diff)
downloadmpv-0e8fba9ec80e0503c9f2d2530175a7620b9d9c8e.tar.bz2
mpv-0e8fba9ec80e0503c9f2d2530175a7620b9d9c8e.tar.xz
Add standard license header and make copyright notices consistent.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26035 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'drivers')
-rw-r--r--drivers/3dfx.h35
-rw-r--r--drivers/generic_math.h24
-rw-r--r--drivers/mga_vid.c40
-rw-r--r--drivers/mga_vid.h27
-rw-r--r--drivers/mga_vid_test.c19
-rw-r--r--drivers/radeon.h26
-rw-r--r--drivers/radeon_vid.c29
-rw-r--r--drivers/radeon_vid.h27
-rw-r--r--drivers/tdfx_vid.c19
-rw-r--r--drivers/tdfx_vid.h20
-rw-r--r--drivers/tdfx_vid_test.c19
11 files changed, 206 insertions, 79 deletions
diff --git a/drivers/3dfx.h b/drivers/3dfx.h
index ab8dbdfe0a..2649804006 100644
--- a/drivers/3dfx.h
+++ b/drivers/3dfx.h
@@ -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
diff --git a/drivers/generic_math.h b/drivers/generic_math.h
index dfbc3baff7..6471d034c2 100644
--- a/drivers/generic_math.h
+++ b/drivers/generic_math.h
@@ -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
diff --git a/drivers/mga_vid.c b/drivers/mga_vid.c
index 36d4c7fa31..0dadcd33da 100644
--- a/drivers/mga_vid.c
+++ b/drivers/mga_vid.c
@@ -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@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@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@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@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
diff --git a/drivers/mga_vid.h b/drivers/mga_vid.h
index 4b0a48ee58..d29fcf7591 100644
--- a/drivers/mga_vid.h
+++ b/drivers/mga_vid.h
@@ -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
diff --git a/drivers/mga_vid_test.c b/drivers/mga_vid_test.c
index 96cacc2d20..471038fe3d 100644
--- a/drivers/mga_vid_test.c
+++ b/drivers/mga_vid_test.c
@@ -1,12 +1,21 @@
/*
+ * Copyright (C) 1999 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
*
- * mga_vid_test.c
+ * This file is part of MPlayer.
*
- * Aaron Holtzman <aholtzma@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>
diff --git a/drivers/radeon.h b/drivers/radeon.h
index 80169e0970..8e95e46d97 100644
--- a/drivers/radeon.h
+++ b/drivers/radeon.h
@@ -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
diff --git a/drivers/radeon_vid.c b/drivers/radeon_vid.c
index 4bc9075e8c..27f935c5d7 100644
--- a/drivers/radeon_vid.c
+++ b/drivers/radeon_vid.c
@@ -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"
diff --git a/drivers/radeon_vid.h b/drivers/radeon_vid.h
index 8a2c0343e9..c90842d498 100644
--- a/drivers/radeon_vid.h
+++ b/drivers/radeon_vid.h
@@ -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
diff --git a/drivers/tdfx_vid.c b/drivers/tdfx_vid.c
index ac6c02f1a1..18451ab6ff 100644
--- a/drivers/tdfx_vid.c
+++ b/drivers/tdfx_vid.c
@@ -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>
diff --git a/drivers/tdfx_vid.h b/drivers/tdfx_vid.h
index 42fbeb5639..05d775b061 100644
--- a/drivers/tdfx_vid.h
+++ b/drivers/tdfx_vid.h
@@ -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
diff --git a/drivers/tdfx_vid_test.c b/drivers/tdfx_vid_test.c
index a0fbbb9c3d..af9c86adcf 100644
--- a/drivers/tdfx_vid_test.c
+++ b/drivers/tdfx_vid_test.c
@@ -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>