HomeSort by relevance Sort by last modified time
    Searched refs:blockl (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
do_plc.c 73 max = WebRtcSpl_MaxAbsValueW16((*iLBCdec_inst).prevResidual, (int16_t)iLBCdec_inst->blockl);
88 corrLen = WEBRTC_SPL_MIN(60, iLBCdec_inst->blockl-(inlag+3));
91 iLBCdec_inst->prevResidual, lag, iLBCdec_inst->blockl, corrLen, scale3);
100 iLBCdec_inst->prevResidual, j, iLBCdec_inst->blockl, corrLen, scale3);
145 tmp2W32=WebRtcSpl_DotProductWithScale(&iLBCdec_inst->prevResidual[iLBCdec_inst->blockl-corrLen],
146 &iLBCdec_inst->prevResidual[iLBCdec_inst->blockl-corrLen],
187 if (iLBCdec_inst->consPLICount*iLBCdec_inst->blockl>320) {
189 } else if (iLBCdec_inst->consPLICount*iLBCdec_inst->blockl>640) {
191 } else if (iLBCdec_inst->consPLICount*iLBCdec_inst->blockl>960) {
193 } else if (iLBCdec_inst->consPLICount*iLBCdec_inst->blockl>1280)
    [all...]
ilbc.c 94 if ((len != ((iLBC_Enc_Inst_t*)iLBCenc_inst)->blockl) &&
98 (len != 2*((iLBC_Enc_Inst_t*)iLBCenc_inst)->blockl) &&
99 (len != 3*((iLBC_Enc_Inst_t*)iLBCenc_inst)->blockl))
112 pos += ((iLBC_Enc_Inst_t*)iLBCenc_inst)->blockl;
175 WebRtcIlbcfix_DecodeImpl(&decoded[i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->blockl], (const uint16_t*) &encoded[i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->no_of_words], (iLBC_Dec_Inst_t*) iLBCdec_inst, 1);
180 return(i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->blockl);
199 WebRtcIlbcfix_DecodeImpl(&decoded[i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->blockl], (const uint16_t*) &encoded[i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->no_of_words], (iLBC_Dec_Inst_t*) iLBCdec_inst, 1);
204 return(i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->blockl);
223 WebRtcIlbcfix_DecodeImpl(&decoded[i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->blockl], (const uint16_t*) &encoded[i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->no_of_words], (iLBC_Dec_Inst_t*) iLBCdec_inst, 1);
228 return(i*((iLBC_Dec_Inst_t*)iLBCdec_inst)->blockl);
    [all...]
init_decode.c 36 iLBCdec_inst->blockl = BLOCKL_30MS;
45 iLBCdec_inst->blockl = BLOCKL_20MS;
95 return (iLBCdec_inst->blockl);
simple_lpc_analysis.c 45 is=LPC_LOOKBACK+BLOCKL_MAX-iLBCenc_inst->blockl;
46 WEBRTC_SPL_MEMCPY_W16(iLBCenc_inst->lpc_buffer+is,data,iLBCenc_inst->blockl);
89 is=LPC_LOOKBACK+BLOCKL_MAX-iLBCenc_inst->blockl;
decode.c 111 WEBRTC_SPL_MEMCPY_W16(decresidual, PLCresidual, iLBCdec_inst->blockl);
126 WEBRTC_SPL_MEMCPY_W16(decresidual, PLCresidual, iLBCdec_inst->blockl);
187 WEBRTC_SPL_MEMCPY_W16(iLBCdec_inst->syntMem, &data[iLBCdec_inst->blockl-LPC_FILTERORDER], LPC_FILTERORDER);
196 &decresidual[iLBCdec_inst->blockl-60],
197 &decresidual[iLBCdec_inst->blockl-60-lag],
202 &decresidual[iLBCdec_inst->blockl-ENH_BLOCKL],
203 &decresidual[iLBCdec_inst->blockl-ENH_BLOCKL-lag],
212 WEBRTC_SPL_MEMCPY_W16(data, decresidual, iLBCdec_inst->blockl);
225 WEBRTC_SPL_MEMCPY_W16(iLBCdec_inst->syntMem, &data[iLBCdec_inst->blockl-LPC_FILTERORDER], LPC_FILTERORDER);
228 WEBRTC_SPL_MEMCPY_W16(decblock,data,iLBCdec_inst->blockl);
    [all...]
enhancer_interface.c 40 int inLen=iLBCdec_inst->blockl+120;
76 memmove(enh_buf, &enh_buf[iLBCdec_inst->blockl],
77 (ENH_BUFL - iLBCdec_inst->blockl) * sizeof(*enh_buf));
79 WEBRTC_SPL_MEMCPY_W16(&enh_buf[ENH_BUFL-iLBCdec_inst->blockl], in,
80 iLBCdec_inst->blockl);
229 plc_pred, &enh_buf[ENH_BUFL-iLBCdec_inst->blockl-plc_blockl+lag],
258 &enh_buf[ENH_BUFL-iLBCdec_inst->blockl-plc_blockl], plc_blockl);
265 &enh_buf[ENH_BUFL-iLBCdec_inst->blockl-plc_blockl],
266 &enh_buf[ENH_BUFL-iLBCdec_inst->blockl-plc_blockl],
320 enh_bufPtr1=&enh_buf[ENH_BUFL-1-iLBCdec_inst->blockl];
    [all...]
init_encode.c 33 iLBCenc_inst->blockl = BLOCKL_30MS;
42 iLBCenc_inst->blockl = BLOCKL_20MS;
defines.h 82 #define ENH_NBLOCKS (BLOCKL/ENH_BLOCKL)
138 int16_t blockl; member in struct:iLBC_Enc_Inst_t_
179 int16_t blockl; member in struct:iLBC_Dec_Inst_t_
frame_classify.c 48 max = WebRtcSpl_MaxAbsValueW16(residualFIX, iLBCenc_inst->blockl);
encode.c 80 residual = &iLBCenc_inst->lpc_buffer[LPC_LOOKBACK+BLOCKL_MAX-iLBCenc_inst->blockl];
122 WEBRTC_SPL_MEMCPY_W16(data,block,iLBCenc_inst->blockl);
128 iLBCenc_inst->blockl);
146 WEBRTC_SPL_MEMCPY_W16(iLBCenc_inst->anaMem, &data[iLBCenc_inst->blockl-LPC_FILTERORDER], LPC_FILTERORDER);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/test/
iLBC_testprogram.c 75 return (iLBCdec_inst->blockl);
213 frameLen = Enc_Inst.blockl;
215 while( fread(&inputdata[noOfBlocks*Enc_Inst.blockl],sizeof(short),
216 Enc_Inst.blockl,ifileid)==(uint16_t)Enc_Inst.blockl){
223 && ( blockcount < noOfBlocks/(Enc_Inst.blockl/frameLen) )) {
227 if ( blockcount < noOfBlocks/(Enc_Inst.blockl/frameLen) ) {
252 while( count < blockcount * (Enc_Inst.blockl/frameLen) ) {
282 decode(&Dec_Inst, &decodeddata[count * Dec_Inst.blockl],
288 decode(&Dec_Inst, &decodeddata[count*Dec_Inst.blockl],
    [all...]

Completed in 1751 milliseconds