/external/chromium_org/third_party/opus/src/celt/arm/ |
pitch_arm.h | 37 opus_val32 *xcorr, int len, int max_pitch); 46 opus_val32 *xcorr, int len, int max_pitch); 51 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ 52 ((void)(arch),PRESUME_NEON(celt_pitch_xcorr)(_x, _y, xcorr, len, max_pitch))
|
celt_pitch_xcorr_arm.s | 155 ; opus_val32 *xcorr, int len, int max_pitch) 167 ; r6 = int max_pitch 173 ; if (max_pitch < 4) goto celt_pitch_xcorr_neon_process4_done 190 ; if (max_pitch < 4) goto celt_pitch_xcorr_neon_process4_done 198 ; if (max_pitch <= 0) goto celt_pitch_xcorr_neon_done 246 ; if (--max_pitch > 0) goto celt_pitch_xcorr_neon_process_remaining 357 ; r1 = int max_pitch 409 ; if (max_pitch < 4) goto celt_pitch_xcorr_edsp_process2
|
/external/libopus/celt/arm/ |
pitch_arm.h | 37 opus_val32 *xcorr, int len, int max_pitch); 46 opus_val32 *xcorr, int len, int max_pitch); 51 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ 52 ((void)(arch),PRESUME_NEON(celt_pitch_xcorr)(_x, _y, xcorr, len, max_pitch))
|
celt_pitch_xcorr_arm.s | 155 ; opus_val32 *xcorr, int len, int max_pitch) 167 ; r6 = int max_pitch 173 ; if (max_pitch < 4) goto celt_pitch_xcorr_neon_process4_done 190 ; if (max_pitch < 4) goto celt_pitch_xcorr_neon_process4_done 198 ; if (max_pitch <= 0) goto celt_pitch_xcorr_neon_done 246 ; if (--max_pitch > 0) goto celt_pitch_xcorr_neon_process_remaining 357 ; r1 = int max_pitch 409 ; if (max_pitch < 4) goto celt_pitch_xcorr_edsp_process2
|
/external/chromium_org/third_party/opus/src/celt/ |
pitch.c | 46 int max_pitch, int *best_pitch 70 for (i=0;i<max_pitch;i++) 225 celt_pitch_xcorr(opus_val16 *x, opus_val16 *y, opus_val32 *xcorr, int len, int max_pitch) 231 for (i=0;i<max_pitch;i++) 253 celt_pitch_xcorr_c(const opus_val16 *_x, const opus_val16 *_y, opus_val32 *xcorr, int len, int max_pitch) 256 /*The EDSP version requires that max_pitch is at least 1, and that _x is 259 celt_assert(max_pitch>0); 264 for (i=0;i<max_pitch-3;i+=4) 279 /* In case max_pitch isn't a multiple of 4, do non-unrolled version. */ 280 for (;i<max_pitch;i++ [all...] |
pitch.h | 52 int len, int max_pitch, int *pitch, int arch); 150 opus_val32 *xcorr, int len, int max_pitch); 164 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ 166 xcorr, len, max_pitch)) 168 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ 169 ((void)(arch),celt_pitch_xcorr_c(_x, _y, xcorr, len, max_pitch))
|
/external/libopus/celt/ |
pitch.c | 46 int max_pitch, int *best_pitch 70 for (i=0;i<max_pitch;i++) 225 celt_pitch_xcorr(opus_val16 *x, opus_val16 *y, opus_val32 *xcorr, int len, int max_pitch) 231 for (i=0;i<max_pitch;i++) 253 celt_pitch_xcorr_c(const opus_val16 *_x, const opus_val16 *_y, opus_val32 *xcorr, int len, int max_pitch) 256 /*The EDSP version requires that max_pitch is at least 1, and that _x is 259 celt_assert(max_pitch>0); 264 for (i=0;i<max_pitch-3;i+=4) 279 /* In case max_pitch isn't a multiple of 4, do non-unrolled version. */ 280 for (;i<max_pitch;i++ [all...] |
pitch.h | 52 int len, int max_pitch, int *pitch, int arch); 150 opus_val32 *xcorr, int len, int max_pitch); 164 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ 166 xcorr, len, max_pitch)) 168 # define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \ 169 ((void)(arch),celt_pitch_xcorr_c(_x, _y, xcorr, len, max_pitch))
|
/external/speex/libspeex/ |
nb_celp.h | 59 int max_pitch; /**< Maximum pitch value allowed */ member in struct:EncState 132 int max_pitch; /**< Maximum pitch value allowed */ member in struct:DecState
|
filters.h | 85 int max_pitch, /*pitch gain (3-tap)*/
|
nb_celp.c | 140 st->max_pitch=mode->pitchEnd; 295 SPEEX_MOVE(st->excBuf, st->excBuf+st->frameSize, st->max_pitch+2); 296 SPEEX_MOVE(st->swBuf, st->swBuf+st->frameSize, st->max_pitch+2); 369 open_loop_nbest_pitch(st->sw, st->min_pitch, st->max_pitch, st->frameSize, 773 if (ol_pitch > st->max_pitch-margin) 774 ol_pitch=st->max_pitch-margin; 782 pit_max = st->max_pitch; 952 st->max_pitch=mode->pitchEnd; 959 st->excBuf = (spx_word16_t*)speex_alloc((st->frameSize + 2*st->max_pitch + st->subframeSize + 12)*sizeof(spx_word16_t)); 960 st->exc = st->excBuf + 2*st->max_pitch + st->subframeSize + 6 [all...] |
filters.c | 660 int max_pitch, 710 if (corr_pitch>max_pitch) 787 if (corr_pitch>max_pitch)
|