Home
last modified time | relevance | path

Searched refs:COMBFILTER_MAXPERIOD (Results 1 – 2 of 2) sorted by relevance

/external/libopus/celt/
Dcelt_encoder.c140 …+ channels*COMBFILTER_MAXPERIOD*sizeof(celt_sig) /* celt_sig prefilter_mem[channels*COMBFILTER_MAX… in opus_custom_encoder_get_size()
1182 ALLOC(_pre, CC*(N+COMBFILTER_MAXPERIOD), celt_sig); in run_prefilter()
1185 pre[1] = _pre + (N+COMBFILTER_MAXPERIOD); in run_prefilter()
1189 OPUS_COPY(pre[c], prefilter_mem+c*COMBFILTER_MAXPERIOD, COMBFILTER_MAXPERIOD); in run_prefilter()
1190 OPUS_COPY(pre[c]+COMBFILTER_MAXPERIOD, in+c*(N+overlap)+overlap, N); in run_prefilter()
1196 ALLOC(pitch_buf, (COMBFILTER_MAXPERIOD+N)>>1, opus_val16); in run_prefilter()
1198 pitch_downsample(pre, pitch_buf, COMBFILTER_MAXPERIOD+N, CC, st->arch); in run_prefilter()
1201 pitch_search(pitch_buf+(COMBFILTER_MAXPERIOD>>1), pitch_buf, N, in run_prefilter()
1202 COMBFILTER_MAXPERIOD-3*COMBFILTER_MINPERIOD, &pitch_index, in run_prefilter()
1204 pitch_index = COMBFILTER_MAXPERIOD-pitch_index; in run_prefilter()
[all …]
Dcelt.h207 #define COMBFILTER_MAXPERIOD 1024 macro