Mercurial > mplayer.hg
annotate libaf/window.h @ 14083:6797ec6f8047
Sync with
1.815: use a configurable-size ringbuffer instead of a pipe for buffering
key events.
1.814: sstep is usually inaccurate.
1.813: -identify now prints subtitle/audio track information.
1.812: -double is now default, thus -nodouble needs to be documented instead.
Slightly reworded the description of -nodouble.
author | gpoirier |
---|---|
date | Wed, 01 Dec 2004 21:54:50 +0000 |
parents | 14090f7300a8 |
children | 012426ca576b |
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 | |
18 #if !defined _DSP_H | |
19 # error "Never use <window.h> directly; include <dsp.h> instead" | |
20 #endif | |
21 | |
22 #ifndef _WINDOW_H | |
23 #define _WINDOW_H 1 | |
24 | |
25 extern void boxcar(int n, _ftype_t* w); | |
26 extern void triang(int n, _ftype_t* w); | |
27 extern void hanning(int n, _ftype_t* w); | |
28 extern void hamming(int n,_ftype_t* w); | |
29 extern void blackman(int n,_ftype_t* w); | |
30 extern void flattop(int n,_ftype_t* w); | |
31 extern void kaiser(int n, _ftype_t* w,_ftype_t b); | |
32 | |
33 #endif |