HomeSort by relevance Sort by last modified time
    Searched defs:far_pre_buf (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
echo_cancellation_internal.h 58 RingBuffer* far_pre_buf; // Time domain far-end pre-buffer. member in struct:__anon20505
  /external/webrtc/src/modules/audio_processing/aec/
echo_cancellation.c 91 void* far_pre_buf; // Time domain far-end pre-buffer. member in struct:__anon17141
129 if (WebRtc_CreateBuffer(&aecpc->far_pre_buf,
179 WebRtc_FreeBuffer(aecpc->far_pre_buf);
231 if (WebRtc_InitBuffer(aecpc->far_pre_buf) == -1) {
235 WebRtc_MoveReadPtr(aecpc->far_pre_buf, -PART_LEN); // Start overlap.
343 // Cast to float and write the time-domain data to |far_pre_buf|.
347 WebRtc_WriteBuffer(aecpc->far_pre_buf, farend_float,
351 while (WebRtc_available_read(aecpc->far_pre_buf) >= PART_LEN2) {
353 WebRtc_ReadBuffer(aecpc->far_pre_buf, (void**) &farend_float, tmp_farend,
358 // Rewind |far_pre_buf| PART_LEN samples for overlap before continuing
    [all...]

Completed in 1156 milliseconds