Searched refs:frames_filled (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/media/base/
H A Daudio_renderer_mixer_input.cc99 int frames_filled = callback_->Render( local
103 if (frames_filled < audio_bus->frames()) {
105 frames_filled, audio_bus->frames() - frames_filled);
108 return frames_filled > 0 ? volume_ : 0;
/external/chromium_org/media/audio/pulse/
H A Dpulse_output.cc131 int frames_filled = 0; local
135 frames_filled = source_callback_->OnMoreData(
139 if (frames_filled < audio_bus_->frames()) {
141 frames_filled, audio_bus_->frames() - frames_filled);
/external/chromium_org/media/audio/android/
H A Dopensles_output.cc328 int frames_filled = callback_->OnMoreData( local
330 if (frames_filled <= 0) {
339 audio_bus_->ToInterleaved(frames_filled,
344 frames_filled * audio_bus_->channels() * format_.bitsPerSample / 8;
/external/chromium_org/media/audio/cras/
H A Dcras_unified.cc308 int frames_filled = source_callback_->OnMoreData( local
314 frames_filled, bytes_per_frame_ / params_.channels(), buffer);
316 return frames_filled;
/external/chromium_org/media/audio/win/
H A Dwaveout_output_win.cc329 int frames_filled = callback_->OnMoreData( local
331 uint32 used = frames_filled * audio_bus_->channels() *
339 frames_filled, format_.Format.wBitsPerSample / 8, buffer->lpData);
H A Daudio_low_latency_output_win.cc506 int frames_filled = source_->OnMoreData( local
508 uint32 num_filled_bytes = frames_filled * format_.Format.nBlockAlign;
517 frames_filled, bytes_per_sample, audio_data);
/external/chromium_org/media/audio/alsa/
H A Dalsa_output.cc362 int frames_filled = RunDataCallback( local
365 size_t packet_size = frames_filled * bytes_per_frame_;
382 frames_filled, bytes_per_sample_, packet->writable_data());

Completed in 514 milliseconds