OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mWindowSize
(Results
1 - 2
of
2
) sorted by null
/frameworks/opt/net/voip/src/jni/rtp/
EchoSuppressor.cpp
54
mWindowSize
= sampleCount >> shift;
59
mXs = new uint16_t[mTailLength +
mWindowSize
];
60
memset(mXs, 0, sizeof(*mXs) * (mTailLength +
mWindowSize
));
65
mXRecords = new uint16_t[mRecordLength *
mWindowSize
];
66
memset(mXRecords, 0, sizeof(*mXRecords) * mRecordLength *
mWindowSize
);
82
mWeight = 1.0f / (mRecordLength *
mWindowSize
);
101
mXs[i +
mWindowSize
] = mXs[i];
103
for (int i =
mWindowSize
- 1, j = 0; i >= 0; --i, j += mScale) {
115
for (int i = mTailLength -
mWindowSize
- 1; i >= 0; --i) {
116
mXSums[i +
mWindowSize
] = mXSums[i]
[
all
...]
EchoSuppressor.h
34
int
mWindowSize
;
Completed in 6119 milliseconds