xine-lib 1.2.11
window.h
Go to the documentation of this file.
1/*=============================================================================
2 *
3 * This software has been released under the terms of the GNU 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 */
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
25extern void boxcar(int n, _ftype_t* w);
26extern void triang(int n, _ftype_t* w);
27extern void hanning(int n, _ftype_t* w);
28extern void hamming(int n,_ftype_t* w);
29extern void blackman(int n,_ftype_t* w);
30extern void flattop(int n,_ftype_t* w);
31extern void kaiser(int n, _ftype_t* w,_ftype_t b);
32
33#endif
#define _ftype_t
Definition: dsp.h:17
void hamming(int n, _ftype_t *w)
void hanning(int n, _ftype_t *w)
void kaiser(int n, _ftype_t *w, _ftype_t b)
void flattop(int n, _ftype_t *w)
void blackman(int n, _ftype_t *w)
void boxcar(int n, _ftype_t *w)
void triang(int n, _ftype_t *w)