comparison libmpcodecs/vf_denoise3d.c @ 17012:6ff3379a0862

Unify include path handling, -I.. is in CFLAGS.
author diego
date Fri, 18 Nov 2005 14:39:25 +0000
parents 33e93b55fbee
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 27
28 #ifdef HAVE_MALLOC_H 28 #ifdef HAVE_MALLOC_H
29 #include <malloc.h> 29 #include <malloc.h>
30 #endif 30 #endif
31 31
32 #include "img_format.h" 32 #include "img_format.h"
33 #include "mp_image.h" 33 #include "mp_image.h"
34 #include "vf.h" 34 #include "vf.h"
35 #include "../libvo/fastmemcpy.h" 35 #include "libvo/fastmemcpy.h"
36 36
37 #define PARAM1_DEFAULT 4.0 37 #define PARAM1_DEFAULT 4.0
38 #define PARAM2_DEFAULT 3.0 38 #define PARAM2_DEFAULT 3.0
39 #define PARAM3_DEFAULT 6.0 39 #define PARAM3_DEFAULT 6.0
40 40