WebRtc_Word32 => int32_t etc. in audio_coding/
BUG=314 Review URL: https://webrtc-codereview.appspot.com/1271006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3789 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -28,18 +28,18 @@
|
||||
*---------------------------------------------------------------*/
|
||||
|
||||
void WebRtcIlbcfix_LpcEncode(
|
||||
WebRtc_Word16 *syntdenum, /* (i/o) synthesis filter coefficients
|
||||
int16_t *syntdenum, /* (i/o) synthesis filter coefficients
|
||||
before/after encoding */
|
||||
WebRtc_Word16 *weightdenum, /* (i/o) weighting denumerator coefficients
|
||||
int16_t *weightdenum, /* (i/o) weighting denumerator coefficients
|
||||
before/after encoding */
|
||||
WebRtc_Word16 *lsf_index, /* (o) lsf quantization index */
|
||||
WebRtc_Word16 *data, /* (i) Speech to do LPC analysis on */
|
||||
int16_t *lsf_index, /* (o) lsf quantization index */
|
||||
int16_t *data, /* (i) Speech to do LPC analysis on */
|
||||
iLBC_Enc_Inst_t *iLBCenc_inst
|
||||
/* (i/o) the encoder state structure */
|
||||
) {
|
||||
/* Stack based */
|
||||
WebRtc_Word16 lsf[LPC_FILTERORDER * LPC_N_MAX];
|
||||
WebRtc_Word16 lsfdeq[LPC_FILTERORDER * LPC_N_MAX];
|
||||
int16_t lsf[LPC_FILTERORDER * LPC_N_MAX];
|
||||
int16_t lsfdeq[LPC_FILTERORDER * LPC_N_MAX];
|
||||
|
||||
/* Calculate LSF's from the input speech */
|
||||
WebRtcIlbcfix_SimpleLpcAnalysis(lsf, data, iLBCenc_inst);
|
||||
|
Reference in New Issue
Block a user