Home
last modified time | relevance | path

Searched refs:shared_audio_engine_period_in_frames (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/crosvm/win_audio/src/win_audio_impl/
H A Dmod.rs265 shared_audio_engine_period_in_frames: self.device.incoming_buffer_size_in_frames, in get_audio_shared_format()
432 audio_shared_format.shared_audio_engine_period_in_frames, in new()
644 let shared_audio_engine_period_in_frames = in new() localVariable
648 check_endpoint_buffer_size(&audio_client, shared_audio_engine_period_in_frames) in new()
650 if incoming_buffer_size_in_frames % shared_audio_engine_period_in_frames != 0 { in new()
654 incoming_buffer_size_in_frames, shared_audio_engine_period_in_frames in new()
671 format.create_audio_shared_format(shared_audio_engine_period_in_frames); in new()
763 .shared_audio_engine_period_in_frames) in enough_available_frames()
777 .shared_audio_engine_period_in_frames as u32, in get_buffer()
801 .shared_audio_engine_period_in_frames, in playback_buffer()
[all …]
H A Dwave_format.rs219 shared_audio_engine_period_in_frames: usize, in create_audio_shared_format()
225 shared_audio_engine_period_in_frames, in create_audio_shared_format()
232 shared_audio_engine_period_in_frames, in create_audio_shared_format()
1073 audio_shared_format.shared_audio_engine_period_in_frames, in test_create_audio_shared_format_wave_format_ex()
1118 audio_shared_format.shared_audio_engine_period_in_frames, in test_create_audio_shared_format_wave_format_extensible()
H A Dasync_stream.rs168 audio_shared_format.shared_audio_engine_period_in_frames, in unregister_notification_client_and_make_new_device_renderer()
336 .ReleaseBuffer(format.shared_audio_engine_period_in_frames as u32, 0); in write_slice_to_wasapi_buffer_and_release_buffer()
/aosp_15_r20/external/crosvm/win_audio/src/
H A Dlib.rs81 pub shared_audio_engine_period_in_frames: usize, field
90 self.shared_audio_engine_period_in_frames * frame_size_bytes in get_shared_audio_engine_period_in_bytes()
199 shared_audio_engine_period_in_frames: frame_rate / 100, in new_playback_stream_and_get_shared_format()
256 shared_audio_engine_period_in_frames: frame_rate / 100, in new_async_playback_stream_and_get_shared_format()
306 shared_audio_engine_period_in_frames: frame_rate as usize / 100, in new_async_capture_stream_and_get_shared_format()
342 shared_audio_engine_period_in_frames: frame_rate / 100, in new_playback_stream_and_get_shared_format()
366 shared_audio_engine_period_in_frames: buffer_size * format.sample_bytes(), in new_async_playback_stream_and_get_shared_format()
H A Dintermediate_resampler_buffer.rs210 pub shared_audio_engine_period_in_frames: usize, field
224 shared_audio_engine_period_in_frames: usize, in new()
232 if (shared_audio_engine_period_in_frames * 1000) / to_sample_rate < 10 { in new()
243 let ring_buf_size = shared_audio_engine_period_in_frames * PERIOD_COUNT; in new()
245 let resampled_output_buffer_size = shared_audio_engine_period_in_frames * 8; in new()
254 shared_audio_engine_period_in_frames, in new()
342 let sample_threshold = self.shared_audio_engine_period_in_frames * self.num_channels; in get_next_period()