Searched refs:samplesOut (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/common_audio/resampler/ |
D | resampler.cc | 405 int16_t* samplesOut, size_t maxLen, size_t &outLen) in Push() argument 442 samplesOut[i * 2] = out_left[i]; in Push() 443 samplesOut[i * 2 + 1] = out_right[i]; in Push() 464 memcpy(samplesOut, samplesIn, lengthIn * sizeof(int16_t)); in Push() 472 WebRtcSpl_UpsampleBy2(samplesIn, lengthIn, samplesOut, (int32_t*)state1_); in Push() 491 WebRtcSpl_Resample16khzTo48khz(samplesIn + i, samplesOut + i * 3, in Push() 508 WebRtcSpl_UpsampleBy2(tmp, lengthIn * 2, samplesOut, (int32_t*)state2_); in Push() 534 WebRtcSpl_Resample16khzTo48khz(tmp + i, samplesOut + i * 3, in Push() 556 WebRtcSpl_UpsampleBy2(samplesIn, lengthIn, samplesOut, in Push() 560 WebRtcSpl_UpsampleBy2(samplesOut, outLen, tmp, (int32_t*) state2_); in Push() [all …]
|
/external/libopus/silk/ |
D | dec_API.c | 87 …opus_int16 *samplesOut, /* O Decoded output speech vector … in silk_Decode() argument 268 samplesOut1_tmp[ 0 ] = samplesOut; in silk_Decode() 269 samplesOut1_tmp[ 1 ] = samplesOut + channel_state[ 0 ].frame_length + 2; in silk_Decode() 325 resample_out_ptr = samplesOut; in silk_Decode() 333 …OPUS_COPY(samplesOut1_tmp_storage2, samplesOut, decControl->nChannelsInternal*(channel_state[ 0 ].… in silk_Decode() 345 samplesOut[ n + 2 * i ] = resample_out_ptr[ i ]; in silk_Decode() 358 samplesOut[ 1 + 2 * i ] = resample_out_ptr[ i ]; in silk_Decode() 362 samplesOut[ 1 + 2 * i ] = samplesOut[ 0 + 2 * i ]; in silk_Decode()
|
D | API.h | 113 …opus_int16 *samplesOut, /* O Decoded output speech vector …
|
/external/webrtc/webrtc/common_audio/resampler/include/ |
D | resampler.h | 41 int Push(const int16_t* samplesIn, size_t lengthIn, int16_t* samplesOut,
|