Mercurial > mplayer.hg
annotate libaf/window.h @ 28117:bd6833421e56
Consistently include config.h before mangle.h, fixes possible compilation
issues due to r28151 (using EXTERN_PREFIX).
author | reimar |
---|---|
date | Mon, 15 Dec 2008 16:13:41 +0000 |
parents | 9e739bdb049c |
children | 72d0b1444141 |
rev | line source |
---|---|
7568 | 1 /*============================================================================= |
2 // | |
13602
14090f7300a8
The full name of the GPL is GNU General Public License.
diego
parents:
7568
diff
changeset
|
3 // This software has been released under the terms of the GNU General Public |
7568 | 4 // license. See http://www.gnu.org/copyleft/gpl.html for details. |
5 // | |
6 // Copyright 2001 Anders Johansson ajh@atri.curtin.edu.au | |
7 // | |
8 //============================================================================= | |
9 */ | |
10 | |
11 /* Calculates a number of window functions. The following window | |
12 functions are currently implemented: Boxcar, Triang, Hanning, | |
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 | |
15 coefficients will be stored. | |
16 */ | |
17 | |
26029 | 18 #if !defined MPLAYER_DSP_H |
26343
1b73f5aa1796
Remove some useless quotes from #error preprocessor directives.
diego
parents:
26342
diff
changeset
|
19 # error Never use window.h directly; include dsp.h instead. |
7568 | 20 #endif |
21 | |
26029 | 22 #ifndef MPLAYER_WINDOW_H |
23 #define MPLAYER_WINDOW_H | |
7568 | 24 |
28051 | 25 void af_window_boxcar(int n, FLOAT_TYPE* w); |
26 void af_window_triang(int n, FLOAT_TYPE* w); | |
27 void af_window_hanning(int n, FLOAT_TYPE* w); | |
28 void af_window_hamming(int n, FLOAT_TYPE* w); | |
29 void af_window_blackman(int n, FLOAT_TYPE* w); | |
30 void af_window_flattop(int n, FLOAT_TYPE* w); | |
31 void af_window_kaiser(int n, FLOAT_TYPE* w, FLOAT_TYPE b); | |
7568 | 32 |
26029 | 33 #endif /* MPLAYER_WINDOW_H */ |