Searched refs:lengthIn (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/common_audio/resampler/ |
D | resampler.cc | 399 size_t lengthIn, in Push() argument 406 static_cast<int16_t*>(malloc(lengthIn * sizeof(int16_t) / 2)); in Push() 408 static_cast<int16_t*>(malloc(lengthIn * sizeof(int16_t) / 2)); in Push() 414 for (size_t i = 0; i < lengthIn; i += 2) { in Push() 420 lengthIn = lengthIn / 2; in Push() 425 res |= helper_left_->Push(left, lengthIn, out_left, maxLen / 2, in Push() 427 res |= helper_right_->Push(right, lengthIn, out_right, maxLen / 2, in Push() 460 memcpy(samplesOut, samplesIn, lengthIn * sizeof(int16_t)); in Push() 461 outLen = lengthIn; in Push() 464 if (maxLen < (lengthIn * 2)) { in Push() [all …]
|
/external/webrtc/common_audio/resampler/include/ |
D | resampler.h | 38 size_t lengthIn,
|