OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:corr32
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_estimator.c
163
int32_t
corr32
, corr_max32, corr_max_o32;
local
254
corr32
=crrvecQ8_1[k-1];
255
if (
corr32
> corr_max32)
256
corr_max32 =
corr32
;
258
corr32
=crrvecQ8_2[k-1];
259
corr32
+= -4; // Compensate for later (log2(0.99))
261
if (
corr32
> corr_max32)
262
corr_max32 =
corr32
;
276
corr32
=cv1q[k];
277
if (
corr32
>corr_max32) { // Disregard small peak
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
enhancer_interface.c
69
int32_t
corr32
[50];
local
127
WebRtcSpl_CrossCorrelation(
corr32
, target, regressor, ENH_BLOCKL_HALF, 50,
134
lagmax[i] = WebRtcSpl_MaxIndexW32(
corr32
, 50);
135
corrmax[i] =
corr32
[lagmax[i]];
139
corr32
[k] = 0;
142
lagmax[2] = WebRtcSpl_MaxIndexW32(
corr32
, 50);
143
corrmax[2] =
corr32
[lagmax[2]];
211
WebRtcSpl_CrossCorrelation(
corr32
, target, regressor, plc_blockl, 3, shifts,
215
lag=WebRtcSpl_MaxIndexW32(
corr32
, 3);
Completed in 190 milliseconds