⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 window.h

📁 自己移植的linux下的流媒体播放器原代码,支持mms协议,支持ftp和http协议.
💻 H
字号:
/*=============================================================================//	//  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	1extern 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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -