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

  /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(
multi_channel_resampler.h 39 void Resample(int frames, AudioBus* audio_bus);
42 // not call while Resample() is in progress.
47 // Resample() is in progress.
69 // the current Resample() call.
multi_channel_resampler_unittest.cc 72 resampler.Resample(1, audio_bus_.get());
81 resampler.Resample(frames, audio_bus_.get());
sinc_resampler.h 57 // Resample |frames| of data from |read_cb_| into |destination|.
58 void Resample(int frames, float* destination);
60 // The maximum size in frames that guarantees Resample() will only make a
65 // not call while Resample() is in progress.
70 // Resample() is in progress.
sinc_resampler_unittest.cc 68 resampler.Resample(resampler.ChunkSize(), resampled_destination.get());
74 resampler.Resample(max_chunk_size, resampled_destination.get());
88 resampler.Resample(resampler.ChunkSize() / 2, resampled_destination.get());
96 resampler.Resample(resampler.ChunkSize() / 2, resampled_destination.get());
306 TEST_P(SincResamplerTest, Resample) {
343 resampler.Resample(output_samples, resampled_destination.get());
audio_converter.cc 56 // Only resample if necessary since it's expensive.
148 resampler_->Resample(temp_dest->frames(), temp_dest);
sinc_resampler.cc 255 void SincResampler::Resample(int frames, float* destination) {
264 // Step (2) -- Resample! const what we can outside of the loop for speed. It
269 // |i| may be negative if the last Resample() call ended on an iteration
  /external/chromium_org/third_party/libjingle/source/talk/base/
virtualsocketserver.h 191 static Function* Resample(Function* f, double x1, double x2, uint32 samples);
virtualsocketserver.cc 1000 return Resample(Invert(Accumulate(f)), 0, 1, samples);
    [all...]
  /external/chromium_org/remoting/codec/
audio_encoder_opus.cc 27 // Opus doesn't support 44100 sampling rate so we always resample to 48kHz.
181 // Resample data if necessary.
187 resampler_->Resample(kFrameSamples, resampler_bus_.get());
  /external/chromium_org/media/audio/win/
audio_unified_win.cc     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js 426 //Set the buffer passed as our own, as we don't need to resample it:
860 //Resample a chunk of audio:
    [all...]

Completed in 158 milliseconds