Commit 02da51ec authored by Falk Hüffner's avatar Falk Hüffner

* 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
parent a86c461c
...@@ -35,6 +35,11 @@ ...@@ -35,6 +35,11 @@
#endif /* HAVE_AV_CONFIG_H */ #endif /* HAVE_AV_CONFIG_H */
/* Suppress restrict if it was not defined in config.h. */
#ifndef restrict
#define restrict
#endif
#ifdef CONFIG_WIN32 #ifdef CONFIG_WIN32
/* windows */ /* windows */
......
...@@ -21,12 +21,6 @@ ...@@ -21,12 +21,6 @@
#include "avcodec.h" #include "avcodec.h"
#include "dsputil.h" #include "dsputil.h"
#include "simple_idct.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)(DCTELEM *block);
void (*ff_idct_put)(UINT8 *dest, int line_size, DCTELEM *block); void (*ff_idct_put)(UINT8 *dest, int line_size, DCTELEM *block);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment