/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
lp_dec2.c | 41 Word16 *p_x, x_buf[L_FRAME + L_MEM]; local 45 p_x = x_buf; 57 p_x = &x_buf[i];
|
/external/chromium_org/third_party/opus/src/silk/fixed/ |
find_pitch_lags_FIX.c | 45 const opus_int16 *x_buf, *x_buf_ptr; local 60 x_buf = x - psEnc->sCmn.ltp_mem_length; 69 x_buf_ptr = x_buf + buf_len - psEnc->sCmn.pitch_LPC_win_length; 109 silk_LPC_analysis_filter( res, x_buf, A_Q12, buf_len, psEnc->sCmn.pitchEstimationLPCOrder );
|
structs_FIX.h | 73 silk_DWORD_ALIGN opus_int16 x_buf[ 2 * MAX_FRAME_LENGTH + LA_SHAPE_MAX ];/* Buffer for find pitch and noise shape analysis */ member in struct:__anon15687
|
encode_frame_FIX.c | 109 x_frame = psEnc->x_buf + psEnc->sCmn.ltp_mem_length; /* start of frame to encode */ 291 silk_memmove( psEnc->x_buf, &psEnc->x_buf[ psEnc->sCmn.frame_length ],
|
/external/chromium_org/third_party/opus/src/silk/float/ |
find_pitch_lags_FLP.c | 45 const silk_float *x_buf_ptr, *x_buf; local 60 x_buf = x - psEnc->sCmn.ltp_mem_length; 69 x_buf_ptr = x_buf + buf_len - psEnc->sCmn.pitch_LPC_win_length; 104 silk_LPC_analysis_filter_FLP( res, A, x_buf, buf_len, psEnc->sCmn.pitchEstimationLPCOrder );
|
structs_FLP.h | 73 silk_float x_buf[ 2 * MAX_FRAME_LENGTH + LA_SHAPE_MAX ];/* Buffer for find pitch and noise shape analysis */ member in struct:__anon15692
|
encode_frame_FLP.c | 110 x_frame = psEnc->x_buf + psEnc->sCmn.ltp_mem_length; /* start of frame to encode */ 294 silk_memmove( psEnc->x_buf, &psEnc->x_buf[ psEnc->sCmn.frame_length ],
|
/external/chromium_org/third_party/opus/src/silk/ |
control_codec.c | 152 opus_int16 *x_bufFIX = psEnc->x_buf; 160 silk_float2short_array( x_bufFIX, psEnc->x_buf, nSamples_temp ); 163 /* Initialize resampler for temporary resampling of x_buf data to API_fs_Hz */ 166 /* Temporary resampling of x_buf data to API_fs_Hz */ 179 silk_short2float_array( psEnc->x_buf, x_bufFIX, ( 2 * MAX_FRAME_LENGTH_MS + LA_SHAPE_MS ) * fs_kHz );
|