From 112162e09e486d787ace5ea4373fde8106f898c0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 30 Apr 2012 14:24:11 +0000 Subject: code cleanup: header cleanup --- source/blender/avi/intern/avi.c | 5 ++--- source/blender/avi/intern/avirgb.c | 5 ++--- source/blender/avi/intern/codecs.c | 5 ++--- source/blender/avi/intern/endian.c | 7 +++---- source/blender/avi/intern/endian.h | 9 +++------ source/blender/avi/intern/mjpeg.c | 5 ++--- source/blender/avi/intern/options.c | 7 +++---- source/blender/avi/intern/rgb32.c | 5 ++--- 8 files changed, 19 insertions(+), 29 deletions(-) (limited to 'source/blender/avi') diff --git a/source/blender/avi/intern/avi.c b/source/blender/avi/intern/avi.c index 3a64a8aa8ac..17c29e2a834 100644 --- a/source/blender/avi/intern/avi.c +++ b/source/blender/avi/intern/avi.c @@ -1,7 +1,4 @@ /* - * - * This is external code. - * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or @@ -31,6 +28,8 @@ /** \file blender/avi/intern/avi.c * \ingroup avi + * + * This is external code. */ diff --git a/source/blender/avi/intern/avirgb.c b/source/blender/avi/intern/avirgb.c index e06d0bbfa11..36e862708f4 100644 --- a/source/blender/avi/intern/avirgb.c +++ b/source/blender/avi/intern/avirgb.c @@ -1,7 +1,4 @@ /* - * - * This is external code. Converts rgb-type avi-s. - * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or @@ -31,6 +28,8 @@ /** \file blender/avi/intern/avirgb.c * \ingroup avi + * + * This is external code. Converts rgb-type avi-s. */ diff --git a/source/blender/avi/intern/codecs.c b/source/blender/avi/intern/codecs.c index 87db5915dc8..c99938e7b9e 100644 --- a/source/blender/avi/intern/codecs.c +++ b/source/blender/avi/intern/codecs.c @@ -1,7 +1,4 @@ /* - * - * This is external code. Identify and convert different avi-files. - * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or @@ -30,6 +27,8 @@ /** \file blender/avi/intern/codecs.c * \ingroup avi + * + * This is external code. Identify and convert different avi-files. */ diff --git a/source/blender/avi/intern/endian.c b/source/blender/avi/intern/endian.c index 41b8202af03..fd8cc56f551 100644 --- a/source/blender/avi/intern/endian.c +++ b/source/blender/avi/intern/endian.c @@ -1,8 +1,4 @@ /* - * - * This is external code. Streams bytes to output depending on the - * endianness of the system. - * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or @@ -32,6 +28,9 @@ /** \file blender/avi/intern/endian.c * \ingroup avi + * + * This is external code. Streams bytes to output depending on the + * endianness of the system. */ diff --git a/source/blender/avi/intern/endian.h b/source/blender/avi/intern/endian.h index 3229f32cbbd..7ef49cb1699 100644 --- a/source/blender/avi/intern/endian.h +++ b/source/blender/avi/intern/endian.h @@ -1,7 +1,4 @@ /* - * - * This is external code. - * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or @@ -26,14 +23,14 @@ * Contributor(s): none yet. * * ***** END GPL LICENSE BLOCK ***** - * */ /** \file blender/avi/intern/endian.h * \ingroup avi + * + * This is external code. */ - #ifndef __ENDIAN_H__ #define __ENDIAN_H__ @@ -49,7 +46,7 @@ #define AVI_INDEXE 6 #define AVI_MJPEGU 7 -void awrite (AviMovie *movie, void *datain, int block, int size, FILE *fp, int type); +void awrite(AviMovie *movie, void *datain, int block, int size, FILE *fp, int type); #endif diff --git a/source/blender/avi/intern/mjpeg.c b/source/blender/avi/intern/mjpeg.c index f6ebcab2aeb..29356f8ef28 100644 --- a/source/blender/avi/intern/mjpeg.c +++ b/source/blender/avi/intern/mjpeg.c @@ -1,7 +1,4 @@ /* - * - * This is external code. Converts between avi and mpeg/jpeg. - * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or @@ -31,6 +28,8 @@ /** \file blender/avi/intern/mjpeg.c * \ingroup avi + * + * This is external code. Converts between avi and mpeg/jpeg. */ diff --git a/source/blender/avi/intern/options.c b/source/blender/avi/intern/options.c index fb1ed24926e..db9719c171d 100644 --- a/source/blender/avi/intern/options.c +++ b/source/blender/avi/intern/options.c @@ -1,8 +1,4 @@ /* - * - * This is external code. Sets some compression related options - * (width, height quality, framerate). - * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or @@ -32,6 +28,9 @@ /** \file blender/avi/intern/options.c * \ingroup avi + * + * This is external code. Sets some compression related options + * (width, height quality, framerate). */ #include "AVI_avi.h" diff --git a/source/blender/avi/intern/rgb32.c b/source/blender/avi/intern/rgb32.c index c6830d9666a..7b4958ca026 100644 --- a/source/blender/avi/intern/rgb32.c +++ b/source/blender/avi/intern/rgb32.c @@ -1,7 +1,4 @@ /* - * - * This is external code. Converts between rgb32 and avi. - * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or @@ -31,6 +28,8 @@ /** \file blender/avi/intern/rgb32.c * \ingroup avi + * + * This is external code. Converts between rgb32 and avi. */ -- cgit v1.2.3