Searched refs:samplesOut (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/src/common_audio/resampler/ |
D | resampler.cc | 431 int Resampler::Push(const WebRtc_Word16 * samplesIn, int lengthIn, WebRtc_Word16* samplesOut, in Push() argument 478 samplesOut[i * 2] = out_left[i]; in Push() 479 samplesOut[i * 2 + 1] = out_right[i]; in Push() 500 memcpy(samplesOut, samplesIn, lengthIn * sizeof(WebRtc_Word16)); in Push() 508 WebRtcSpl_UpsampleBy2(samplesIn, lengthIn, samplesOut, (WebRtc_Word32*)state1_); in Push() 527 WebRtcSpl_Resample16khzTo48khz(samplesIn + i, samplesOut + i * 3, in Push() 544 WebRtcSpl_UpsampleBy2(tmp, lengthIn * 2, samplesOut, (WebRtc_Word32*)state2_); in Push() 570 WebRtcSpl_Resample16khzTo48khz(tmp + i, samplesOut + i * 3, in Push() 592 WebRtcSpl_UpsampleBy2(samplesIn, lengthIn, samplesOut, in Push() 596 WebRtcSpl_UpsampleBy2(samplesOut, outLen, tmp, (WebRtc_Word32*) state2_); in Push() [all …]
|
/external/chromium_org/third_party/opus/src/silk/ |
D | dec_API.c | 86 …opus_int16 *samplesOut, /* O Decoded output speech vector … in silk_Decode() argument 312 resample_out_ptr = samplesOut; in silk_Decode() 323 samplesOut[ n + 2 * i ] = resample_out_ptr[ i ]; in silk_Decode() 336 samplesOut[ 1 + 2 * i ] = resample_out_ptr[ i ]; in silk_Decode() 340 samplesOut[ 1 + 2 * i ] = samplesOut[ 0 + 2 * i ]; in silk_Decode()
|
D | API.h | 112 …opus_int16 *samplesOut, /* O Decoded output speech vector …
|
/external/webrtc/src/common_audio/resampler/include/ |
D | resampler.h | 80 int Push(const WebRtc_Word16* samplesIn, int lengthIn, WebRtc_Word16* samplesOut, 87 int Pull(WebRtc_Word16* samplesOut, int desiredLen, int &outLen);
|