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

📄 intsynth.h

📁 g729 coding ipaddressing
💻 H
字号:
/**************************************************************************
*
* ROUTINE
*				intsynth
*
* FUNCTION
*				Linearly interpolate between transmitted LSPs
*				to generate nn (=4) intermediate sets of LSP
*				frequencies for subframe synthesis. 
*				
*
* SYNOPSIS
*				subroutine intsynth(lspnew, nn, lsp, twoerror, syndavg)
*
*	formal 
*
*						data	I/O
*		name			type	type	function
*		-------------------------------------------------------------------
*		lspnew			float	i/o 	new frequency array
*		nn				int 	i		number of segments/frame
*		lsp 			float	o		interpolated frequency matrix
*		twoerror		int 	i		flag for occurrence of two errors
*										  in Hamming protected bits.
*		syndavg 		float	i		bit error estimation parameter
*
*	external 
*						data	I/O
*		name			type	type	function
*		-------------------------------------------------------------------
*		no				int 	i
*		frame			int 	i
*
***************************************************************************
*
* DESCRIPTION
*               This routine interpolates lsp's for subframe synthesis.
*		This version is only for use with absolute scalar LSP coding!
*		The interpolated LSPs are identical to the interpolated set in the
*		transmitter provided there are no transmission errors.	If the 
*       LSP's are nonmonotonic, then LSP errors have occured and an 
*       attempt is made to "fix" them by repeating previous LSP values. 
*		If this correction fails (the vector is still nonomonotonic),
*		then the entire previous LSP vector is repeated.  (This version
*		ignores twoerror and syndavg.)
*
*
***************************************************************************
*
* CALLED BY
*
*		celp
*
* CALLS
*
*		lsptopc  rctopc
*
**************************************************************************/

static void intsynth(float lspnew[], int nn, float a_lsp[][MAXNO],
	int a_twoerror, float a_syndavg)
{
  int i, j, nonmono;
  float temp[MAXNO+1], rc[MAXNO], dlsp[MAXNO + 1];
  static const float w[2][4] =   
  {
	{ 0.875, 0.625, 0.375, 0.125 },  
	{ 0.125, 0.375, 0.625, 0.875 }
  };
#ifdef CELP_USE_CONTEXT
#define lspold	(ctx->INTSYNTH_lspold)
#else
  static float lspold[MAXNO] =
  {
	.03f, .05f, .09f, .13f, .19f, 
	.23f, .29f, .33f, .39f, .44f
  };
#endif

  /* *try to fix any nonmonotonic LSPs by repeating pair		 */

  for (i = 1; i < no; i++)
  {
	if (lspnew[i] <= lspnew[i - 1])
	{
#ifdef CELPDIAG
      fprintf(stderr, "intsynth: try to fix any nonmonotonic LSPs\n");
#endif
	  lspnew[i] = lspold[i];
	  lspnew[i - 1] = lspold[i - 1];
	}
  }

  /* *check fixed LSPs (also check for pairs too close?)		 */

  nonmono = FALSE;
  for (i = 1; i < no; i++)
  {
	if (lspnew[i] <= lspnew[i - 1])
	  nonmono = TRUE;
  }

  /* *if fix fails, repeat entire LSP vector					 */

  if (nonmono)
  {
#ifdef CELPDIAG
    fprintf(stderr, "intsynth: repeat entire LSP vector\n");
    fprintf(stderr, "intsynth: syndavg = %f  twoerror = %d  frame = %d\n",
		   a_syndavg, a_twoerror, frame);
    fprintf(stderr, "lspold          lspnew\n");
#endif
	for (i = 0; i < no; i++)
	{
#ifdef CELPDIAG
      fprintf(stderr, "%-14f %-14f \n", lspold[i], lspnew[i]);
#endif
	  lspnew[i] = lspold[i];
	}
  }

  /* *OPTIONAl (and not finished):								 */
  /* *if large prediction gain then repeat close LSP pair		 */

  lsptopc(lspnew, temp);
  pctorc(temp, rc, no);
  for (i = 1; i < no; i++)
  {
	dlsp[i] = lspnew[i] - lspnew[i - 1];
  }
  dlsp[no] = (float) (0.5 - lspnew[no - 1]);

  /* *interpolate lsp's                                          */
  for (i = 0; i < nn; i++)
  {
	for (j = 0; j < no; j++)
	  a_lsp[i][j] = w[0][i] * lspold[j] + w[1][i] * lspnew[j];

	/* *OPTIONAL bug checker									 */
    /* *check for monotonically increasing lsp's                 */

	nonmono = FALSE;
	for (j = 1; j < no; j++)
	{
	  if (a_lsp[i][j] <= a_lsp[i][j - 1])
		nonmono = TRUE;
	}
#ifdef CELPDIAG
	if (nonmono)
	{
      fprintf(stderr, "intsynth: nonmono LSPs @ frame %d CAN'T HAPPEN\n",
			 frame);
      fprintf(stderr, "intsynth: LSPs=");
	  for (j = 0; j < no; j++)
        fprintf(stderr, "  %f", a_lsp[i][j]);
      fprintf(stderr, "\n");
	}
#endif
  }

  /*			*update lsp history 									 */

  for (i = 0; i < no; i++)
	lspold[i] = lspnew[i];
}
#ifdef CELP_USE_CONTEXT
#undef lspold
#endif

⌨️ 快捷键说明

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