Home | History | Annotate | Download | only in resampler

Lines Matching refs:destination

36                                    int16_t* destination,
44 FloatS16ToS16(float_buffer_.get(), destination_frames_, destination);
51 float* destination,
74 resampler_->Resample(resampler_->ChunkSize(), destination);
76 resampler_->Resample(destination_frames_, destination);
81 void PushSincResampler::Run(size_t frames, float* destination) {
89 std::memset(destination, 0, frames * sizeof(*destination));
95 std::memcpy(destination, source_ptr_, frames * sizeof(*destination));
98 destination[i] = static_cast<float>(source_ptr_int_[i]);