comparison libaf/af_equalizer.c @ 34174:a93891202051

Add missing mp_msg.h #includes, remove some unnecessary ones.
author diego
date Wed, 26 Oct 2011 15:12:35 +0000
parents 8fa2f43cb760
children 2b9bc3c2933d
comparison
equal deleted inserted replaced
34173:a5d8b198c214 34174:a93891202051
27 #include <stdlib.h> 27 #include <stdlib.h>
28 28
29 #include <inttypes.h> 29 #include <inttypes.h>
30 #include <math.h> 30 #include <math.h>
31 31
32 #include "mp_msg.h"
32 #include "af.h" 33 #include "af.h"
33 34
34 #define L 2 // Storage for filter taps 35 #define L 2 // Storage for filter taps
35 #define KM 10 // Max number of bands 36 #define KM 10 // Max number of bands
36 37