updated .c files to include:

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

Just need to finish cpp files now :)

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-11-25 12:02:15 +00:00
parent b9a19f1ea7
commit d0e346d544
251 changed files with 1028 additions and 79 deletions

View File

@@ -46,6 +46,10 @@
#include "endian.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
static int AVI_DEBUG=0;
static char DEBUG_FCC[4];

View File

@@ -41,6 +41,10 @@
#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;

View File

@@ -43,6 +43,10 @@
#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);

View File

@@ -37,9 +37,12 @@
#include "AVI_avi.h"
#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) {

View File

@@ -38,9 +38,12 @@
#include <stdlib.h>
#include <string.h>
#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;