Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-04-18 14:28:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-18 14:28:37 +0400
commit8f1500da005e4f84fd593492822c6d99e768c354 (patch)
tree942f6960b50fb03430f4dcd934837213d7d76695 /source/blender/avi
parent45441c07d4609493aecf265b64ad0c108722e9db (diff)
remove config.h references, was added for automake build system rev around 124-126 but isnt used by any build systems now.
Diffstat (limited to 'source/blender/avi')
-rw-r--r--source/blender/avi/intern/avirgb.c4
-rw-r--r--source/blender/avi/intern/codecs.c4
-rw-r--r--source/blender/avi/intern/endian.c4
-rw-r--r--source/blender/avi/intern/mjpeg.c4
-rw-r--r--source/blender/avi/intern/options.c4
-rw-r--r--source/blender/avi/intern/rgb32.c4
6 files changed, 0 insertions, 24 deletions
diff --git a/source/blender/avi/intern/avirgb.c b/source/blender/avi/intern/avirgb.c
index 2fcc2646e6f..f7acbf238b5 100644
--- a/source/blender/avi/intern/avirgb.c
+++ b/source/blender/avi/intern/avirgb.c
@@ -32,10 +32,6 @@
*
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "AVI_avi.h"
#include <stdlib.h>
#include <string.h>
diff --git a/source/blender/avi/intern/codecs.c b/source/blender/avi/intern/codecs.c
index 4ebcb216012..c66de231b3f 100644
--- a/source/blender/avi/intern/codecs.c
+++ b/source/blender/avi/intern/codecs.c
@@ -38,10 +38,6 @@
#include "mjpeg.h"
#include "rgb32.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
void *avi_format_convert (AviMovie *movie, int stream, void *buffer, AviFormat from, AviFormat to, int *size) {
if (from == to)
return buffer;
diff --git a/source/blender/avi/intern/endian.c b/source/blender/avi/intern/endian.c
index b0422a4e56e..282e26b3ee8 100644
--- a/source/blender/avi/intern/endian.c
+++ b/source/blender/avi/intern/endian.c
@@ -32,10 +32,6 @@
* ***** END GPL LICENSE BLOCK *****
* */
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
diff --git a/source/blender/avi/intern/mjpeg.c b/source/blender/avi/intern/mjpeg.c
index d7212e710e9..fd7e8aaef83 100644
--- a/source/blender/avi/intern/mjpeg.c
+++ b/source/blender/avi/intern/mjpeg.c
@@ -40,10 +40,6 @@
#include "mjpeg.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#define PADUP(num, amt) ((num+(amt-1))&~(amt-1))
static void jpegmemdestmgr_build (j_compress_ptr cinfo, unsigned char *buffer, int bufsize);
diff --git a/source/blender/avi/intern/options.c b/source/blender/avi/intern/options.c
index 7b194b86ab6..15ec40ade8c 100644
--- a/source/blender/avi/intern/options.c
+++ b/source/blender/avi/intern/options.c
@@ -36,10 +36,6 @@
#include "avi_intern.h"
#include "endian.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
/* avi_set_compress_options gets its own file... now don't WE feel important? */
AviError AVI_set_compress_option (AviMovie *movie, int option_type, int stream, AviOption option, void *opt_data) {
diff --git a/source/blender/avi/intern/rgb32.c b/source/blender/avi/intern/rgb32.c
index 80fb27408a8..68e3ce4d1d2 100644
--- a/source/blender/avi/intern/rgb32.c
+++ b/source/blender/avi/intern/rgb32.c
@@ -37,10 +37,6 @@
#include "MEM_guardedalloc.h"
#include "rgb32.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
void *avi_converter_from_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size) {
int y, x, rowstridea, rowstrideb;
unsigned char *buf;