• Home
  • Raw
  • Download

Lines Matching refs:samplesOut

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()
605 WebRtcSpl_Resample16khzTo48khz(tmp + i, samplesOut + i * 3, in Push()
636 WebRtcSpl_DownsampleBy2(tmp, lengthIn, samplesOut, (WebRtc_Word32*)state2_); in Push()
662 WebRtcSpl_Resample8khzTo22khz(tmp + i, samplesOut + (i * 11) / 4, in Push()
686 WebRtcSpl_Resample8khzTo22khz(samplesIn + i, samplesOut + (i * 11) / 4, in Push()
708 WebRtcSpl_Resample16khzTo22khz(samplesIn + i, samplesOut + (i * 11) / 8, in Push()
734 WebRtcSpl_Resample22khzTo16khz(tmp + i, samplesOut + (i / 220) * 160, in Push()
761 WebRtcSpl_UpsampleBy2(samplesIn, lengthIn, samplesOut, (WebRtc_Word32*)state1_); in Push()
766 WebRtcSpl_Resample22khzTo16khz(samplesOut + i, tmp + (i / 220) * 160, in Push()
772 WebRtcSpl_UpsampleBy2(tmp, (lengthIn * 16) / 11, samplesOut, in Push()
786 WebRtcSpl_DownsampleBy2(samplesIn, lengthIn, samplesOut, (WebRtc_Word32*)state1_); in Push()
804 WebRtcSpl_Resample48khzTo16khz(samplesIn + i, samplesOut + i / 3, in Push()
820 WebRtcSpl_DownsampleBy2(tmp, lengthIn / 2, samplesOut, (WebRtc_Word32*)state2_); in Push()
848 WebRtcSpl_DownsampleBy2(tmp, outLen, samplesOut, (WebRtc_Word32*)state2_); in Push()
884 WebRtcSpl_DownsampleBy2(tmp_2, outLen, samplesOut, in Push()
909 WebRtcSpl_Resample48khzTo16khz(tmp + i, samplesOut + i / 3, in Push()
939 WebRtcSpl_DownsampleBy2(tmp, lengthIn, samplesOut, (WebRtc_Word32*)state2_); in Push()
960 WebRtcSpl_Resample22khzTo8khz(samplesIn + i, samplesOut + (i * 4) / 11, in Push()
982 WebRtcSpl_Resample22khzTo16khz(samplesIn + i, samplesOut + (i * 8) / 11, in Push()
1057 int Resampler::Pull(WebRtc_Word16* samplesOut, int desiredLen, int &outLen) in Pull() argument
1068 memcpy(samplesOut, out_buffer_, desiredLen * sizeof(WebRtc_Word32)); in Pull()