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

📄 fft_lib.h

📁 MELPe 1200 bps, fixed point
💻 H
字号:
/* ================================================================== */
/*                                                                    */ 
/*    Microsoft Speech coder     ANSI-C Source Code                   */
/*    SC1200 1200 bps speech coder                                    */
/*    Fixed Point Implementation      Version 7.0                     */
/*    Copyright (C) 2000, Microsoft Corp.                             */
/*    All rights reserved.                                            */
/*                                                                    */ 
/* ================================================================== */

/* =============================================== */
/* fft_lib.h: FFT function include file */
/* =============================================== */

#ifndef _FFT_LIB_H_
#define _FFT_LIB_H_


/* Radix-2, DIT, 2N-point Real FFT */
void	rfft(Shortword datam1[], Shortword n);
/* Radix-2, DIT, N-point Complex FFT */
Shortword	cfft(Shortword datam1[], Shortword nn);
/* Radix-2, DIT, 256-point Complex FFT */
Shortword	fft_npp(Shortword data[], Shortword dir);

void	fs_init();


#endif

⌨️ 快捷键说明

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