HomeSort by relevance Sort by last modified time
    Searched defs:Resample (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/webrtc/common_audio/resampler/
push_sinc_resampler.cc 33 int PushSincResampler::Resample(const int16_t* source,
42 Resample(NULL, source_length, float_buffer_.get(), destination_frames_);
48 int PushSincResampler::Resample(const float* source,
54 // Cache the source pointer. Calling Resample() will immediately trigger
59 // On the first pass, we call Resample() twice. During the first call, we
62 // ensuring that all later Resample() calls will only result in one input
73 resampler_->Resample(resampler_->ChunkSize(), destination);
75 resampler_->Resample(destination_frames_, destination);
82 // Run() was triggered more than once per Resample() call.
87 // discarded, as described in Resample()
    [all...]
push_resampler.cc 67 int PushResampler<T>::Resample(const T* src, int src_length, T* dst,
87 sinc_resampler_->Resample(src_left_.get(), src_length_mono,
89 sinc_resampler_right_->Resample(src_right_.get(), src_length_mono,
97 return sinc_resampler_->Resample(src, src_length, dst, dst_capacity);
  /external/chromium_org/media/base/
multi_channel_resampler.cc 45 void MultiChannelResampler::Resample(int frames, AudioBus* audio_bus) {
50 resamplers_[0]->Resample(frames, audio_bus->channel(0));
57 // only call ProvideInput() once when we resample this way.
63 // Resample each channel.
68 // used in a SincResampler kernel, this call to Resample() will only
73 resamplers_[i]->Resample(
sinc_resampler.cc 229 void SincResampler::Resample(int frames, float* destination) {
238 // Step (2) -- Resample! const what we can outside of the loop for speed. It
  /external/chromium_org/third_party/libjingle/source/talk/base/
virtualsocketserver.cc 1000 return Resample(Invert(Accumulate(f)), 0, 1, samples);
    [all...]
  /external/chromium_org/third_party/webrtc/base/
virtualsocketserver.cc 983 return Resample(Invert(Accumulate(f)), 0, 1, samples);
1027 VirtualSocketServer::Function* VirtualSocketServer::Resample(
    [all...]

Completed in 1217 milliseconds