comparison libaf/window.h @ 26029:4129c8cfa742

Add MPLAYER_ prefix to multiple inclusion guards.
author diego
date Fri, 22 Feb 2008 09:09:46 +0000
parents 3baf6a2283da
children 327b7955381f
comparison
equal deleted inserted replaced
26028:afd429e00184 26029:4129c8cfa742
13 Hamming, Blackman, Flattop and Kaiser. In the function call n is 13 Hamming, Blackman, Flattop and Kaiser. In the function call n is
14 the number of filter taps and w the buffer in which the filter 14 the number of filter taps and w the buffer in which the filter
15 coefficients will be stored. 15 coefficients will be stored.
16 */ 16 */
17 17
18 #if !defined DSP_H 18 #if !defined MPLAYER_DSP_H
19 # error "Never use <window.h> directly; include <dsp.h> instead" 19 # error "Never use <window.h> directly; include <dsp.h> instead"
20 #endif 20 #endif
21 21
22 #ifndef WINDOW_H 22 #ifndef MPLAYER_WINDOW_H
23 #define WINDOW_H 23 #define MPLAYER_WINDOW_H
24 24
25 extern void af_window_boxcar(int n, _ftype_t* w); 25 extern void af_window_boxcar(int n, _ftype_t* w);
26 extern void af_window_triang(int n, _ftype_t* w); 26 extern void af_window_triang(int n, _ftype_t* w);
27 extern void af_window_hanning(int n, _ftype_t* w); 27 extern void af_window_hanning(int n, _ftype_t* w);
28 extern void af_window_hamming(int n,_ftype_t* w); 28 extern void af_window_hamming(int n,_ftype_t* w);
29 extern void af_window_blackman(int n,_ftype_t* w); 29 extern void af_window_blackman(int n,_ftype_t* w);
30 extern void af_window_flattop(int n,_ftype_t* w); 30 extern void af_window_flattop(int n,_ftype_t* w);
31 extern void af_window_kaiser(int n, _ftype_t* w,_ftype_t b); 31 extern void af_window_kaiser(int n, _ftype_t* w,_ftype_t b);
32 32
33 #endif /* WINDOW_H */ 33 #endif /* MPLAYER_WINDOW_H */