/external/chromium_org/media/base/ |
audio_renderer_mixer_input.cc | 99 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/ |
pulse_output.cc | 131 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/cras/ |
cras_unified.cc | 360 int frames_filled = source_callback_->OnMoreData( local 364 output_bus_->ToInterleaved(frames_filled, bytes_per_sample, output_samples); 366 return frames_filled; 378 int frames_filled = source_callback_->OnMoreData( local 384 frames_filled, bytes_per_frame_ / params_.channels(), buffer); 386 return frames_filled;
|
/external/chromium_org/media/audio/android/ |
opensles_output.cc | 328 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/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 | 494 int frames_filled = source_->OnMoreData( local 496 uint32 num_filled_bytes = frames_filled * format_.Format.nBlockAlign; 505 frames_filled, bytes_per_sample, audio_data);
|
/external/chromium_org/media/filters/ |
audio_renderer_impl.h | 141 void UpdateEarliestEndTime_Locked(int frames_filled,
|
audio_renderer_impl_unittest.cc | 384 TimeDelta CalculatePlayTime(int frames_filled) { 386 frames_filled * Time::kMicrosecondsPerSecond / 398 int frames_filled = ConsumeAllBufferedData(); local 406 EXPECT_NEAR(frames_filled, total_frames / playback_rate, kEpsilon); 409 TimeDelta audio_play_time = CalculatePlayTime(frames_filled);
|
audio_renderer_impl.cc | 690 int frames_filled, const base::TimeDelta& playback_delay, 692 DCHECK_GT(frames_filled, 0); 695 static_cast<float>(frames_filled) * base::Time::kMicrosecondsPerSecond /
|
/external/chromium_org/media/audio/alsa/ |
alsa_output.cc | 362 int frames_filled = RunDataCallback( local 365 size_t packet_size = frames_filled * bytes_per_frame_; 382 frames_filled, bytes_per_sample_, packet->writable_data());
|