summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libao2/ao_arts.c19
-rw-r--r--libao2/ao_jack.c23
-rw-r--r--libao2/ao_openal.c23
-rw-r--r--libao2/ao_sdl.c22
-rw-r--r--libmpcodecs/vd_zrmjpeg.c21
-rw-r--r--libmpcodecs/vf_bmovl.c22
-rw-r--r--libmpcodecs/vf_zrmjpeg.c38
-rw-r--r--libvo/geometry.c20
-rw-r--r--libvo/geometry.h21
-rw-r--r--libvo/gl_common.c31
-rw-r--r--libvo/gtf.c27
-rw-r--r--libvo/vesa_lvo.c23
-rw-r--r--libvo/vesa_lvo.h21
-rw-r--r--libvo/vo_bl.c35
-rw-r--r--libvo/vo_s3fb.c25
-rw-r--r--libvo/vo_tdfxfb.c22
-rw-r--r--libvo/vo_vesa.c21
-rw-r--r--libvo/vo_zr.c22
-rw-r--r--libvo/vo_zr2.c24
-rw-r--r--libvo/vosub_vidix.c25
-rw-r--r--libvo/vosub_vidix.h21
21 files changed, 405 insertions, 101 deletions
diff --git a/libao2/ao_arts.c b/libao2/ao_arts.c
index 092fe20dd4..30db48fb22 100644
--- a/libao2/ao_arts.c
+++ b/libao2/ao_arts.c
@@ -1,10 +1,23 @@
/*
- * ao_arts - aRts audio output driver for MPlayer
+ * aRts audio output driver for MPlayer
*
- * Michele Balistreri <brain87@gmx.net>
+ * copyright (c) 2002 Michele Balistreri <brain87@gmx.net>
*
- * This driver is distribuited under terms of GPL
+ * 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 <artsc.h>
diff --git a/libao2/ao_jack.c b/libao2/ao_jack.c
index 70f9bfad1b..e4ac6910b2 100644
--- a/libao2/ao_jack.c
+++ b/libao2/ao_jack.c
@@ -1,11 +1,24 @@
-/*
- * ao_jack.c - libao2 JACK Audio Output Driver for MPlayer
- *
- * This driver is under the same license as MPlayer.
- * (http://www.mplayerhq.hu)
+/*
+ * JACK audio output driver for MPlayer
*
* Copyleft 2001 by Felix Bünemann (atmosfear@users.sf.net)
* and Reimar Döffinger (Reimar.Doeffinger@stud.uni-karlsruhe.de)
+ *
+ * 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
+ * along with MPlayer; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
diff --git a/libao2/ao_openal.c b/libao2/ao_openal.c
index 579de7aa1d..c91694dc05 100644
--- a/libao2/ao_openal.c
+++ b/libao2/ao_openal.c
@@ -1,10 +1,23 @@
-/*
- * ao_openal.c - OpenAL audio output driver for MPlayer
- *
- * This driver is under the same license as MPlayer.
- * (http://www.mplayerhq.hu)
+/*
+ * OpenAL audio output driver for MPlayer
*
* Copyleft 2006 by Reimar Döffinger (Reimar.Doeffinger@stud.uni-karlsruhe.de)
+ *
+ * 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
+ * along with MPlayer; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
diff --git a/libao2/ao_sdl.c b/libao2/ao_sdl.c
index 0437b39a24..292972514c 100644
--- a/libao2/ao_sdl.c
+++ b/libao2/ao_sdl.c
@@ -1,13 +1,25 @@
-/*
- * ao_sdl.c - libao2 SDLlib Audio Output Driver for MPlayer
- *
- * This driver is under the same license as MPlayer.
- * (http://www.mplayerhq.hu)
+/*
+ * SDLlib audio output driver for MPlayer
*
* Copyleft 2001 by Felix Bünemann (atmosfear@users.sf.net)
*
* Thanks to Arpi for nice ringbuffer-code!
*
+ * 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
+ * along with MPlayer; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
diff --git a/libmpcodecs/vd_zrmjpeg.c b/libmpcodecs/vd_zrmjpeg.c
index c33c71778a..d991e7b65c 100644
--- a/libmpcodecs/vd_zrmjpeg.c
+++ b/libmpcodecs/vd_zrmjpeg.c
@@ -1,9 +1,26 @@
/*
- * Copyright (C) 2005 Rik Snel <rsnel@cube.dyndns.org>, license GPL v2 or later
- * - based on vd_mpegpes.c by A'rpi (C) 2002-2003
+ * Copyright (C) 2005 Rik Snel <rsnel@cube.dyndns.org>
+ * - based on vd_mpegpes.c by A'rpi (C) 2002-2003
* - guess_mjpeg_type code stolen from lav_io.c (C) 2000 Rainer Johanni
* <Rainer@Johanni.de> from the mjpegtools package
+ *
+ * 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 <stdio.h>
#include <stdlib.h>
diff --git a/libmpcodecs/vf_bmovl.c b/libmpcodecs/vf_bmovl.c
index ab2c23944c..80b61ca502 100644
--- a/libmpcodecs/vf_bmovl.c
+++ b/libmpcodecs/vf_bmovl.c
@@ -1,8 +1,26 @@
-/* vf_bmovl.c v0.9.1 - BitMap OVerLay videofilter for MPlayer
+/*
+ * vf_bmovl.c v0.9.1 - BitMap OVerLay video filter for MPlayer
*
* (C) 2002 Per Wigren <wigren@home.se>
- * Licenced under the GNU General Public License
*
+ * 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.
+ */
+
+/*
* Use MPlayer as a framebuffer to read bitmaps and commands from a FIFO
* and display them in the window.
*
diff --git a/libmpcodecs/vf_zrmjpeg.c b/libmpcodecs/vf_zrmjpeg.c
index 731569ba19..82001a8d72 100644
--- a/libmpcodecs/vf_zrmjpeg.c
+++ b/libmpcodecs/vf_zrmjpeg.c
@@ -1,20 +1,38 @@
-/**
- * \file vf_zrmjpeg.c
- *
- * \brief Does mjpeg encoding as required by the zrmjpeg filter as well
- * as by the zr video driver.
- */
/*
- * Copyright (C) 2005 Rik Snel <rsnel@cube.dyndns.org>, license GPL v2 or later
- * - based on vd_lavc.c by A'rpi (C) 2002-2003
- * - parts from ffmpeg Copyright (c) 2000-2003 Fabrice Bellard
- *
* This files includes a straightforward (to be) optimized JPEG encoder for
* the YUV422 format, based on mjpeg code from ffmpeg.
*
* For an excellent introduction to the JPEG format, see:
* http://www.ece.purdue.edu/~bouman/grad-labs/lab8/pdf/lab.pdf
+ *
+ * Copyright (C) 2005 Rik Snel <rsnel@cube.dyndns.org>
+ * - based on vd_lavc.c by A'rpi (C) 2002-2003
+ * - parts from ffmpeg Copyright (c) 2000-2003 Fabrice Bellard
+ *
+ * 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.
+ */
+
+/**
+ * \file vf_zrmjpeg.c
+ *
+ * \brief Does mjpeg encoding as required by the zrmjpeg filter as well
+ * as by the zr video driver.
*/
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/libvo/geometry.c b/libvo/geometry.c
index 0d145ee989..a805c147f9 100644
--- a/libvo/geometry.c
+++ b/libvo/geometry.c
@@ -1,4 +1,22 @@
-/* This file (C) Mark Zealey <mark@zealos.org> 2002, released under GPL */
+/*
+ * copyright (C) 2002 Mark Zealey <mark@zealos.org>
+ *
+ * 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 <stdio.h>
#include <string.h>
diff --git a/libvo/geometry.h b/libvo/geometry.h
index 50080b3dd0..77868a5aad 100644
--- a/libvo/geometry.h
+++ b/libvo/geometry.h
@@ -1,4 +1,23 @@
-/* This file (C) Mark Zealey <mark@zealos.org 2002, released under GPL */
+/*
+ * copyright (C) 2002 Mark Zealey <mark@zealos.org>
+ *
+ * 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 MPLAYER_GEOMETRY_H
#define MPLAYER_GEOMETRY_H
diff --git a/libvo/gl_common.c b/libvo/gl_common.c
index fe4701f219..a52a605234 100644
--- a/libvo/gl_common.c
+++ b/libvo/gl_common.c
@@ -1,13 +1,32 @@
-/**
- * \file gl_common.c
- * \brief OpenGL helper functions used by vo_gl.c and vo_gl2.c
+/*
+ * common OpenGL routines
*
- * Common OpenGL routines.
- * Copyleft (C) Reimar Döffinger <Reimar.Doeffinger@stud.uni-karlsruhe.de>, 2005
- * Licensed under the GNU GPL v2 or later.
+ * copyleft (C) 2005 Reimar Döffinger <Reimar.Doeffinger@stud.uni-karlsruhe.de>
* Special thanks go to the xine team and Matthias Hopf, whose video_out_opengl.c
* gave me lots of good ideas.
+ *
+ * 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.
*/
+
+/**
+ * \file gl_common.c
+ * \brief OpenGL helper functions used by vo_gl.c and vo_gl2.c
+ */
+
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
diff --git a/libvo/gtf.c b/libvo/gtf.c
index b297df2228..4e8429fe9e 100644
--- a/libvo/gtf.c
+++ b/libvo/gtf.c
@@ -1,13 +1,26 @@
/*
- * Copyright (C) 2002 Rudolf Marek <r.marek@assembler.cz>
+ * GTF calculations formulas are taken from GTF_V1R1.xls
+ * created by ANDY.MORRISH@NSC.COM
*
- * You can redistribute this file under terms and conditions
- * of GNU General Public licence v2 or later.
- *
- * GTF calculations formulas are taken from GTF_V1R1.xls
- * created by ANDY.MORRISH@NSC.COM
+ * copyright (C) 2002 Rudolf Marek <r.marek@assembler.cz>
+ *
+ * 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.
*/
-
+
//Version 0.4
#include "config.h"
#include <stdio.h>
diff --git a/libvo/vesa_lvo.c b/libvo/vesa_lvo.c
index ea5ecc93a1..53779a1c13 100644
--- a/libvo/vesa_lvo.c
+++ b/libvo/vesa_lvo.c
@@ -1,13 +1,24 @@
/*
- * vesa_lvo.c
+ * vo_vesa interface to Linux Video Overlay
+ * (partly based on vo_mga.c)
*
- * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - Oct 2001
+ * copyright (C) 2001 Nick Kurshev <nickols_k@mail.ru>
*
- * You can redistribute this file under terms and conditions
- * of GNU General Public licence v2 or later.
+ * This file is part of MPlayer.
*
- * This file contains vo_vesa interface to Linux Video Overlay.
- * (Partly based on vo_mga.c from mplayer's package)
+ * 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 <inttypes.h>
diff --git a/libvo/vesa_lvo.h b/libvo/vesa_lvo.h
index 67a9ee0dd1..1e7887c8ae 100644
--- a/libvo/vesa_lvo.h
+++ b/libvo/vesa_lvo.h
@@ -1,12 +1,23 @@
/*
- * vesa_lvo.c
+ * vo_vesa interface to Linux Video Overlay
*
- * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - Oct 2001
+ * copyright (C) 2001 Nick Kurshev <nickols_k@mail.ru>
*
- * You can redistribute this file under terms and conditions
- * of GNU General Public licence v2 or later.
+ * This file is part of MPlayer.
*
- * This file contains vo_vesa interface to Linux Video Overlay.
+ * 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_VESA_LVO_H
diff --git a/libvo/vo_bl.c b/libvo/vo_bl.c
index 23c1af0886..a194ade17a 100644
--- a/libvo/vo_bl.c
+++ b/libvo/vo_bl.c
@@ -1,21 +1,30 @@
-/*
- * vo_bl.c - playback using the Blinkenlights UPD protocol (and to files)
- *
- * UDP socket handling copied from bsender.c part of blib-0.6:
+/*
+ * playback using the Blinkenlights UDP protocol (and to files)
+ *
+ * UDP socket handling copied from bsender.c part of blib-0.6:
* http://sven.gimp.org/blinkenlights/
- * Copyright (c) 2001-2001 The Blinkenlights Crew:
+ * copyright (c) 2001-2001 The Blinkenlights Crew:
* Sven Neumann <sven@gimp.org>
* Michael Natterer <mitch@gimp.org>
* Daniel Mack <daniel@yoobay.net>
- * (these portions are licensed under GNU GPL v2 or "(at your option)
- * any later version")
- *
- * Other stuff: Copyright (C) Rik Snel 2002, License GNU GPL v2 or later
+ * copyright (C) 2004 Stefan Schuermans <1stein@schuermans.info>
+ * other stuff: copyright (C) 2002 Rik Snel
+ *
+ * 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.
*
- * patch from Stefan Schuermans <1stein@schuermans.info>:
- * - correction of "maxval" in Blinkenlights UDP protcol
- * - new scheme for new HDL
- * - new scheme for grayscale in arbitrary size
+ * 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 <stdio.h>
diff --git a/libvo/vo_s3fb.c b/libvo/vo_s3fb.c
index 778374e2d1..f321539202 100644
--- a/libvo/vo_s3fb.c
+++ b/libvo/vo_s3fb.c
@@ -1,9 +1,26 @@
-/* Copyright (C) Mark Sanderson, 2006, <mmp@kiora.ath.cx>.
- * Released under the terms and conditions of the GPL.
+/*
+ * copyright (C) 2006 Mark Sanderson <mmp@kiora.ath.cx>
*
* 30-Mar-2006 Modified from tdfxfb.c by Mark Zealey
- *
- * Hints and tricks:
+ *
+ * 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.
+ */
+
+/* Hints and tricks:
* - Use -dr to get direct rendering
* - Use -vf yuy2 to get yuy2 rendering, *MUCH* faster than yv12
*/
diff --git a/libvo/vo_tdfxfb.c b/libvo/vo_tdfxfb.c
index 6cdb07563c..1b63147817 100644
--- a/libvo/vo_tdfxfb.c
+++ b/libvo/vo_tdfxfb.c
@@ -1,6 +1,24 @@
-/* Copyright (C) Mark Zealey, 2002, <mark@zealos.org>. Released under the terms
- * and conditions of the GPL.
+/*
+ * copyright (C) 2002 Mark Zealey <mark@zealos.org>
*
+ * 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.
+ */
+
+/*
* 30/03/02: An almost total rewrite, added DR support and support for modes
* other than 16bpp. Fixed the crash when playing multiple files
* 07/04/02: Fixed DR support, added YUY2 support, fixed OSD stuff.
diff --git a/libvo/vo_vesa.c b/libvo/vo_vesa.c
index e9cad61248..d1924fe18a 100644
--- a/libvo/vo_vesa.c
+++ b/libvo/vo_vesa.c
@@ -1,11 +1,22 @@
/*
- * video_out_vesa.c
+ * copyright (C) 2001 Nick Kurshev <nickols_k@mail.ru>
+ * This file is partly based on vbetest.c from lrmi distributive.
*
- * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - Oct 2001
+ * This file is part of MPlayer.
*
- * You can redistribute this file under terms and conditions
- * of GNU General Public licence v2 or later.
- * This file is partly based on vbetest.c from lrmi distributive.
+ * 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.
*/
/*
diff --git a/libvo/vo_zr.c b/libvo/vo_zr.c
index 26d868ffd4..b73150c3d0 100644
--- a/libvo/vo_zr.c
+++ b/libvo/vo_zr.c
@@ -1,6 +1,22 @@
-/*
- * vo_zr.c - playback on zoran cards
- * Copyright (C) Rik Snel 2001,2002, License GNU GPL v2 or later
+/*
+ * playback on Zoran cards
+ * copyright (C) 2001, 2003 Rik Snel
+ *
+ * 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.
*/
/* $Id$ */
diff --git a/libvo/vo_zr2.c b/libvo/vo_zr2.c
index 362ae49860..fb1fa025e6 100644
--- a/libvo/vo_zr2.c
+++ b/libvo/vo_zr2.c
@@ -1,7 +1,23 @@
-/*
- * vo_zr2.c - playback on zoran cards
- * Based on vo_zr.c,v 1.27
- * Copyright (C) Rik Snel 2001-2005, License GNU GPL v2 or later
+/*
+ * playback on Zoran cards, based on vo_zr.c
+ *
+ * copyright (C) 2001-2005 Rik Snel
+ *
+ * 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.
*/
/* $Id$ */
diff --git a/libvo/vosub_vidix.c b/libvo/vosub_vidix.c
index bb53dfb89a..688311b3ab 100644
--- a/libvo/vosub_vidix.c
+++ b/libvo/vosub_vidix.c
@@ -1,14 +1,25 @@
/*
- * vosub_vidix.c
+ * vidix interface to any mplayer vo driver
+ * (partly based on vesa_lvo.c)
*
- * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - 2002
- * Copyright (C) Alex Beregszaszi
+ * copyright (C) 2002 Nick Kurshev <nickols_k@mail.ru>
+ * copyright (C) Alex Beregszaszi
*
- * You can redistribute this file under terms and conditions
- * of GNU General Public licence v2 or later.
+ * This file is part of MPlayer.
*
- * This file contains vidix interface to any mplayer's VO plugin.
- * (Partly based on vesa_lvo.c from mplayer's package)
+ * 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 <inttypes.h>
diff --git a/libvo/vosub_vidix.h b/libvo/vosub_vidix.h
index 3befcd42e9..128409e95a 100644
--- a/libvo/vosub_vidix.h
+++ b/libvo/vosub_vidix.h
@@ -1,12 +1,23 @@
/*
- * vosub_vidix.h
+ * vosub_vidix interface to any mplayer vo driver
*
- * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - 2002
+ * copyright (C) 2002 Nick Kurshev <nickols_k@mail.ru>
*
- * You can redistribute this file under terms and conditions
- * of GNU General Public licence v2 or later.
+ * This file is part of MPlayer.
*
- * This file contains vosub_vidix interface to any mplayer's VO driver
+ * 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_VOSUB_VIDIX_H