mirror of
https://github.com/asterisk/asterisk.git
synced 2025-08-17 03:34:53 +00:00
Correct typos of the following word families: voiced denumerator codeword upsampling constructed residual subroutine conditional quantizing courtesy number ASTERISK-29714 Change-Id: I471fb8086a5277d8f05047fedee22cfa97a4252d
36 lines
827 B
C
36 lines
827 B
C
|
|
/******************************************************************
|
|
|
|
iLBC Speech Coder ANSI-C Source Code
|
|
|
|
enhancer.h
|
|
|
|
Copyright (C) The Internet Society (2004).
|
|
All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
#ifndef __ENHANCER_H
|
|
#define __ENHANCER_H
|
|
|
|
#include "iLBC_define.h"
|
|
|
|
float xCorrCoef(
|
|
float *target, /* (i) first array */
|
|
float *regressor, /* (i) second array */
|
|
int subl /* (i) dimension arrays */
|
|
);
|
|
|
|
int enhancerInterface(
|
|
float *out, /* (o) the enhanced residual signal */
|
|
float *in, /* (i) the residual signal to enhance */
|
|
iLBC_Dec_Inst_t *iLBCdec_inst
|
|
/* (i/o) the decoder state structure */
|
|
);
|
|
|
|
#endif
|