Searched refs:BinaryDelayEstimator (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/modules/audio_processing/utility/ |
D | delay_estimator.h | 64 } BinaryDelayEstimator; typedef 151 void WebRtc_FreeBinaryDelayEstimator(BinaryDelayEstimator* self); 158 BinaryDelayEstimator* WebRtc_CreateBinaryDelayEstimator( 173 int WebRtc_AllocateHistoryBufferMemory(BinaryDelayEstimator* self, 185 void WebRtc_InitBinaryDelayEstimator(BinaryDelayEstimator* self); 196 int WebRtc_SoftResetBinaryDelayEstimator(BinaryDelayEstimator* self, 216 int WebRtc_ProcessBinarySpectrum(BinaryDelayEstimator* self, 229 int WebRtc_binary_last_delay(BinaryDelayEstimator* self); 238 float WebRtc_binary_last_delay_quality(BinaryDelayEstimator* self);
|
D | delay_estimator.cc | 100 static void UpdateRobustValidationStatistics(BinaryDelayEstimator* self, in UpdateRobustValidationStatistics() 182 static int HistogramBasedValidation(const BinaryDelayEstimator* self, in HistogramBasedValidation() 246 static int RobustValidation(const BinaryDelayEstimator* self, in RobustValidation() 388 void WebRtc_FreeBinaryDelayEstimator(BinaryDelayEstimator* self) { in WebRtc_FreeBinaryDelayEstimator() 412 BinaryDelayEstimator* WebRtc_CreateBinaryDelayEstimator( in WebRtc_CreateBinaryDelayEstimator() 415 BinaryDelayEstimator* self = NULL; in WebRtc_CreateBinaryDelayEstimator() 419 self = static_cast<BinaryDelayEstimator*>( in WebRtc_CreateBinaryDelayEstimator() 420 malloc(sizeof(BinaryDelayEstimator))); in WebRtc_CreateBinaryDelayEstimator() 449 int WebRtc_AllocateHistoryBufferMemory(BinaryDelayEstimator* self, in WebRtc_AllocateHistoryBufferMemory() 487 void WebRtc_InitBinaryDelayEstimator(BinaryDelayEstimator* self) { in WebRtc_InitBinaryDelayEstimator() [all …]
|
D | delay_estimator_unittest.cc | 43 void VerifyDelay(BinaryDelayEstimator* binary_handle, int offset, int delay); 44 void RunBinarySpectra(BinaryDelayEstimator* binary1, 45 BinaryDelayEstimator* binary2, 58 BinaryDelayEstimator* binary_; 139 void DelayEstimatorTest::VerifyDelay(BinaryDelayEstimator* binary_handle, in VerifyDelay() 152 void DelayEstimatorTest::RunBinarySpectra(BinaryDelayEstimator* binary1, in RunBinarySpectra() 153 BinaryDelayEstimator* binary2, in RunBinarySpectra() 208 BinaryDelayEstimator* binary2 = WebRtc_CreateBinaryDelayEstimator( in RunBinarySpectraTest() 489 BinaryDelayEstimator* binary_handle = binary_; in TEST_F()
|
D | delay_estimator_internal.h | 46 BinaryDelayEstimator* binary_handle;
|