OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:blockl
(Results
1 - 11
of
11
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
do_plc.c
75
iLBCdec_inst->
blockl
);
90
corrLen = (size_t)WEBRTC_SPL_MIN(60, iLBCdec_inst->
blockl
-(inlag+3));
93
iLBCdec_inst->prevResidual, lag, iLBCdec_inst->
blockl
, corrLen, scale3);
103
iLBCdec_inst->prevResidual, j, iLBCdec_inst->
blockl
, corrLen, scale3);
148
tmp2W32=WebRtcSpl_DotProductWithScale(&iLBCdec_inst->prevResidual[iLBCdec_inst->
blockl
-corrLen],
149
&iLBCdec_inst->prevResidual[iLBCdec_inst->
blockl
-corrLen],
190
if (iLBCdec_inst->consPLICount*iLBCdec_inst->
blockl
>320) {
192
} else if (iLBCdec_inst->consPLICount*iLBCdec_inst->
blockl
>640) {
194
} else if (iLBCdec_inst->consPLICount*iLBCdec_inst->
blockl
>960) {
196
} else if (iLBCdec_inst->consPLICount*iLBCdec_inst->
blockl
>1280)
[
all
...]
ilbc.c
98
if ((len != ((IlbcEncoder*)iLBCenc_inst)->
blockl
) &&
102
(len != 2*((IlbcEncoder*)iLBCenc_inst)->
blockl
) &&
103
(len != 3*((IlbcEncoder*)iLBCenc_inst)->
blockl
))
117
pos += ((IlbcEncoder*)iLBCenc_inst)->
blockl
;
184
&decoded[i * ((IlbcDecoder*)iLBCdec_inst)->
blockl
],
192
return (int)(i*((IlbcDecoder*)iLBCdec_inst)->
blockl
);
212
&decoded[i * ((IlbcDecoder*)iLBCdec_inst)->
blockl
],
220
return (int)(i*((IlbcDecoder*)iLBCdec_inst)->
blockl
);
240
&decoded[i * ((IlbcDecoder*)iLBCdec_inst)->
blockl
],
248
return (int)(i*((IlbcDecoder*)iLBCdec_inst)->
blockl
);
[
all
...]
init_decode.c
36
iLBCdec_inst->
blockl
= BLOCKL_30MS;
45
iLBCdec_inst->
blockl
= BLOCKL_20MS;
95
return (int)(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
112
WEBRTC_SPL_MEMCPY_W16(decresidual, PLCresidual, iLBCdec_inst->
blockl
);
127
WEBRTC_SPL_MEMCPY_W16(decresidual, PLCresidual, iLBCdec_inst->
blockl
);
188
WEBRTC_SPL_MEMCPY_W16(iLBCdec_inst->syntMem, &data[iLBCdec_inst->
blockl
-LPC_FILTERORDER], LPC_FILTERORDER);
197
&decresidual[iLBCdec_inst->
blockl
-60],
198
&decresidual[iLBCdec_inst->
blockl
-60-lag],
203
&decresidual[iLBCdec_inst->
blockl
-ENH_BLOCKL],
204
&decresidual[iLBCdec_inst->
blockl
-ENH_BLOCKL-lag],
213
WEBRTC_SPL_MEMCPY_W16(data, decresidual, iLBCdec_inst->
blockl
);
226
WEBRTC_SPL_MEMCPY_W16(iLBCdec_inst->syntMem, &data[iLBCdec_inst->
blockl
-LPC_FILTERORDER], LPC_FILTERORDER);
229
WEBRTC_SPL_MEMCPY_W16(decblock,data,iLBCdec_inst->
blockl
);
[
all
...]
enhancer_interface.c
40
size_t inLen=iLBCdec_inst->
blockl
+120;
81
memmove(enh_buf, &enh_buf[iLBCdec_inst->
blockl
],
82
(ENH_BUFL - iLBCdec_inst->
blockl
) * sizeof(*enh_buf));
84
WEBRTC_SPL_MEMCPY_W16(&enh_buf[ENH_BUFL-iLBCdec_inst->
blockl
], in,
85
iLBCdec_inst->
blockl
);
226
plc_pred, &enh_buf[ENH_BUFL-iLBCdec_inst->
blockl
-plc_blockl+lag],
255
&enh_buf[ENH_BUFL-iLBCdec_inst->
blockl
-plc_blockl], plc_blockl);
262
&enh_buf[ENH_BUFL-iLBCdec_inst->
blockl
-plc_blockl],
263
&enh_buf[ENH_BUFL-iLBCdec_inst->
blockl
-plc_blockl],
316
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
size_t
blockl
;
member in struct:IlbcEncoder_
179
size_t
blockl
;
member in struct:IlbcDecoder_
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/webrtc/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 98 milliseconds