HomeSort by relevance Sort by last modified time
    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 103 int system_delay; // Current system delay buffered in AEC. member in struct:AecCore
aec_core.c 465 aec->system_delay = 0;
619 aec->system_delay -= elements_moved * PART_LEN;
632 // 1) If the system_delay indicates on being too small for processing a
639 // 5) Update the |system_delay| with respect to a full frame of FRAME_LEN
665 // |system_delay| indicates others.
666 if (aec->system_delay < FRAME_LEN) {
685 aec->system_delay -= FRAME_LEN;
812 int WebRtcAec_system_delay(AecCore* self) { return self->system_delay; }
816 self->system_delay = delay;
    [all...]
system_delay_unittest.cc 201 // |system_delay| is in the interval [75%, 100%] of what's reported on the
243 // |system_delay| is in the interval [60%, 100%] of what's last reported.
389 // |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:__anon37162
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 849 // the delay estimation. Therefore, we set a system_delay high enough to
850 // avoid that. The smallest system_delay you can report without flushing the
885 // the fake system_delay.
    [all...]

Completed in 871 milliseconds