OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:binary_handle
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_internal.h
45
BinaryDelayEstimator*
binary_handle
;
member in struct:__anon27895
delay_estimator_wrapper.c
267
WebRtc_FreeBinaryDelayEstimator(self->
binary_handle
);
268
self->
binary_handle
= NULL;
285
self->
binary_handle
=
287
memory_fail |= (self->
binary_handle
== NULL);
313
WebRtc_InitBinaryDelayEstimator(self->
binary_handle
);
327
return WebRtc_SoftResetBinaryDelayEstimator(self->
binary_handle
, delay_shift);
336
return WebRtc_AllocateHistoryBufferMemory(self->
binary_handle
, history_size);
345
if (self->
binary_handle
->farend->history_size !=
346
self->
binary_handle
->history_size) {
350
return self->
binary_handle
->history_size
[
all
...]
delay_estimator_unittest.cc
44
void VerifyDelay(BinaryDelayEstimator*
binary_handle
, int offset, int delay);
136
void DelayEstimatorTest::VerifyDelay(BinaryDelayEstimator*
binary_handle
,
139
EXPECT_EQ(delay, WebRtc_binary_last_delay(
binary_handle
));
491
BinaryDelayEstimator*
binary_handle
= binary_;
local
494
// |
binary_handle
| should be NULL.
497
binary_handle
= WebRtc_CreateBinaryDelayEstimator(NULL, kLookahead);
498
EXPECT_TRUE(
binary_handle
== NULL);
499
binary_handle
= WebRtc_CreateBinaryDelayEstimator(binary_farend_, -1);
500
EXPECT_TRUE(
binary_handle
== NULL);
Completed in 2743 milliseconds