Clean up headers a bit more.

This commit is contained in:
Guillermo S. Romero 2011-02-23 18:03:40 +00:00
parent 962a4386bc
commit 00c05c8404
18 changed files with 115 additions and 119 deletions

@ -1,10 +1,8 @@
/* /*
* avi.c * $Id$
* *
* This is external code. * This is external code.
* *
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or

@ -1,10 +1,8 @@
/* /*
* avirgb.c * $Id$
* *
* This is external code. Converts rgb-type avi-s. * This is external code. Converts rgb-type avi-s.
* *
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or

@ -1,10 +1,8 @@
/* /*
* codecs.c * $Id$
* *
* This is external code. Identify and convert different avi-files. * This is external code. Identify and convert different avi-files.
* *
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or

@ -1,11 +1,9 @@
/* /*
* endian.h * $Id$
* *
* This is external code. Streams bytes to output depending on the * This is external code. Streams bytes to output depending on the
* endianness of the system. * endianness of the system.
* *
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
@ -30,7 +28,8 @@
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
* */ *
*/
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

@ -1,10 +1,8 @@
/* /*
* endian.h * $Id$
* *
* This is external code. * This is external code.
* *
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
@ -29,7 +27,8 @@
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
* */ *
*/
#ifndef AVI_ENDIAN_H #ifndef AVI_ENDIAN_H
#define AVI_ENDIAN_H #define AVI_ENDIAN_H

@ -1,10 +1,8 @@
/* /*
* mjpeg.c * $Id$
* *
* This is external code. Converts between avi and mpeg/jpeg. * This is external code. Converts between avi and mpeg/jpeg.
* *
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
@ -29,7 +27,8 @@
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
* */ *
*/
#include "AVI_avi.h" #include "AVI_avi.h"
#include <stdlib.h> #include <stdlib.h>

@ -1,11 +1,9 @@
/* /*
* options.h * $Id$
* *
* This is external code. Sets some compression related options * This is external code. Sets some compression related options
* (width, height quality, framerate). * (width, height quality, framerate).
* *
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
@ -30,7 +28,8 @@
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
* */ *
*/
#include "AVI_avi.h" #include "AVI_avi.h"
#include "avi_intern.h" #include "avi_intern.h"

@ -1,10 +1,8 @@
/* /*
* rgb32.c * $Id$
* *
* This is external code. Converts between rgb32 and avi. * This is external code. Converts between rgb32 and avi.
* *
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
@ -29,7 +27,8 @@
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
* */ *
*/
#include "AVI_avi.h" #include "AVI_avi.h"
#include <stdlib.h> #include <stdlib.h>

@ -1,29 +1,29 @@
/* cloth.c /*
* * $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2 * as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. * of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation, * along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* *
* The Original Code is Copyright (C) Blender Foundation * The Original Code is Copyright (C) Blender Foundation
* All rights reserved. * All rights reserved.
* *
* Contributor(s): Daniel Genrich * Contributor(s): Daniel Genrich
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
#include "MEM_guardedalloc.h" #include "MEM_guardedalloc.h"

@ -1,31 +1,31 @@
/* collision.c /*
* * $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2 * as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. * of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation, * along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* *
* The Original Code is Copyright (C) Blender Foundation * The Original Code is Copyright (C) Blender Foundation
* All rights reserved. * All rights reserved.
* *
* The Original Code is: all of this file. * The Original Code is: all of this file.
* *
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
#include "MEM_guardedalloc.h" #include "MEM_guardedalloc.h"

@ -1,4 +1,5 @@
/* exotic.c /*
* $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
@ -27,7 +28,8 @@
* *
* - Blender Foundation * - Blender Foundation
* *
* ***** END GPL LICENSE BLOCK *****/ * ***** END GPL LICENSE BLOCK ****
*/
#include <stddef.h> #include <stddef.h>
#include "BLI_storage.h" #include "BLI_storage.h"

@ -1,6 +1,5 @@
/* /*
* fluidsim.c * $Id$
*
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *

@ -1,31 +1,31 @@
/* implicit.c /*
* * $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2 * as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. * of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation, * along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* *
* The Original Code is Copyright (C) Blender Foundation * The Original Code is Copyright (C) Blender Foundation
* All rights reserved. * All rights reserved.
* *
* The Original Code is: all of this file. * The Original Code is: all of this file.
* *
* Contributor(s): none yet. * Contributor(s): none yet.
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */
#include "MEM_guardedalloc.h" #include "MEM_guardedalloc.h"

@ -1,4 +1,6 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or

@ -1,4 +1,5 @@
/* /*
* $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
@ -19,7 +20,7 @@
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved. * All rights reserved.
* *
* Contributor(s): Campbell Barton <ideasman42@gmail.com> * Contributor(s): Campbell Barton <ideasman42@gmail.com>
* *
* ***** END GPL LICENSE BLOCK ***** * ***** END GPL LICENSE BLOCK *****
*/ */

@ -1,5 +1,5 @@
/* /*
* shrinkwrap.c * $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *

@ -1,4 +1,5 @@
/* /*
* $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *

@ -1,4 +1,6 @@
/* /*
* $Id$
*
* ffmpeg-write support * ffmpeg-write support
* *
* Partial Copyright (c) 2006 Peter Schlaile * Partial Copyright (c) 2006 Peter Schlaile