csub.h

来自「g729 coding ipaddressing」· C头文件 代码 · 共 142 行

H
142
字号
/**************************************************************************
*
* ROUTINE
*				csub
*
* FUNCTION
*				control routine to find optimal excitation 
*				(adaptive and stochastic code book searches)
*
* SYNOPSIS
*				subroutine csub(s, v, l, lp)
*
*	formal
*
*						data	I/O
*		name			type	type	function
*		-------------------------------------------------------------------
*		s[l]			float	i		speech or residual segment
*		v[l]			float	o		optimum excitation vector
*		l				int 	i		stochastic analysis frame size
*		lp				int 	i		adaptive (pitch) analysis frame size
*
*	external
*						data	I/O
*		name			type	type	function
*		-------------------------------------------------------------------
*		idb 			int 	i
*		no				int 	i
*		nseg			int 	i
*		sg				int 	i
*		e0[]			float	i/o
*		fndex_e0_vid	int 	i
*		fndpp_e0_vid	int 	i
*		mxsw			int 	i		modified excitation switch
*		
***************************************************************************
*
*  Global
*
*		SPECTRUM VARIABLES:
*		d2a 	real	memory 1/A(z)
*		d2b 	real	memory 1/A(z)
*		d3a 	real	memory A(z)
*		d3b 	real	memory A(z)
*		d4a 	real	memory 1/A(z/gamma)
*		d4b 	real	memory 1/A(z/gamma)
*
*		PITCH VARIABLES:
*		d1a 	real	memory 1/P(z)
*		d1b 	real	memory 1/P(z)
***************************************************************************
*
* CALLED BY
*
*		celp
*
* CALLS
*
*		confg	cbsearch   psearch	 movefr   save_sg	setr
*
*		mescite1   mexcite2
*
**************************************************************************/

#ifdef CELP_USE_CONTEXT
#define d1a		(ctx->CSUB_d1a)
#define d1b		(ctx->CSUB_d1b)
#define d2a		(ctx->CSUB_d2a)
#define d2b		(ctx->CSUB_d2b)
#define d3a		(ctx->CSUB_d3a)
#define d3b		(ctx->CSUB_d3b)
#define d4a		(ctx->CSUB_d4a)
#define d4b		(ctx->CSUB_d1a)
#else
static float d1a[MAXPA], d1b[MAXPA], d2a[MAXNO+1], d2b[MAXNO+1], d3a[MAXNO+1], d3b[MAXNO+1];
static float d4a[MAXNO+1], d4b[MAXNO+1];
#endif

static void csub(float s[], float a_v[], int l, int lp)
{

  /* *find the intial error without pitch VQ					 */

  setr(l, 0.0, e0);
  confg(s, l, d1a, d2a, d3a, d4a, 0, 1, 1, 1);
  movefr(no + 1, d2b, d2a);
  movefr(no + 1, d3b, d3a);
  movefr(no + 1, d4b, d4a);

  /* *find impulse response (h) of perceptual weighting filter	 */

  impulse(l);

  /* *norm of the first error signal for const. exc.			 */

  if (mxsw) 
	mexcite1(l);

  /* *pitch (adaptive code book) search 										 */

  /* Get pp parameters every segment if lp = l. If lp <> l then  */
  /* get pp parameters on odd segments. 						 */

  if (lp == l)
	psearch(l);
  else if (nseg % 2 == 1)
	psearch(lp);

  /* *find initial error with pitch VQ							 */

  setr(l, 0.0, e0);
  confg(s, l, d1a, d2a, d3a, d4a, 1, 1, 1, 1);

  /* *norm of second error signal for const. exc.				 */

  if (mxsw)
	mexcite2(l);

  /* *stochastic code book search								 */

  cbsearch(l, a_v);

  /* *update filter states										 */

  movefr(l, a_v, e0);
  confg(s, l, d1b, d2b, d3b, d4b, 1, 1, 1, 1);
  movefr(idb, d1b, d1a);
  movefr(no + 1, d2b, d2a);
  movefr(no + 1, d3b, d3a);
  movefr(no + 1, d4b, d4a);
}

#ifdef CELP_USE_CONTEXT
#undef d1a
#undef d1b
#undef d2a
#undef d2b
#undef d3a
#undef d3b
#undef d4a
#undef d4b
#endif

⌨️ 快捷键说明

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