Mercurial > mplayer.hg
view libaf/window.h @ 20799:7e2bc0167fd1
r20657: (does not apply)
r20658: (cosmetics) Unify and clarify blank lines usage
r20682: (does not apply)
r20683: mention :tsaf on every instance of -mpegopts format=dvd
r20699: (does not apply)
r20700: A bunch of missing <systemitem class="library"> tags
r20701: Don't break a paragraph in a middle of a thought
r20702: (does not apply)
r20703: Better wording, especially if hyperlinks are not visible
r20704: Better URL markup
r20705: Unify ./configure script handling
r20739: Remove remnants of long-gone libfame.
author | kraymer |
---|---|
date | Thu, 09 Nov 2006 15:05:51 +0000 |
parents | 012426ca576b |
children | 3f0d00abc073 |
line wrap: on
line source
/*============================================================================= // // This software has been released under the terms of the GNU General Public // license. See http://www.gnu.org/copyleft/gpl.html for details. // // Copyright 2001 Anders Johansson ajh@atri.curtin.edu.au // //============================================================================= */ /* Calculates a number of window functions. The following window functions are currently implemented: Boxcar, Triang, Hanning, Hamming, Blackman, Flattop and Kaiser. In the function call n is the number of filter taps and w the buffer in which the filter coefficients will be stored. */ #if !defined _DSP_H # error "Never use <window.h> directly; include <dsp.h> instead" #endif #ifndef _WINDOW_H #define _WINDOW_H 1 extern void af_window_boxcar(int n, _ftype_t* w); extern void af_window_triang(int n, _ftype_t* w); extern void af_window_hanning(int n, _ftype_t* w); extern void af_window_hamming(int n,_ftype_t* w); extern void af_window_blackman(int n,_ftype_t* w); extern void af_window_flattop(int n,_ftype_t* w); extern void af_window_kaiser(int n, _ftype_t* w,_ftype_t b); #endif