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

  /external/chromium_org/media/base/
audio_renderer_mixer_input.cc 84 int frames_filled = callback_->Render( local
88 if (frames_filled < audio_bus->frames()) {
90 frames_filled, audio_bus->frames() - frames_filled);
93 return frames_filled > 0 ? volume_ : 0;
  /external/chromium_org/media/audio/pulse/
pulse_output.cc 127 int frames_filled = 0; local
132 frames_filled = source_callback_->OnMoreData(
137 if (frames_filled < audio_bus_->frames()) {
139 frames_filled, audio_bus_->frames() - frames_filled);
pulse_unified.cc 153 int frames_filled = 0; local
164 frames_filled = source_callback_->OnMoreIOData(
171 if (frames_filled < output_bus_->frames()) {
173 frames_filled, output_bus_->frames() - frames_filled);
  /external/chromium_org/media/audio/cras/
cras_unified.cc 364 int frames_filled = source_callback_->OnMoreIOData( local
369 output_bus_->ToInterleaved(frames_filled, bytes_per_sample, output_samples);
371 return frames_filled;
383 int frames_filled = source_callback_->OnMoreData( local
389 frames_filled, bytes_per_frame_ / params_.channels(), buffer);
391 return frames_filled;
  /external/chromium_org/media/audio/android/
opensles_output.cc 325 int frames_filled = callback_->OnMoreData( local
327 if (frames_filled <= 0) {
336 audio_bus_->ToInterleaved(frames_filled,
341 frames_filled * audio_bus_->channels() * format_.bitsPerSample / 8;
  /external/chromium_org/media/audio/mac/
audio_low_latency_output_mac.cc 271 int frames_filled = 0; local
283 frames_filled = source_->OnMoreData(
291 frames_filled, format_.mBitsPerChannel / 8, audio_data);
  /external/chromium_org/media/audio/win/
waveout_output_win.cc 329 int frames_filled = callback_->OnMoreData( local
331 uint32 used = frames_filled * audio_bus_->channels() *
339 frames_filled, format_.Format.wBitsPerSample / 8, buffer->lpData);
audio_low_latency_output_win.cc 532 int frames_filled = source_->OnMoreData( local
534 uint32 num_filled_bytes = frames_filled * format_.Format.nBlockAlign;
543 frames_filled, bytes_per_sample, audio_data);
audio_unified_win.cc 924 int frames_filled = source_->OnMoreIOData( local
    [all...]
  /external/chromium_org/media/filters/
audio_renderer_impl_unittest.cc 327 TimeDelta CalculatePlayTime(int frames_filled) {
329 frames_filled * Time::kMicrosecondsPerSecond /
341 int frames_filled = ConsumeAllBufferedData(); local
349 EXPECT_NEAR(frames_filled, total_frames / playback_rate, kEpsilon);
352 TimeDelta audio_play_time = CalculatePlayTime(frames_filled);
audio_renderer_impl.h 121 void UpdateEarliestEndTime_Locked(int frames_filled,
audio_renderer_impl.cc 642 int frames_filled, const base::TimeDelta& playback_delay,
644 DCHECK_GT(frames_filled, 0);
647 static_cast<float>(frames_filled) * base::Time::kMicrosecondsPerSecond /
  /external/chromium_org/media/audio/alsa/
alsa_output.cc 363 int frames_filled = RunDataCallback( local
366 size_t packet_size = frames_filled * bytes_per_frame_;
383 frames_filled, bytes_per_sample_, packet->writable_data());

Completed in 2917 milliseconds