Browse Source

* 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
tags/v0.5
Falk Hüffner 23 years ago
parent
commit
02da51ec60
2 changed files with 5 additions and 6 deletions
  1. +5
    -0
      libavcodec/common.h
  2. +0
    -6
      libavcodec/dsputil.c

+ 5
- 0
libavcodec/common.h 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 */


+ 0
- 6
libavcodec/dsputil.c 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);


Loading…
Cancel
Save