OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BinaryDelayEstimator
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator.h
62
}
BinaryDelayEstimator
;
139
// Note that
BinaryDelayEstimator
utilizes BinaryDelayEstimatorFarend, but does
140
// not take ownership of it, hence the
BinaryDelayEstimator
has to be torn down
148
void WebRtc_FreeBinaryDelayEstimator(
BinaryDelayEstimator
* self);
155
BinaryDelayEstimator
* WebRtc_CreateBinaryDelayEstimator(
169
int WebRtc_AllocateHistoryBufferMemory(
BinaryDelayEstimator
* self,
181
void WebRtc_InitBinaryDelayEstimator(
BinaryDelayEstimator
* self);
192
int WebRtc_SoftResetBinaryDelayEstimator(
BinaryDelayEstimator
* self,
212
int WebRtc_ProcessBinarySpectrum(
BinaryDelayEstimator
* self,
225
int WebRtc_binary_last_delay(
BinaryDelayEstimator
* self)
[
all
...]
delay_estimator_internal.h
45
BinaryDelayEstimator
* binary_handle;
delay_estimator.c
91
static void UpdateRobustValidationStatistics(
BinaryDelayEstimator
* self,
170
static int HistogramBasedValidation(const
BinaryDelayEstimator
* self,
232
static int RobustValidation(const
BinaryDelayEstimator
* self,
376
void WebRtc_FreeBinaryDelayEstimator(
BinaryDelayEstimator
* self) {
394
//
BinaryDelayEstimator
does not have ownership of |farend|, hence we do not
401
BinaryDelayEstimator
* WebRtc_CreateBinaryDelayEstimator(
403
BinaryDelayEstimator
* self = NULL;
407
self = malloc(sizeof(
BinaryDelayEstimator
));
436
int WebRtc_AllocateHistoryBufferMemory(
BinaryDelayEstimator
* self,
478
void WebRtc_InitBinaryDelayEstimator(
BinaryDelayEstimator
* self)
[
all
...]
delay_estimator_unittest.cc
44
void VerifyDelay(
BinaryDelayEstimator
* binary_handle, int offset, int delay);
45
void RunBinarySpectra(
BinaryDelayEstimator
* binary1,
46
BinaryDelayEstimator
* binary2,
55
BinaryDelayEstimator
* binary_;
136
void DelayEstimatorTest::VerifyDelay(
BinaryDelayEstimator
* binary_handle,
148
void DelayEstimatorTest::RunBinarySpectra(
BinaryDelayEstimator
* binary1,
149
BinaryDelayEstimator
* binary2,
205
BinaryDelayEstimator
* binary2 =
491
BinaryDelayEstimator
* binary_handle = binary_;
Completed in 2708 milliseconds