* Move "restrict" fallback to common.h

* Don't include config.h in dsputil.c

Originally committed as revision 721 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Falk Hüffner 2002-07-04 13:41:27 +00:00
parent a86c461c6b
commit 02da51ec60
2 changed files with 5 additions and 6 deletions

View File

@ -35,6 +35,11 @@
#endif /* HAVE_AV_CONFIG_H */
/* Suppress restrict if it was not defined in config.h. */
#ifndef restrict
#define restrict
#endif
#ifdef CONFIG_WIN32
/* windows */

View File

@ -21,12 +21,6 @@
#include "avcodec.h"
#include "dsputil.h"
#include "simple_idct.h"
#include "config.h"
/* Suppress restrict if it was not defined in config.h */
#ifndef restrict
#define restrict
#endif
void (*ff_idct)(DCTELEM *block);
void (*ff_idct_put)(UINT8 *dest, int line_size, DCTELEM *block);