Home | History | Annotate | Download | only in base

Lines Matching refs:frames

45 void MultiChannelResampler::Resample(int frames, AudioBus* audio_bus) {
50 resamplers_[0]->Resample(frames, audio_bus->channel(0));
55 // channel. To ensure this, we chunk the number of requested frames into
59 while (output_frames_ready_ < frames) {
61 int frames_this_time = std::min(frames - output_frames_ready_, chunk_size);
72 // number of frames.
82 int frames,
93 DCHECK_EQ(frames, wrapped_resampler_audio_bus_->frames());
97 sizeof(*wrapped_resampler_audio_bus_->channel(channel)) * frames);