lp_syn.c

来自「4.8k/s速率FS1016标准语音压缩源码」· C语言 代码 · 共 46 行

C
46
字号
#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 + =
减小字号Ctrl + -
显示快捷键?