[MPlayer-cvslog] r28779 - in trunk/osdep: getch2-win.c getch2.c getch2.h gettimeofday.c glob-win.c glob.h keycodes.h macosx_finder_args.c mmap_anon.c mmap_anon.h mplayer.rc setenv.c shmem.c shmem.h strsep.c swab.c ...
diego
subversion at mplayerhq.hu
Sun Mar 1 14:13:26 CET 2009
Author: diego
Date: Sun Mar 1 14:13:25 2009
New Revision: 28779
Log:
Add standard license headers to files.
Modified:
trunk/osdep/getch2-win.c
trunk/osdep/getch2.c
trunk/osdep/getch2.h
trunk/osdep/gettimeofday.c
trunk/osdep/glob-win.c
trunk/osdep/glob.h
trunk/osdep/keycodes.h
trunk/osdep/macosx_finder_args.c
trunk/osdep/mmap_anon.c
trunk/osdep/mmap_anon.h
trunk/osdep/mplayer.rc
trunk/osdep/setenv.c
trunk/osdep/shmem.c
trunk/osdep/shmem.h
trunk/osdep/strsep.c
trunk/osdep/swab.c
trunk/osdep/timer-linux.c
trunk/osdep/timer-win2.c
trunk/osdep/timer.h
trunk/osdep/vsscanf.c
Modified: trunk/osdep/getch2-win.c
==============================================================================
--- trunk/osdep/getch2-win.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/getch2-win.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,4 +1,23 @@
-/* windows TermIO for MPlayer (C) 2003 Sascha Sommer */
+/* Windows TermIO
+ *
+ * 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.
+ */
// See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/WinUI/WindowsUserInterface/UserInput/VirtualKeyCodes.asp
// for additional virtual keycodes
Modified: trunk/osdep/getch2.c
==============================================================================
--- trunk/osdep/getch2.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/getch2.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,4 +1,25 @@
-/* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */
+/*
+ * GyS-TermIO v2.0 (for GySmail v3)
+ * a very small replacement of ncurses library
+ *
+ * copyright (C) 1999 A'rpi/ESP-team
+ *
+ * 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/osdep/getch2.h
==============================================================================
--- trunk/osdep/getch2.h Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/getch2.h Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,5 +1,23 @@
-/* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */
-/* a very small replacement of ncurses library */
+/*
+ * GyS-TermIO v2.0 (for GySmail v3)
+ * a very small replacement of ncurses 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.
+ */
#ifndef MPLAYER_GETCH2_H
#define MPLAYER_GETCH2_H
Modified: trunk/osdep/gettimeofday.c
==============================================================================
--- trunk/osdep/gettimeofday.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/gettimeofday.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -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 <sys/time.h>
Modified: trunk/osdep/glob-win.c
==============================================================================
--- trunk/osdep/glob-win.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/glob-win.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -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 <sys/types.h>
#include <stdio.h>
Modified: trunk/osdep/glob.h
==============================================================================
--- trunk/osdep/glob.h Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/glob.h Sun Mar 1 14:13:25 2009 (r28779)
@@ -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_GLOB_H
#define MPLAYER_GLOB_H
Modified: trunk/osdep/keycodes.h
==============================================================================
--- trunk/osdep/keycodes.h Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/keycodes.h Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,4 +1,24 @@
-/* KEY code definitions for GyS-TermIO v2.0 (C) 1999 A'rpi/ESP-team */
+/*
+ * KEY code definitions for GyS-TermIO v2.0
+ *
+ * copyright (C) 1999 A'rpi/ESP-team
+ *
+ * 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_KEYCODES_H
#define MPLAYER_KEYCODES_H
Modified: trunk/osdep/macosx_finder_args.c
==============================================================================
--- trunk/osdep/macosx_finder_args.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/macosx_finder_args.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -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 <Carbon/Carbon.h>
#include <ApplicationServices/ApplicationServices.h>
#include "stream/url.h"
Modified: trunk/osdep/mmap_anon.c
==============================================================================
--- trunk/osdep/mmap_anon.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/mmap_anon.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -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.
+ */
+
/**
* \file mmap_anon.c
* \brief Provide a compatible anonymous space mapping function
Modified: trunk/osdep/mmap_anon.h
==============================================================================
--- trunk/osdep/mmap_anon.h Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/mmap_anon.h Sun Mar 1 14:13:25 2009 (r28779)
@@ -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_MMAP_ANON_H
#define MPLAYER_MMAP_ANON_H
Modified: trunk/osdep/mplayer.rc
==============================================================================
--- trunk/osdep/mplayer.rc Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/mplayer.rc Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,7 +1,22 @@
-/*Windows resource file for MPlayer
- compile with
- windres -o resfile.o mplayer.rc
- and add resfile.o to OBJS_MPLAYER in Makefile*/
+/*
+ * Windows resource file for MPlayer
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * MPlayer is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
#include <winver.h>
#include "version.h"
Modified: trunk/osdep/setenv.c
==============================================================================
--- trunk/osdep/setenv.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/setenv.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,4 +1,22 @@
-/* setenv implementation for systems lacking it. */
+/*
+ * setenv implementation for systems lacking 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 "config.h"
Modified: trunk/osdep/shmem.c
==============================================================================
--- trunk/osdep/shmem.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/shmem.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,9 +1,24 @@
/*
- * shmem.c - Shared memory allocation
- *
- * based on mpg123's xfermem.c by
- * Oliver Fromme <oliver.fromme at heim3.tu-clausthal.de>
- * Sun Apr 6 02:26:26 MET DST 1997
+ * shared memory allocation
+ *
+ * based on mpg123's xfermem.c by
+ * Oliver Fromme <oliver.fromme at heim3.tu-clausthal.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 "config.h"
Modified: trunk/osdep/shmem.h
==============================================================================
--- trunk/osdep/shmem.h Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/shmem.h Sun Mar 1 14:13:25 2009 (r28779)
@@ -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_SHMEM_H
#define MPLAYER_SHMEM_H
Modified: trunk/osdep/strsep.c
==============================================================================
--- trunk/osdep/strsep.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/strsep.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,4 +1,22 @@
-/* strsep implementation for systems that do not have it in libc */
+/*
+ * strsep implementation for systems that do not have it in libc
+ *
+ * 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>
Modified: trunk/osdep/swab.c
==============================================================================
--- trunk/osdep/swab.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/swab.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -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"
/* system has no swab. emulate via bswap */
Modified: trunk/osdep/timer-linux.c
==============================================================================
--- trunk/osdep/timer-linux.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/timer-linux.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,4 +1,23 @@
-// Precise timer routines for LINUX (C) LGB & A'rpi/ASTRAL
+/*
+ * precise timer routines for Linux
+ * copyright (C) LGB & A'rpi/ASTRAL
+ *
+ * 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 <unistd.h>
#ifdef __BEOS__
Modified: trunk/osdep/timer-win2.c
==============================================================================
--- trunk/osdep/timer-win2.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/timer-win2.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,4 +1,22 @@
-// Precise timer routines for WINDOWS
+/*
+ * precise timer routines for Windows
+ *
+ * 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 <windows.h>
#include <mmsystem.h>
Modified: trunk/osdep/timer.h
==============================================================================
--- trunk/osdep/timer.h Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/timer.h Sun Mar 1 14:13:25 2009 (r28779)
@@ -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_TIMER_H
#define MPLAYER_TIMER_H
Modified: trunk/osdep/vsscanf.c
==============================================================================
--- trunk/osdep/vsscanf.c Sun Mar 1 13:25:31 2009 (r28778)
+++ trunk/osdep/vsscanf.c Sun Mar 1 14:13:25 2009 (r28779)
@@ -1,6 +1,24 @@
-#include "config.h"
+/*
+ * vsscanf implementation for systems that do not have it in libc
+ *
+ * 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.
+ */
-/* system has no vsscanf. try to provide one */
+#include "config.h"
#include <stdio.h>
#include <stdarg.h>
More information about the MPlayer-cvslog
mailing list