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:
Diffstat (limited to 'source/blender/avi')
-rw-r--r--source/blender/avi/AVI_avi.h4
-rw-r--r--source/blender/avi/intern/avi_intern.h4
-rw-r--r--source/blender/avi/intern/avirgb.h5
-rw-r--r--source/blender/avi/intern/endian.h4
-rw-r--r--source/blender/avi/intern/mjpeg.h5
-rw-r--r--source/blender/avi/intern/rgb32.h5
6 files changed, 27 insertions, 0 deletions
diff --git a/source/blender/avi/AVI_avi.h b/source/blender/avi/AVI_avi.h
index 76442d9d55e..63ae93411de 100644
--- a/source/blender/avi/AVI_avi.h
+++ b/source/blender/avi/AVI_avi.h
@@ -56,6 +56,10 @@
#include <stdio.h> /* for FILE */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
typedef struct _AviChunk {
int fcc;
int size;
diff --git a/source/blender/avi/intern/avi_intern.h b/source/blender/avi/intern/avi_intern.h
index 189072eba8d..cba06f0d710 100644
--- a/source/blender/avi/intern/avi_intern.h
+++ b/source/blender/avi/intern/avi_intern.h
@@ -34,6 +34,10 @@
#include <stdio.h> /* for FILE */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "MEM_guardedalloc.h"
unsigned int GET_FCC (FILE *fp);
diff --git a/source/blender/avi/intern/avirgb.h b/source/blender/avi/intern/avirgb.h
index 26765d4d6e2..110ffd6be61 100644
--- a/source/blender/avi/intern/avirgb.h
+++ b/source/blender/avi/intern/avirgb.h
@@ -29,6 +29,11 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
void *avi_converter_from_avi_rgb (AviMovie *movie, int stream, unsigned char *buffer, int *size);
void *avi_converter_to_avi_rgb (AviMovie *movie, int stream, unsigned char *buffer, int *size);
diff --git a/source/blender/avi/intern/endian.h b/source/blender/avi/intern/endian.h
index 907069c1f87..133b397dbbf 100644
--- a/source/blender/avi/intern/endian.h
+++ b/source/blender/avi/intern/endian.h
@@ -40,6 +40,10 @@
#include <stdio.h>
#include "AVI_avi.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#define AVI_RAW 0
#define AVI_CHUNK 1
#define AVI_LIST 2
diff --git a/source/blender/avi/intern/mjpeg.h b/source/blender/avi/intern/mjpeg.h
index 37fd43657cb..c397d5e0e74 100644
--- a/source/blender/avi/intern/mjpeg.h
+++ b/source/blender/avi/intern/mjpeg.h
@@ -29,6 +29,11 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
void *avi_converter_from_mjpeg (AviMovie *movie, int stream, unsigned char *buffer, int *size);
void *avi_converter_to_mjpeg (AviMovie *movie, int stream, unsigned char *buffer, int *size);
diff --git a/source/blender/avi/intern/rgb32.h b/source/blender/avi/intern/rgb32.h
index e0d1ddb725f..b35b7cfeb0a 100644
--- a/source/blender/avi/intern/rgb32.h
+++ b/source/blender/avi/intern/rgb32.h
@@ -29,6 +29,11 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
void *avi_converter_from_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size);
void *avi_converter_to_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size);