libass: If a bad subtitle has multiple \pos use first
[mplayer/glamo.git] / libaf / window.h
blobfb4b1cefaef3a6cd3f43c81d1b33240835f7a319
1 /*=============================================================================
2 //
3 // This software has been released under the terms of the GNU General Public
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 */
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.
18 #if !defined MPLAYER_DSP_H
19 # error Never use window.h directly; include dsp.h instead.
20 #endif
22 #ifndef MPLAYER_WINDOW_H
23 #define MPLAYER_WINDOW_H
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);
33 #endif /* MPLAYER_WINDOW_H */