Searched refs:binary_near_history (Results 1 – 2 of 2) sorted by relevance
399 free(self->binary_near_history); in WebRtc_FreeBinaryDelayEstimator()400 self->binary_near_history = NULL; in WebRtc_FreeBinaryDelayEstimator()438 self->binary_near_history = static_cast<uint32_t*>( in WebRtc_CreateBinaryDelayEstimator()439 malloc((max_lookahead + 1) * sizeof(*self->binary_near_history))); in WebRtc_CreateBinaryDelayEstimator()440 if (self->binary_near_history == NULL || in WebRtc_CreateBinaryDelayEstimator()492 memset(self->binary_near_history, 0, in WebRtc_InitBinaryDelayEstimator()543 memmove(&(self->binary_near_history[1]), &(self->binary_near_history[0]), in WebRtc_ProcessBinarySpectrum()545 self->binary_near_history[0] = binary_near_spectrum; in WebRtc_ProcessBinarySpectrum()546 binary_near_spectrum = self->binary_near_history[self->lookahead]; in WebRtc_ProcessBinarySpectrum()
39 uint32_t* binary_near_history; member