OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:system_delay
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core.h
73
// Returns the number of elements moved, and adjusts |
system_delay
| by the
114
// Returns the current |
system_delay
|, i.e., the buffered difference between
118
// Sets the |
system_delay
| to |value|. Note that if the value is changed
aec_core_internal.h
101
int
system_delay
; // Current system delay buffered in AEC.
member in struct:AecCore
aec_core.c
[
all
...]
system_delay_unittest.cc
202
// |
system_delay
| is in the interval [75%, 100%] of what's reported on the
244
// |
system_delay
| is in the interval [60%, 100%] of what's last reported.
391
// |
system_delay
| > |device_buf|.
/external/webrtc/src/modules/audio_processing/aec/
aec_core.h
115
int
system_delay
; // Current system delay buffered in AEC.
member in struct:__anon17136
echo_cancellation.c
337
aecpc->aec->
system_delay
+= newNrOfSamples;
522
int overhead_elements = aecpc->aec->
system_delay
/ PART_LEN -
539
aecpc->aec->
system_delay
-= overhead_elements * PART_LEN;
594
int16_t far_buf_size_ms = (int16_t) (aecpc->aec->
system_delay
/
899
int current_delay = nSampSndCard - aecpc->aec->
system_delay
;
aec_core.c
428
aec->
system_delay
= 0;
552
aec->
system_delay
-= PART_LEN;
574
// 1) If the
system_delay
indicates on being too small for processing a
580
// 5) Update the |
system_delay
| with respect to a full frame of FRAME_LEN
605
// |
system_delay
| indicates others.
606
if (aec->
system_delay
< FRAME_LEN) {
609
aec->
system_delay
-= WebRtc_MoveReadPtr(aec->far_buf, -(aec->mult + 1)) *
631
aec->
system_delay
-= FRAME_LEN;
[
all
...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/
audio_processing_unittest.cc
847
// the delay estimation. Therefore, we set a
system_delay
high enough to
848
// avoid that. The smallest
system_delay
you can report without flushing the
883
// the fake
system_delay
.
[
all
...]
Completed in 126 milliseconds