Searched refs:noOfLostFrames (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/interface/
H A Dilbc.h209 * - noOfLostFrames : Number of PLC frames to produce
220 int16_t noOfLostFrames);
231 * - noOfLostFrames : Number of lost frames
242 int16_t noOfLostFrames);
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
H A DIsac_test.cc74 WebRtc_Word16 noOfLostFrames; local
221 noOfLostFrames = 1;
223 noOfLostFrames = 2;
225 size = WebRtcIsacfix_DecodePlc(ISACfix_inst, sigOut, noOfLostFrames );
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dilbc.c231 int16_t WebRtcIlbcfix_DecodePlc(iLBC_decinst_t *iLBCdec_inst, int16_t *decoded, int16_t noOfLostFrames) { argument
235 for (i=0;i<noOfLostFrames;i++) {
239 return (noOfLostFrames*((iLBC_Dec_Inst_t*)iLBCdec_inst)->blockl);
242 int16_t WebRtcIlbcfix_NetEqPlc(iLBC_decinst_t *iLBCdec_inst, int16_t *decoded, int16_t noOfLostFrames) { argument
246 (void)(noOfLostFrames = 0);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/interface/
H A Disacfix.h295 * Output speech length will be "240*noOfLostFrames" samples
296 * that equevalent of "30*noOfLostFrames" millisecond.
302 * - noOfLostFrames : Number of PLC frames (240 sample=30ms) to produce
315 int16_t noOfLostFrames);
325 * Output speech length will be "480*noOfLostFrames" samples
326 * that is equevalent of "30*noOfLostFrames" millisecond.
330 * - noOfLostFrames : Number of PLC frames (480sample = 30ms)
343 int16_t noOfLostFrames );
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/interface/
H A Disacfix.h296 * Output speech length will be "240*noOfLostFrames" samples
297 * that equevalent of "30*noOfLostFrames" millisecond.
303 * - noOfLostFrames : Number of PLC frames (240 sample=30ms) to produce
316 WebRtc_Word16 noOfLostFrames );
326 * Output speech length will be "480*noOfLostFrames" samples
327 * that is equevalent of "30*noOfLostFrames" millisecond.
331 * - noOfLostFrames : Number of PLC frames (480sample = 30ms)
344 WebRtc_Word16 noOfLostFrames );
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Disacfix.c982 * Output speech length will be "240*noOfLostFrames" samples
983 * that is equevalent of "30*noOfLostFrames" millisecond.
989 * - noOfLostFrames : Number of PLC frames (240 sample=30ms) to produce
1001 int16_t noOfLostFrames )
1014 if (noOfLostFrames > 2){
1015 noOfLostFrames = 2;
1020 while( noOfLostFrames > 0 )
1029 noOfLostFrames--;
1050 * Output speech length will be "480*noOfLostFrames" samples
1051 * that is equevalent of "30*noOfLostFrames" millisecon
1065 WebRtcIsacfix_DecodePlc(ISACFIX_MainStruct *ISAC_main_inst, int16_t *decoded, int16_t noOfLostFrames) argument
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Disacfix.c945 * Output speech length will be "240*noOfLostFrames" samples
946 * that is equevalent of "30*noOfLostFrames" millisecond.
952 * - noOfLostFrames : Number of PLC frames (240 sample=30ms) to produce
964 WebRtc_Word16 noOfLostFrames )
977 if (noOfLostFrames > 2){
978 noOfLostFrames = 2;
983 while( noOfLostFrames > 0 )
992 noOfLostFrames--;
1013 * Output speech length will be "480*noOfLostFrames" samples
1014 * that is equevalent of "30*noOfLostFrames" millisecon
1028 WebRtcIsacfix_DecodePlc(ISACFIX_MainStruct *ISAC_main_inst, WebRtc_Word16 *decoded, WebRtc_Word16 noOfLostFrames) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/interface/
H A Disac.h235 * - noOfLostFrames : Number of PLC frames to produce.
247 int16_t noOfLostFrames);
/external/webrtc/src/modules/audio_coding/codecs/isac/main/interface/
H A Disac.h238 * - noOfLostFrames : Number of PLC frames to produce.
250 WebRtc_Word16 noOfLostFrames);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Disac.c1401 * - noOfLostFrames : Number of PLC frames to produce
1411 int16_t noOfLostFrames) {
1417 if (noOfLostFrames > 2) {
1418 noOfLostFrames = 2;
1424 numSamples = 480 * noOfLostFrames;
1428 numSamples = 960 * noOfLostFrames;
1409 WebRtcIsac_DecodePlc(ISACStruct* ISAC_main_inst, int16_t* decoded, int16_t noOfLostFrames) argument
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Disac.c1360 * - noOfLostFrames : Number of PLC frames to produce
1370 WebRtc_Word16 noOfLostFrames) {
1376 if (noOfLostFrames > 2) {
1377 noOfLostFrames = 2;
1383 numSamples = 480 * noOfLostFrames;
1387 numSamples = 960 * noOfLostFrames;
1368 WebRtcIsac_DecodePlc(ISACStruct* ISAC_main_inst, WebRtc_Word16* decoded, WebRtc_Word16 noOfLostFrames) argument

Completed in 223 milliseconds