Searched refs:FRAME_LEN (Results 1 – 4 of 4) sorted by relevance
/external/libffi/src/riscv/ |
D | sysv.S | 74 #define FRAME_LEN (8 * FLTS + 8 * PTRS + 16) macro 89 .cfi_def_cfa 11, FRAME_LEN # interim CFA based on a1 90 SARG fp, FRAME_LEN - 2*PTRS(a1) 92 SARG ra, FRAME_LEN - 1*PTRS(a1) 95 addi fp, a1, FRAME_LEN 104 FLARG fa0, -FRAME_LEN+0*FLTS(fp) 105 FLARG fa1, -FRAME_LEN+1*FLTS(fp) 106 FLARG fa2, -FRAME_LEN+2*FLTS(fp) 107 FLARG fa3, -FRAME_LEN+3*FLTS(fp) 108 FLARG fa4, -FRAME_LEN+4*FLTS(fp) [all …]
|
/external/webrtc/modules/audio_processing/aecm/ |
D | echo_control_mobile.cc | 34 #define MAX_RESAMP_LEN (5 * FRAME_LEN) 37 BUF_SIZE_FRAMES * FRAME_LEN; // buffer size (samples) 50 short farendOld[2][FRAME_LEN]; 284 nFrames = nrOfSamples / FRAME_LEN; in WebRtcAecm_Process() 297 (short)WebRtc_available_read(aecm->farendBuf) / FRAME_LEN; in WebRtcAecm_Process() 354 (int)aecm->bufSizeStart * FRAME_LEN); in WebRtcAecm_Process() 364 int16_t farend[FRAME_LEN]; in WebRtcAecm_Process() 368 (short)WebRtc_available_read(aecm->farendBuf) / FRAME_LEN; in WebRtcAecm_Process() 374 FRAME_LEN); in WebRtcAecm_Process() 377 memcpy(&(aecm->farendOld[i][0]), farend_ptr, FRAME_LEN * sizeof(short)); in WebRtcAecm_Process() [all …]
|
D | aecm_core.cc | 194 WebRtc_CreateBuffer(FRAME_LEN + PART_LEN, sizeof(int16_t)); in WebRtcAecm_CreateCore() 201 WebRtc_CreateBuffer(FRAME_LEN + PART_LEN, sizeof(int16_t)); in WebRtcAecm_CreateCore() 208 WebRtc_CreateBuffer(FRAME_LEN + PART_LEN, sizeof(int16_t)); in WebRtcAecm_CreateCore() 215 WebRtc_CreateBuffer(FRAME_LEN + PART_LEN, sizeof(int16_t)); in WebRtcAecm_CreateCore() 519 int16_t farFrame[FRAME_LEN]; in WebRtcAecm_ProcessFrame() 525 WebRtcAecm_BufferFarFrame(aecm, farend, FRAME_LEN); in WebRtcAecm_ProcessFrame() 526 WebRtcAecm_FetchFarFrame(aecm, farFrame, FRAME_LEN, aecm->knownDelay); in WebRtcAecm_ProcessFrame() 530 WebRtc_WriteBuffer(aecm->farFrameBuf, farFrame, FRAME_LEN); in WebRtcAecm_ProcessFrame() 531 WebRtc_WriteBuffer(aecm->nearNoisyFrameBuf, nearendNoisy, FRAME_LEN); in WebRtcAecm_ProcessFrame() 533 WebRtc_WriteBuffer(aecm->nearCleanFrameBuf, nearendClean, FRAME_LEN); in WebRtcAecm_ProcessFrame() [all …]
|
D | aecm_defines.h | 17 #define FRAME_LEN 80 /* Total frame length, 10 ms. */ macro
|