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

📄 lp_syn.c

📁 4.8k/s速率FS1016标准语音压缩源码
💻 C
字号:
#include "celpfilt.h"#include "lp_syn.h"#include "lsftopc.h"#include "movarray.h"/***************************************************************************                                                                         ** ROUTINE*		LP_Synthesis** FUNCTION*		LP Filter input excitation with input LSFs* SYNOPSIS*		LP_Synthesis(excitation, lsf, frame_num, speech)**   formal**                       data    I/O*       name            type    type    function*       -------------------------------------------------------------------*	excitation	int	 i	excitation vector*	lsf		int	 i	line spectral frequencies*	frame_num	int	 i	frame number of speech*	speech		float	 o	output speech***************************************************************************/FILTER 	LP_Filt;void LP_Synthesis(float	excitation[SF_LEN],float	lsf[ORDER],int	frame_num,float	speech[SF_LEN]){float	pc[ORDER+1];/*  Convert input LSFs to PCs */	LSFtoPC(lsf, pc, frame_num);/*  Perform LP synthesis on excitation to produce speech */	MoveArray(SF_LEN, excitation, speech);	do_pfilt_dynamic(&LP_Filt, pc, speech);}

⌨️ 快捷键说明

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