OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kSpeechDataWeights
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/src/common_audio/vad/main/source/
vad_const.c
64
const WebRtc_Word16
kSpeechDataWeights
[12] = {48, 82, 45, 87, 50, 47, 80, 46, 83, 41, 78, 81};
vad_const.h
53
extern const WebRtc_Word16
kSpeechDataWeights
[];
vad_core.c
374
probs[0] = (WebRtc_Word32)(
kSpeechDataWeights
[n] * tmp32_1);
377
probs[1] = (WebRtc_Word32)(
kSpeechDataWeights
[n + NUM_CHANNELS] * tmp32_1);
594
smid = WEBRTC_SPL_MUL_16_16(
kSpeechDataWeights
[n], *smean1ptr);
595
smid += WEBRTC_SPL_MUL_16_16(
kSpeechDataWeights
[n+NUM_CHANNELS], *smean2ptr);
615
smid = WEBRTC_SPL_MUL_16_16(tmp16,
kSpeechDataWeights
[n]);
620
smid += WEBRTC_SPL_MUL_16_16(tmp16,
kSpeechDataWeights
[n+NUM_CHANNELS]);
Completed in 20 milliseconds