comparison libmpcodecs/vf_noise.c @ 17012:6ff3379a0862

Unify include path handling, -I.. is in CFLAGS.
author diego
date Fri, 18 Nov 2005 14:39:25 +0000
parents 821f464b4d90
children 401b440a6d76
comparison
equal deleted inserted replaced
17011:c29e74822d2c 17012:6ff3379a0862
20 #include <stdlib.h> 20 #include <stdlib.h>
21 #include <string.h> 21 #include <string.h>
22 #include <inttypes.h> 22 #include <inttypes.h>
23 #include <math.h> 23 #include <math.h>
24 24
25 #include "../config.h" 25 #include "config.h"
26 #include "../mp_msg.h" 26 #include "mp_msg.h"
27 #include "../cpudetect.h" 27 #include "cpudetect.h"
28 28
29 #ifdef HAVE_MALLOC_H 29 #ifdef HAVE_MALLOC_H
30 #include <malloc.h> 30 #include <malloc.h>
31 #endif 31 #endif
32 32
33 #include "img_format.h" 33 #include "img_format.h"
34 #include "mp_image.h" 34 #include "mp_image.h"
35 #include "vf.h" 35 #include "vf.h"
36 #include "../libvo/fastmemcpy.h" 36 #include "libvo/fastmemcpy.h"
37 37
38 #define MAX_NOISE 4096 38 #define MAX_NOISE 4096
39 #define MAX_SHIFT 1024 39 #define MAX_SHIFT 1024
40 #define MAX_RES (MAX_NOISE-MAX_SHIFT) 40 #define MAX_RES (MAX_NOISE-MAX_SHIFT)
41 41