comparison libmpcodecs/vf_qp.c @ 29087:290420c32921

Remove unnecessary malloc.h #includes and related #ifdeffery.
author diego
date Thu, 02 Apr 2009 09:20:48 +0000
parents df67d03dde3b
children 0f1b5b68af32
comparison
equal deleted inserted replaced
29086:b5c25fd3cf8f 29087:290420c32921
22 #include <stdlib.h> 22 #include <stdlib.h>
23 #include <string.h> 23 #include <string.h>
24 #include <math.h> 24 #include <math.h>
25 #include <inttypes.h> 25 #include <inttypes.h>
26 26
27 #include "config.h"
28
29 #include "mp_msg.h" 27 #include "mp_msg.h"
30 #include "cpudetect.h" 28 #include "cpudetect.h"
31 #include "img_format.h" 29 #include "img_format.h"
32 #include "mp_image.h" 30 #include "mp_image.h"
33 #include "vf.h" 31 #include "vf.h"
34 #include "libvo/fastmemcpy.h" 32 #include "libvo/fastmemcpy.h"
35 33
36 #include "libavcodec/avcodec.h" 34 #include "libavcodec/avcodec.h"
37 #include "libavcodec/eval.h" 35 #include "libavcodec/eval.h"
38
39 #if HAVE_MALLOC_H
40 #include <malloc.h>
41 #endif
42 36
43 37
44 struct vf_priv_s { 38 struct vf_priv_s {
45 char eq[200]; 39 char eq[200];
46 int8_t *qp; 40 int8_t *qp;