Mercurial > mplayer.hg
view libaf/window.h @ 25764:7d2685c7d688
Fix warning:
vo_directfb2.c:553: warning: passing argument 2 of ¡Ædfb->EnumVideoModes¡Ç from incompatible pointer type
author | reimar |
---|---|
date | Sat, 19 Jan 2008 11:25:41 +0000 |
parents | 3baf6a2283da |
children | 4129c8cfa742 |
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 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 /* WINDOW_H */