[MPlayer-cvslog] r28481 - in trunk/libvo: aclib.c aclib_template.c aspect.c aspect.h aspecttest.c font_load.c font_load.h font_load_ft.c gl_common.h gtf.h mga_common.c osd.c osd.h osd_font.h osd_template.c sub.c su...
diego
subversion at mplayerhq.hu
Sun Feb 8 04:27:30 CET 2009
Author: diego
Date: Sun Feb 8 04:27:30 2009
New Revision: 28481
Log:
Add standard license headers, unify header formatting.
Modified:
trunk/libvo/aclib.c
trunk/libvo/aclib_template.c
trunk/libvo/aspect.c
trunk/libvo/aspect.h
trunk/libvo/aspecttest.c
trunk/libvo/font_load.c
trunk/libvo/font_load.h
trunk/libvo/font_load_ft.c
trunk/libvo/gl_common.h
trunk/libvo/gtf.h
trunk/libvo/mga_common.c
trunk/libvo/osd.c
trunk/libvo/osd.h
trunk/libvo/osd_font.h
trunk/libvo/osd_template.c
trunk/libvo/sub.c
trunk/libvo/sub.h
trunk/libvo/video_out.c
trunk/libvo/video_out.h
trunk/libvo/videodev_mjpeg.h
trunk/libvo/vo_aa.c
trunk/libvo/vo_caca.c
trunk/libvo/vo_cvidix.c
trunk/libvo/vo_dxr2.c
trunk/libvo/vo_dxr3.c
trunk/libvo/vo_fbdev.c
trunk/libvo/vo_fbdev2.c
trunk/libvo/vo_ggi.c
trunk/libvo/vo_gl.c
trunk/libvo/vo_gl2.c
trunk/libvo/vo_macosx.h
trunk/libvo/vo_macosx.m
trunk/libvo/vo_mga.c
trunk/libvo/vo_mpegpes.c
trunk/libvo/vo_png.c
trunk/libvo/vo_quartz.c
trunk/libvo/vo_svga.c
trunk/libvo/vo_tga.c
trunk/libvo/vo_winvidix.c
trunk/libvo/vo_x11.c
trunk/libvo/vo_xmga.c
trunk/libvo/vo_xover.c
trunk/libvo/vo_xv.c
trunk/libvo/vo_xvidix.c
trunk/libvo/vo_xvmc.c
trunk/libvo/vo_yuv4mpeg.c
trunk/libvo/w32_common.c
trunk/libvo/w32_common.h
trunk/libvo/wskeys.h
trunk/libvo/x11_common.c
trunk/libvo/x11_common.h
Modified: trunk/libvo/aclib.c
==============================================================================
--- trunk/libvo/aclib.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/aclib.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,12 +1,29 @@
+/*
+ * aclib - advanced C library ;)
+ * Functions which improve and expand the standard C library, see aclib_template.c.
+ * This file only contains runtime CPU detection and config option stuff.
+ * runtime CPU detection by Michael Niedermayer (michaelni at gmx.at)
+ *
+ * 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 "config.h"
#ifdef CONFIG_FASTMEMCPY
-/*
- aclib - advanced C library ;)
- This file contains functions which improve and expand standard C-library
- see aclib_template.c ... this file only contains runtime cpu detection and config options stuff
- runtime cpu detection by michael niedermayer (michaelni at gmx.at) is under GPL
-*/
#include <stddef.h>
#include <string.h>
#include "cpudetect.h"
Modified: trunk/libvo/aclib_template.c
==============================================================================
--- trunk/libvo/aclib_template.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/aclib_template.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,7 +1,23 @@
/*
- aclib - advanced C library ;)
- This file contains functions which improve and expand standard C-library
-*/
+ * aclib - advanced C library ;)
+ * functions which improve and expand the standard C library
+ *
+ * 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.
+ */
#if !HAVE_SSE2
/*
Modified: trunk/libvo/aspect.c
==============================================================================
--- trunk/libvo/aspect.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/aspect.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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.
+ */
+
/* Stuff for correct aspect scaling. */
#include "aspect.h"
#include "geometry.h"
Modified: trunk/libvo/aspect.h
==============================================================================
--- trunk/libvo/aspect.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/aspect.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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_ASPECT_H
#define MPLAYER_ASPECT_H
/* Stuff for correct aspect scaling. */
Modified: trunk/libvo/aspecttest.c
==============================================================================
--- trunk/libvo/aspecttest.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/aspecttest.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,4 +1,22 @@
-/* test app for aspect.[ch] by Atmos */
+/*
+ * test app for aspect.[ch] by Atmos
+ *
+ * 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>
Modified: trunk/libvo/font_load.c
==============================================================================
--- trunk/libvo/font_load.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/font_load.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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 "config.h"
#include <stdio.h>
Modified: trunk/libvo/font_load.h
==============================================================================
--- trunk/libvo/font_load.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/font_load.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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_FONT_LOAD_H
#define MPLAYER_FONT_LOAD_H
Modified: trunk/libvo/font_load_ft.c
==============================================================================
--- trunk/libvo/font_load_ft.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/font_load_ft.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -4,9 +4,23 @@
*
* Artur Zaprzala <zybi at fanthom.irc.pl>
*
- * ported inside mplayer by Jindrich Makovicka
- * <makovick at gmail.com>
+ * ported inside MPlayer by Jindrich Makovicka <makovick at gmail.com>
+ *
+ * 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 "config.h"
Modified: trunk/libvo/gl_common.h
==============================================================================
--- trunk/libvo/gl_common.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/gl_common.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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_GL_COMMON_H
#define MPLAYER_GL_COMMON_H
Modified: trunk/libvo/gtf.h
==============================================================================
--- trunk/libvo/gtf.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/gtf.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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_GTF_H
#define MPLAYER_GTF_H
Modified: trunk/libvo/mga_common.c
==============================================================================
--- trunk/libvo/mga_common.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/mga_common.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,20 @@
+/*
+ * 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 "fastmemcpy.h"
#include "cpudetect.h"
Modified: trunk/libvo/osd.c
==============================================================================
--- trunk/libvo/osd.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/osd.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,6 +1,24 @@
-// Generic alpha renderers for all YUV modes and RGB depths.
-// These are "reference implementations", should be optimized later (MMX, etc)
-// Templating Code from Michael Niedermayer (michaelni at gmx.at) is under GPL
+/*
+ * generic alpha renderers for all YUV modes and RGB depths
+ * These are "reference implementations", should be optimized later (MMX, etc).
+ * templating code by Michael Niedermayer (michaelni at gmx.at)
+ *
+ * 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 FAST_OSD
//#define FAST_OSD_TABLE
Modified: trunk/libvo/osd.h
==============================================================================
--- trunk/libvo/osd.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/osd.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,10 +1,27 @@
+/*
+ * generic alpha renderers for all YUV modes and RGB depths
+ * These are "reference implementations", should be optimized later (MMX, etc).
+ *
+ * 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_OSD_H
#define MPLAYER_OSD_H
-// Generic alpha renderers for all YUV modes and RGB depths.
-// These are "reference implementations", should be optimized later (MMX, etc)
-
void vo_draw_alpha_init(void); // build tables
void vo_draw_alpha_yv12(int w, int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase, int dststride);
Modified: trunk/libvo/osd_font.h
==============================================================================
--- trunk/libvo/osd_font.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/osd_font.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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_OSD_FONT_H
#define MPLAYER_OSD_FONT_H
Modified: trunk/libvo/osd_template.c
==============================================================================
--- trunk/libvo/osd_template.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/osd_template.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,6 +1,23 @@
-// Generic alpha renderers for all YUV modes and RGB depths.
-// Optimized by Nick and Michael
-// Code from Michael Niedermayer (michaelni at gmx.at) is under GPL
+/*
+ * generic alpha renderers for all YUV modes and RGB depths
+ * Optimized by Nick and Michael.
+ *
+ * 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.
+ */
#undef PREFETCH
#undef EMMS
Modified: trunk/libvo/sub.c
==============================================================================
--- trunk/libvo/sub.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/sub.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,20 @@
+/*
+ * 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>
Modified: trunk/libvo/sub.h
==============================================================================
--- trunk/libvo/sub.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/sub.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,20 @@
+/*
+ * 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_SUB_H
#define MPLAYER_SUB_H
Modified: trunk/libvo/video_out.c
==============================================================================
--- trunk/libvo/video_out.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/video_out.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,6 +1,22 @@
-
-/* this file contains libvo's common functions, variables used by
- many/all drivers. */
+/*
+ * libvo common functions, variables used by many/all drivers.
+ *
+ * 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>
Modified: trunk/libvo/video_out.h
==============================================================================
--- trunk/libvo/video_out.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/video_out.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,12 +1,25 @@
/*
- * video_out.h
+ * Copyright (C) Aaron Holtzman - Aug 1999
+ * Strongly modified, most parts rewritten: A'rpi/ESP-team - 2000-2001
+ * (C) MPlayer developers
*
- * Copyright (C) Aaron Holtzman - Aug 1999
- * Strongly modified, most parts rewritten: A'rpi/ESP-team - 2000-2001
- * (C) MPlayer Developers
+ * 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_VIDEO_OUT_H
#define MPLAYER_VIDEO_OUT_H
Modified: trunk/libvo/videodev_mjpeg.h
==============================================================================
--- trunk/libvo/videodev_mjpeg.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/videodev_mjpeg.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,7 +1,23 @@
-/* These are the MJPEG API extensions for the Video4Linux API,
- first introduced by the Iomega Buz driver by Rainer Johanni
- <rainer at johanni.de>
-*/
+/*
+ * MJPEG API extensions for the Video4Linux API, first introduced by the
+ * Iomega Buz driver by Rainer Johanni <rainer at johanni.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
+ * with MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
#ifndef MPLAYER_VIDEODEV_MJPEG_H
#define MPLAYER_VIDEODEV_MJPEG_H
Modified: trunk/libvo/vo_aa.c
==============================================================================
--- trunk/libvo/vo_aa.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_aa.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,13 +1,23 @@
/*
- * MPlayer
- *
- * Video driver for AAlib - 1.0
- *
- * by Folke Ashberg <folke at ashberg.de>
- *
- * Code started: Sun Aug 12 2001
- * Version 1.0 : Thu Aug 16 2001
+ * video output driver for AAlib
+ *
+ * copyright (c) 2001 Folke Ashberg <folke at ashberg.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
+ * with MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdio.h>
Modified: trunk/libvo/vo_caca.c
==============================================================================
--- trunk/libvo/vo_caca.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_caca.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,14 +1,27 @@
/*
- * MPlayer
- *
- * Video driver for libcaca
- *
+ * video output driver for libcaca
+ *
* by Pigeon <pigeon at pigeond.net>
*
* Some functions/codes/ideas are from x11 and aalib vo
*
- * TODO: support those draw_alpha stuff?
- *
+ * TODO: support draw_alpha?
+ *
+ * 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>
Modified: trunk/libvo/vo_cvidix.c
==============================================================================
--- trunk/libvo/vo_cvidix.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_cvidix.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,12 +1,26 @@
/*
- VIDIX accelerated overlay on (black) background
-
- should work on any OS
-
- (C) Sascha Sommer
-
-
-*/
+ * VIDIX-accelerated overlay on (black) background
+ *
+ * should work on any OS
+ *
+ * copyright (C) 2003 Sascha Sommer
+ *
+ * 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>
Modified: trunk/libvo/vo_dxr2.c
==============================================================================
--- trunk/libvo/vo_dxr2.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_dxr2.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,20 @@
+/*
+ * 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 "fastmemcpy.h"
#include <stdio.h>
Modified: trunk/libvo/vo_dxr3.c
==============================================================================
--- trunk/libvo/vo_dxr3.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_dxr3.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,8 +1,23 @@
/*
- * vo_dxr3.c - DXR3/H+ video out
+ * DXR3/H+ video output
*
* Copyright (C) 2002-2003 David Holm <david at realityrift.com>
*
+ * 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/em8300.h>
Modified: trunk/libvo/vo_fbdev.c
==============================================================================
--- trunk/libvo/vo_fbdev.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_fbdev.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,10 +1,25 @@
/*
- * Video driver for Framebuffer device
- * by Szabolcs Berecz <szabi at inf.elte.hu>
- * (C) 2001
+ * video driver for framebuffer device
+ * copyright (C) 2001 Szabolcs Berecz <szabi at inf.elte.hu>
*
* Some idea and code borrowed from Chris Lawrence's ppmtofb-0.27
* Some fixes and small improvements by Joey Parrish <joey at nicewarrior.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>
Modified: trunk/libvo/vo_fbdev2.c
==============================================================================
--- trunk/libvo/vo_fbdev2.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_fbdev2.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,7 +1,22 @@
/*
- * Video driver for Framebuffer device
- * by Joey Parrish <joey at nicewarrior.org>
- * (C) 2003
+ * video driver for framebuffer device
+ * copyright (C) 2003 Joey Parrish <joey at nicewarrior.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>
Modified: trunk/libvo/vo_ggi.c
==============================================================================
--- trunk/libvo/vo_ggi.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_ggi.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,18 +1,34 @@
/*
- vo_ggi.c - General Graphics Interface (GGI) Renderer for MPlayer
-
- (C) Alex Beregszaszi
-
- Uses libGGI - http://www.ggi-project.org/
-
- TODO:
- * implement gamma handling (VAA isn't obsoleted?)
-
- Thanks to Andreas Beck for his patches.
-
- Many thanks to Atmosfear, he hacked this driver to work with Planar
- formats, and he fixed the RGB handling.
-*/
+ * General Graphics Interface (GGI) vo driver
+ *
+ * copyright (C) 2001 Alex Beregszaszi
+ *
+ * Uses libGGI - http://www.ggi-project.org/
+ *
+ * TODO:
+ * * implement gamma handling (VAA isn't obsoleted?)
+ *
+ * Thanks to Andreas Beck for his patches.
+ *
+ * Many thanks to Atmosfear, he hacked this driver to work with planar
+ * formats, and he fixed the RGB handling.
+ *
+ * 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>
Modified: trunk/libvo/vo_gl.c
==============================================================================
--- trunk/libvo/vo_gl.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_gl.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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>
#include <string.h>
Modified: trunk/libvo/vo_gl2.c
==============================================================================
--- trunk/libvo/vo_gl2.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_gl2.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,7 +1,23 @@
/*
- * video_out_gl.c, X11/OpenGL interface
+ * X11/OpenGL interface
* based on video_out_x11 by Aaron Holtzman,
* and WS opengl window manager by Pontscho/Fresh!
+ *
+ * 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>
Modified: trunk/libvo/vo_macosx.h
==============================================================================
--- trunk/libvo/vo_macosx.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_macosx.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,12 +1,24 @@
/*
- vo_macosx.h
-
- by Nicolas Plourde <nicolasplourde at gmail.com>
-
- Copyright (c) Nicolas Plourde - 2005
-
- MPlayer Mac OSX video out module.
-*/
+ * MPlayer Mac OS X video output driver
+ *
+ * Copyright (c) 2005 Nicolas Plourde <nicolasplourde at gmail.com>
+ *
+ * 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.
+ */
#import <Cocoa/Cocoa.h>
#import <QuartzCore/QuartzCore.h>
Modified: trunk/libvo/vo_macosx.m
==============================================================================
--- trunk/libvo/vo_macosx.m Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_macosx.m Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,4 +1,22 @@
/*
+ * 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.
+ */
+
+/*
vo_macosx.m
by Nicolas Plourde <nicolasplourde at gmail.com>
Modified: trunk/libvo/vo_mga.c
==============================================================================
--- trunk/libvo/vo_mga.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_mga.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,5 +1,21 @@
-/*
- * output through mga_vid kernel driver
+/*
+ * video output through mga_vid kernel 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.
*/
#include <stdio.h>
Modified: trunk/libvo/vo_mpegpes.c
==============================================================================
--- trunk/libvo/vo_mpegpes.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_mpegpes.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,15 +1,28 @@
-/*
- * Based on:
- *
- * test_av.c - Test program for new API
+/*
+ * based on: test_av.c - test program for new API
*
* Copyright (C) 2000 Ralph Metzler <ralph at convergence.de>
* & Marcus Metzler <marcus at convergence.de>
* for convergence integrated media GmbH
*
- * libav - MPEG-PS multiplexer, part of ffmpeg
- * Copyright Gerard Lantau (see http://ffmpeg.sf.net)
+ * MPEG-PS multiplexer, part of FFmpeg
+ * Copyright Gerard Lantau (see http://ffmpeg.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 "config.h"
Modified: trunk/libvo/vo_png.c
==============================================================================
--- trunk/libvo/vo_png.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_png.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,10 +1,25 @@
-/*
- * vo_png.c, Portable Network Graphics Renderer for MPlayer
+/*
+ * Portable Network Graphics renderer
*
* Copyright 2001 by Felix Buenemann <atmosfear at users.sourceforge.net>
*
* Uses libpng (which uses zlib), so see according licenses.
*
+ * 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>
Modified: trunk/libvo/vo_quartz.c
==============================================================================
--- trunk/libvo/vo_quartz.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_quartz.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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.
+ */
+
/**
\author Nicolas Plourde <nicolasplourde at gmail.com>
Modified: trunk/libvo/vo_svga.c
==============================================================================
--- trunk/libvo/vo_svga.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_svga.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,11 +1,28 @@
/*
+ * video driver for SVGAlib
+ * by Zoltan Mark Vician <se7en at sch.bme.hu>
+ * Code started: Mon Apr 1 23:25:47 2001
+ * Some changes by Matan Ziv-Av <matan at svgalib.org>
+ * complete rewrite by Ivan Kalvachev 19 Mar 2003
+ *
+ * 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.
+ */
- Video driver for SVGAlib
- by Zoltan Mark Vician <se7en at sch.bme.hu>
- Code started: Mon Apr 1 23:25:47 2001
- Some changes by Matan Ziv-Av <matan at svgalib.org>
- Compleat rewrite by Ivan Kalvachev 19 Mar 2003:
-
+/*
Wrangings:
- 1bpp doesn't work right for me with '-double' and svgalib 1.4.3,
but works OK with svgalib 1.9.17
Modified: trunk/libvo/vo_tga.c
==============================================================================
--- trunk/libvo/vo_tga.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_tga.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,28 +1,46 @@
-/*
- * vo_tga.c: targa output
+/*
+ * TARGA video output
*
- * this video output module write targa uncompressed file in 15, 24 and 32 bit bgr format.
+ * This video output module writes TARGA uncompressed files in 15, 24 and 32
+ * bit BGR format.
*
* to select the output format use the format filter:
* mplayer -vo tga -vf format=bgr15 ...
* mplayer -vo tga -vf format=bgr24 ...
* mplayer -vo tga -vf format=bgr32 ...
*
- * The 16 bit file are loaded without problem from Gimp and ImageMagick but give an error
- * with entice (a visualizer from the enlightenment package that use the imlib2 package).
+ * The 16 bit files are loaded without problem from Gimp and ImageMagick but
+ * give an error with entice (a visualizer from the enlightenment package
+ * that uses the imlib2 package).
*
- * In 32 bit mode the alpha channel is set to 255 (0xff). For big endian
- * machines, TGA_ALPHA32 changes from 0xff000000 to 0x000000ff, and TGA_SHIFT32 from 0 to 8.
+ * In 32-bit mode the alpha channel is set to 255 (0xff). For big-endian
+ * machines, TGA_ALPHA32 changes from 0xff000000 to 0x000000ff, and
+ * TGA_SHIFT32 from 0 to 8.
*
- * I need to fill the alpha channel because entice consider that alpha channel (and displays
- * nothing, only the background!), but ImageMacick (the program display) or gimp doesn't
- * care.
+ * I need to fill the alpha channel because entice considers that alpha
+ * channel (and displays nothing, only the background!), but ImageMagick
+ * (the program display) or gimp doesn't care.
*
- * maybe is possible (with a compilation switch) to avoid the fill of the alpha channel
- * and work outside mplayer (if needed)
+ * Maybe it is possible (with a compilation switch) to avoid the fill of
+ * the alpha channel and work outside MPlayer (if needed).
*
* Daniele Forghieri ( guru at digitalfantasy.it )
*
+ * 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>
Modified: trunk/libvo/vo_winvidix.c
==============================================================================
--- trunk/libvo/vo_winvidix.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_winvidix.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,10 +1,24 @@
/*
- VIDIX accelerated overlay in a WIN32 window
-
- (C) Sascha Sommer
-
-
-*/
+ * VIDIX-accelerated overlay in a Win32 window
+ *
+ * copyright (C) 2003 Sascha Sommer
+ *
+ * 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>
Modified: trunk/libvo/vo_x11.c
==============================================================================
--- trunk/libvo/vo_x11.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_x11.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,20 @@
+/*
+ * 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>
Modified: trunk/libvo/vo_xmga.c
==============================================================================
--- trunk/libvo/vo_xmga.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_xmga.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,13 +1,25 @@
-
-//#define SHOW_TIME
-
/*
- * vo_xmga.c
+ * copyright (C) 2001 Zoltan Ponekker
*
- * Copyright (C) Zoltan Ponekker - Jan 2001
+ * 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 SHOW_TIME
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Modified: trunk/libvo/vo_xover.c
==============================================================================
--- trunk/libvo/vo_xover.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_xover.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,13 +1,29 @@
/*
- XOver a general x11 vo for mplayer overlay drivers based on :
- VIDIX accelerated overlay in a X window
-
- (C) Alex Beregszaszi & Zoltan Ponekker & Nick Kurshev
-
- WS window manager by Pontscho/Fresh!
-
- Based on vo_gl.c and vo_vesa.c and vo_xmga.c (.so mastah! ;))
-*/
+ * XOver a general x11 vo for MPlayer overlay drivers based on:
+ * VIDIX-accelerated overlay in an X window
+ *
+ * copyright (C) Alex Beregszaszi & Zoltan Ponekker & Nick Kurshev
+ *
+ * WS window manager by Pontscho/Fresh!
+ *
+ * based on vo_gl.c and vo_vesa.c and vo_xmga.c (.so mastah! ;))
+ *
+ * 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>
Modified: trunk/libvo/vo_xv.c
==============================================================================
--- trunk/libvo/vo_xv.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_xv.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,4 +1,22 @@
-/* vo_xv.c, X11 Xv interface */
+/*
+ * X11 Xv interface
+ *
+ * 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.
+ */
// Number of buffers _FOR_DOUBLEBUFFERING_MODE_
// Use option -double to enable double buffering! (default: single buffer)
Modified: trunk/libvo/vo_xvidix.c
==============================================================================
--- trunk/libvo/vo_xvidix.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_xvidix.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,12 +1,28 @@
/*
- VIDIX accelerated overlay in a X window
-
- (C) Alex Beregszaszi & Zoltan Ponekker & Nick Kurshev
-
- WS window manager by Pontscho/Fresh!
-
- Based on vo_gl.c and vo_vesa.c and vo_xmga.c (.so mastah! ;))
-*/
+ * VIDIX-accelerated overlay in an X window
+ *
+ * copyright (C) Alex Beregszaszi & Zoltan Ponekker & Nick Kurshev
+ *
+ * WS window manager by Pontscho/Fresh!
+ *
+ * based on vo_gl.c and vo_vesa.c and vo_xmga.c (.so mastah! ;))
+ *
+ * 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>
Modified: trunk/libvo/vo_xvmc.c
==============================================================================
--- trunk/libvo/vo_xvmc.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_xvmc.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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>
#include <string.h>
Modified: trunk/libvo/vo_yuv4mpeg.c
==============================================================================
--- trunk/libvo/vo_yuv4mpeg.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/vo_yuv4mpeg.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,8 +1,7 @@
-/*
- * vo_yuv4mpeg.c, yuv4mpeg (mjpegtools) interface
+/*
+ * yuv4mpeg (mjpegtools) interface
*
- * Thrown together by
- * Robert Kesterson <robertk at robertk.com>
+ * Thrown together by Robert Kesterson <robertk at robertk.com>
* Based on the pgm output plugin, the rgb2rgb postproc filter, divxdec,
* and probably others.
*
@@ -17,8 +16,24 @@
*
* 2002/04/17 Juergen Hammelmann <juergen.hammelmann at gmx.de>
* - added support for output of subtitles
- * best, if you give option '-osdlevel 0' to mplayer for
+ * best, if you give option '-osdlevel 0' to mplayer for
* no watching the seek+timer
+ *
+ * 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>
Modified: trunk/libvo/w32_common.c
==============================================================================
--- trunk/libvo/w32_common.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/w32_common.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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 <limits.h>
#include <windows.h>
Modified: trunk/libvo/w32_common.h
==============================================================================
--- trunk/libvo/w32_common.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/w32_common.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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_W32_COMMON_H
#define MPLAYER_W32_COMMON_H
Modified: trunk/libvo/wskeys.h
==============================================================================
--- trunk/libvo/wskeys.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/wskeys.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,20 @@
+/*
+ * 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_WSKEYS_H
#define MPLAYER_WSKEYS_H
Modified: trunk/libvo/x11_common.c
==============================================================================
--- trunk/libvo/x11_common.c Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/x11_common.c Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,20 @@
+/*
+ * 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>
Modified: trunk/libvo/x11_common.h
==============================================================================
--- trunk/libvo/x11_common.h Sat Feb 7 18:34:45 2009 (r28480)
+++ trunk/libvo/x11_common.h Sun Feb 8 04:27:30 2009 (r28481)
@@ -1,3 +1,21 @@
+/*
+ * 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_X11_COMMON_H
#define MPLAYER_X11_COMMON_H
More information about the MPlayer-cvslog
mailing list