diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2002-07-04 13:41:27 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2002-07-04 13:41:27 +0000 |
commit | 02da51ec6073e2ab5ef536e6ecc2c1cbc67f1952 (patch) | |
tree | 764f8005a24822024cc4c1bdad50b36045b050f1 /libavcodec/dsputil.c | |
parent | a86c461c6b6500ae8c47f87c03ecba42887e6cb3 (diff) | |
download | ffmpeg-02da51ec6073e2ab5ef536e6ecc2c1cbc67f1952.tar.gz |
* 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
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index c1e9fee91c..e1a4e9c291 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -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); |