comparison libmpcodecs/vf_pp.c @ 17012:6ff3379a0862

Unify include path handling, -I.. is in CFLAGS.
author diego
date Fri, 18 Nov 2005 14:39:25 +0000
parents 9f516ed86916
children b56f34ba3f2f
comparison
equal deleted inserted replaced
17011:c29e74822d2c 17012:6ff3379a0862
2 #include <stdlib.h> 2 #include <stdlib.h>
3 #include <string.h> 3 #include <string.h>
4 #include <inttypes.h> 4 #include <inttypes.h>
5 #include <errno.h> 5 #include <errno.h>
6 6
7 #include "../config.h" 7 #include "config.h"
8 #include "../mp_msg.h" 8 #include "mp_msg.h"
9 #include "../cpudetect.h" 9 #include "cpudetect.h"
10 10
11 #ifdef HAVE_MALLOC_H 11 #ifdef HAVE_MALLOC_H
12 #include <malloc.h> 12 #include <malloc.h>
13 #endif 13 #endif
14 14
18 18
19 #ifdef USE_LIBAVCODEC 19 #ifdef USE_LIBAVCODEC
20 20
21 #define EMU_OLD 21 #define EMU_OLD
22 22
23 #include "../libavcodec/libpostproc/postprocess.h" 23 #include "libavcodec/libpostproc/postprocess.h"
24 24
25 #ifdef EMU_OLD 25 #ifdef EMU_OLD
26 #include "../libavcodec/libpostproc/postprocess_internal.h" 26 #include "libavcodec/libpostproc/postprocess_internal.h"
27 #endif 27 #endif
28 28
29 struct vf_priv_s { 29 struct vf_priv_s {
30 int pp; 30 int pp;
31 pp_mode_t *ppMode[PP_QUALITY_MAX+1]; 31 pp_mode_t *ppMode[PP_QUALITY_MAX+1];