| /third_party/alsa-lib/src/pcm/ |
| H A D | pcm_plugin.c | 91 static snd_pcm_sframes_t 101 static snd_pcm_sframes_t 111 snd_pcm_sframes_t 121 snd_pcm_sframes_t 138 static int snd_pcm_plugin_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_plugin_delay() 141 snd_pcm_sframes_t sd; in snd_pcm_plugin_delay() 185 static snd_pcm_sframes_t snd_pcm_plugin_rewindable(snd_pcm_t *pcm) in snd_pcm_plugin_rewindable() 190 snd_pcm_sframes_t snd_pcm_plugin_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_plugin_rewind() 193 snd_pcm_sframes_t n = snd_pcm_plugin_rewindable(pcm); in snd_pcm_plugin_rewind() 194 snd_pcm_sframes_t sframe in snd_pcm_plugin_rewind() [all...] |
| H A D | pcm_generic.h | 138 int snd_pcm_generic_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp); 139 snd_pcm_sframes_t snd_pcm_generic_forwardable(snd_pcm_t *pcm); 140 snd_pcm_sframes_t snd_pcm_generic_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 141 snd_pcm_sframes_t snd_pcm_generic_rewindable(snd_pcm_t *pcm); 142 snd_pcm_sframes_t snd_pcm_generic_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 146 snd_pcm_sframes_t snd_pcm_generic_writei(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size); 147 snd_pcm_sframes_t snd_pcm_generic_writen(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size); 148 snd_pcm_sframes_t snd_pcm_generic_readi(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size); 149 snd_pcm_sframes_t snd_pcm_generic_readn(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size); 150 snd_pcm_sframes_t snd_pcm_generic_mmap_commi [all...] |
| H A D | pcm_generic.c | 181 int snd_pcm_generic_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_generic_delay() 187 snd_pcm_sframes_t snd_pcm_generic_forwardable(snd_pcm_t *pcm) in snd_pcm_generic_forwardable() 193 snd_pcm_sframes_t snd_pcm_generic_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_generic_forward() 199 snd_pcm_sframes_t snd_pcm_generic_rewindable(snd_pcm_t *pcm) in snd_pcm_generic_rewindable() 205 snd_pcm_sframes_t snd_pcm_generic_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_generic_rewind() 235 snd_pcm_sframes_t snd_pcm_generic_writei(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size) in snd_pcm_generic_writei() 241 snd_pcm_sframes_t snd_pcm_generic_writen(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size) in snd_pcm_generic_writen() 247 snd_pcm_sframes_t snd_pcm_generic_readi(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size) in snd_pcm_generic_readi() 253 snd_pcm_sframes_t snd_pcm_generic_readn(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size) in snd_pcm_generic_readn() 259 snd_pcm_sframes_t snd_pcm_generic_mmap_commi [all...] |
| H A D | pcm_mmap.c | 35 snd_pcm_sframes_t appl_ptr = *pcm->appl.ptr; in snd_pcm_mmap_appl_backward() 53 snd_pcm_sframes_t hw_ptr = *pcm->hw.ptr; in snd_pcm_mmap_hw_backward() 69 static snd_pcm_sframes_t snd_pcm_mmap_write_areas(snd_pcm_t *pcm, in snd_pcm_mmap_write_areas() 84 snd_pcm_sframes_t result; in snd_pcm_mmap_write_areas() 93 return xfer > 0 ? (snd_pcm_sframes_t)xfer : result; in snd_pcm_mmap_write_areas() 98 return (snd_pcm_sframes_t)xfer; in snd_pcm_mmap_write_areas() 101 static snd_pcm_sframes_t snd_pcm_mmap_read_areas(snd_pcm_t *pcm, in snd_pcm_mmap_read_areas() 116 snd_pcm_sframes_t result; in snd_pcm_mmap_read_areas() 125 return xfer > 0 ? (snd_pcm_sframes_t)xfer : result; in snd_pcm_mmap_read_areas() 130 return (snd_pcm_sframes_t)xfe in snd_pcm_mmap_read_areas() [all...] |
| H A D | pcm_local.h | 171 int (*delay)(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp); /* locked */ 176 snd_pcm_sframes_t (*rewindable)(snd_pcm_t *pcm); /* locked */ 177 snd_pcm_sframes_t (*rewind)(snd_pcm_t *pcm, snd_pcm_uframes_t frames); /* locked */ 178 snd_pcm_sframes_t (*forwardable)(snd_pcm_t *pcm); /* locked */ 179 snd_pcm_sframes_t (*forward)(snd_pcm_t *pcm, snd_pcm_uframes_t frames); /* locked */ 180 snd_pcm_sframes_t (*writei)(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size); /* need own locking */ 181 snd_pcm_sframes_t (*writen)(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size); /* need own locking */ 182 snd_pcm_sframes_t (*readi)(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size); /* need own locking */ 183 snd_pcm_sframes_t (*readn)(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size); /* need own locking */ 184 snd_pcm_sframes_t (*avail_updat [all...] |
| H A D | pcm_share.c | 81 snd_pcm_sframes_t period_time; 82 snd_pcm_sframes_t buffer_time; 123 snd_pcm_sframes_t avail; in snd_pcm_share_slave_avail() 141 snd_pcm_sframes_t frames, safety_frames; in _snd_pcm_share_slave_forward() 142 snd_pcm_sframes_t min_frames, max_frames; in _snd_pcm_share_slave_forward() 205 snd_pcm_sframes_t hw_avail; in _snd_pcm_share_missing() 207 snd_pcm_sframes_t ready_missing; in _snd_pcm_share_missing() 230 snd_pcm_sframes_t slave_hw_avail = buffer_size - slave_avail; in _snd_pcm_share_missing() 231 snd_pcm_sframes_t safety_missing = slave_hw_avail - slave->safety_threshold; in _snd_pcm_share_missing() 233 snd_pcm_sframes_t er in _snd_pcm_share_missing() [all...] |
| H A D | pcm_null.c | 82 static snd_pcm_sframes_t snd_pcm_null_avail_update(snd_pcm_t *pcm) in snd_pcm_null_avail_update() 118 static int snd_pcm_null_delay(snd_pcm_t *pcm ATTRIBUTE_UNUSED, snd_pcm_sframes_t *delayp) in snd_pcm_null_delay() 181 static snd_pcm_sframes_t snd_pcm_null_rewindable(snd_pcm_t *pcm) in snd_pcm_null_rewindable() 186 static snd_pcm_sframes_t snd_pcm_null_forwardable(snd_pcm_t *pcm ATTRIBUTE_UNUSED) in snd_pcm_null_forwardable() 192 static snd_pcm_sframes_t snd_pcm_null_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_null_rewind() 207 static snd_pcm_sframes_t snd_pcm_null_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_null_forward() 227 static snd_pcm_sframes_t snd_pcm_null_xfer_areas(snd_pcm_t *pcm, in snd_pcm_null_xfer_areas() 237 static snd_pcm_sframes_t snd_pcm_null_writei(snd_pcm_t *pcm, const void *buffer ATTRIBUTE_UNUSED, snd_pcm_uframes_t size) in snd_pcm_null_writei() 242 static snd_pcm_sframes_t snd_pcm_null_writen(snd_pcm_t *pcm, void **bufs ATTRIBUTE_UNUSED, snd_pcm_uframes_t size) in snd_pcm_null_writen() 247 static snd_pcm_sframes_t snd_pcm_null_read [all...] |
| H A D | pcm_plugin.h | 33 typedef snd_pcm_sframes_t (*snd_pcm_slave_xfer_areas_undo_func_t) 69 snd_pcm_sframes_t snd_pcm_plugin_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 70 snd_pcm_sframes_t snd_pcm_plugin_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 77 snd_pcm_sframes_t snd_pcm_plugin_undo_read_generic 84 snd_pcm_sframes_t snd_pcm_plugin_undo_write_generic
|
| H A D | pcm_dsnoop.c | 135 snd_pcm_sframes_t diff; in snd_pcm_dsnoop_sync_ptr() 205 static int snd_pcm_dsnoop_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_dsnoop_delay() 326 static snd_pcm_sframes_t snd_pcm_dsnoop_rewindable(snd_pcm_t *pcm) in snd_pcm_dsnoop_rewindable() 331 static snd_pcm_sframes_t snd_pcm_dsnoop_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_dsnoop_rewind() 333 snd_pcm_sframes_t avail; in snd_pcm_dsnoop_rewind() 342 static snd_pcm_sframes_t snd_pcm_dsnoop_forwardable(snd_pcm_t *pcm) in snd_pcm_dsnoop_forwardable() 347 static snd_pcm_sframes_t snd_pcm_dsnoop_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_dsnoop_forward() 349 snd_pcm_sframes_t avail; in snd_pcm_dsnoop_forward() 358 static snd_pcm_sframes_t snd_pcm_dsnoop_writei(snd_pcm_t *pcm ATTRIBUTE_UNUSED, const void *buffer ATTRIBUTE_UNUSED, snd_pcm_uframes_t size ATTRIBUTE_UNUSED) in snd_pcm_dsnoop_writei() 363 static snd_pcm_sframes_t snd_pcm_dsnoop_write [all...] |
| H A D | pcm_file.c | 421 snd_pcm_sframes_t err = 0; in snd_pcm_file_write_bytes() 550 static snd_pcm_sframes_t snd_pcm_file_rewindable(snd_pcm_t *pcm) in snd_pcm_file_rewindable() 553 snd_pcm_sframes_t res = snd_pcm_rewindable(file->gen.slave); in snd_pcm_file_rewindable() 554 snd_pcm_sframes_t n = snd_pcm_bytes_to_frames(pcm, file->wbuf_used_bytes); in snd_pcm_file_rewindable() 560 static snd_pcm_sframes_t snd_pcm_file_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_file_rewind() 563 snd_pcm_sframes_t err; in snd_pcm_file_rewind() 578 static snd_pcm_sframes_t snd_pcm_file_forwardable(snd_pcm_t *pcm) in snd_pcm_file_forwardable() 581 snd_pcm_sframes_t res = snd_pcm_forwardable(file->gen.slave); in snd_pcm_file_forwardable() 582 snd_pcm_sframes_t n = snd_pcm_bytes_to_frames(pcm, file->wbuf_size_bytes - file->wbuf_used_bytes); in snd_pcm_file_forwardable() 588 static snd_pcm_sframes_t snd_pcm_file_forwar [all...] |
| H A D | pcm_rate.c | 640 snd_pcm_sframes_t slave_hw_ptr_diff; in snd_pcm_rate_sync_hwptr0() 641 snd_pcm_sframes_t last_slave_hw_ptr_frac; in snd_pcm_rate_sync_hwptr0() 692 static int snd_pcm_rate_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_rate_delay() 695 snd_pcm_sframes_t slave_delay; in snd_pcm_rate_delay() 748 static snd_pcm_sframes_t snd_pcm_rate_rewindable(snd_pcm_t *pcm ATTRIBUTE_UNUSED) in snd_pcm_rate_rewindable() 753 static snd_pcm_sframes_t snd_pcm_rate_forwardable(snd_pcm_t *pcm ATTRIBUTE_UNUSED) in snd_pcm_rate_forwardable() 758 static snd_pcm_sframes_t snd_pcm_rate_rewind(snd_pcm_t *pcm ATTRIBUTE_UNUSED, in snd_pcm_rate_rewind() 764 static snd_pcm_sframes_t snd_pcm_rate_forward(snd_pcm_t *pcm ATTRIBUTE_UNUSED, in snd_pcm_rate_forward() 780 snd_pcm_sframes_t result; in snd_pcm_rate_commit_area() 803 if (result < (snd_pcm_sframes_t)slave_siz in snd_pcm_rate_commit_area() [all...] |
| H A D | pcm_dshare.c | 166 snd_pcm_sframes_t diff; in snd_pcm_dshare_sync_ptr0() 258 static int snd_pcm_dshare_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_dshare_delay() 329 snd_pcm_sframes_t avail; in snd_pcm_dshare_start() 434 static snd_pcm_sframes_t snd_pcm_dshare_rewindable(snd_pcm_t *pcm) in snd_pcm_dshare_rewindable() 439 static snd_pcm_sframes_t snd_pcm_dshare_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_dshare_rewind() 441 snd_pcm_sframes_t avail; in snd_pcm_dshare_rewind() 450 static snd_pcm_sframes_t snd_pcm_dshare_forwardable(snd_pcm_t *pcm) in snd_pcm_dshare_forwardable() 455 static snd_pcm_sframes_t snd_pcm_dshare_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_dshare_forward() 457 snd_pcm_sframes_t avail; in snd_pcm_dshare_forward() 466 static snd_pcm_sframes_t snd_pcm_dshare_read [all...] |
| H A D | pcm_mmap_emul.c | 254 static snd_pcm_sframes_t 263 static snd_pcm_sframes_t 273 static snd_pcm_sframes_t 279 snd_pcm_sframes_t size; in sync_slave_write() 296 static snd_pcm_sframes_t 302 snd_pcm_sframes_t size; in sync_slave_read() 316 static snd_pcm_sframes_t 331 static snd_pcm_sframes_t snd_pcm_mmap_emul_avail_update(snd_pcm_t *pcm) in snd_pcm_mmap_emul_avail_update()
|
| H A D | pcm_ioplug.c | 60 snd_pcm_sframes_t hw; in snd_pcm_ioplug_hw_ptr_update() 110 static int snd_pcm_ioplug_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_ioplug_delay() 127 snd_pcm_sframes_t sd; in snd_pcm_ioplug_status() 600 static snd_pcm_sframes_t snd_pcm_ioplug_rewindable(snd_pcm_t *pcm) in snd_pcm_ioplug_rewindable() 605 static snd_pcm_sframes_t snd_pcm_ioplug_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_ioplug_rewind() 611 static snd_pcm_sframes_t snd_pcm_ioplug_forwardable(snd_pcm_t *pcm) in snd_pcm_ioplug_forwardable() 616 static snd_pcm_sframes_t snd_pcm_ioplug_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_ioplug_forward() 633 static snd_pcm_sframes_t ioplug_priv_transfer_areas(snd_pcm_t *pcm, in ioplug_priv_transfer_areas() 639 snd_pcm_sframes_t result; in ioplug_priv_transfer_areas() 652 static snd_pcm_sframes_t snd_pcm_ioplug_write [all...] |
| H A D | pcm_multi.c | 391 static snd_pcm_sframes_t snd_pcm_multi_avail_update(snd_pcm_t *pcm); 400 snd_pcm_sframes_t avail = snd_pcm_multi_avail_update(pcm); in snd_pcm_multi_status() 459 static int snd_pcm_multi_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_multi_delay() 462 snd_pcm_sframes_t d, dr = 0; in snd_pcm_multi_delay() 476 static snd_pcm_sframes_t snd_pcm_multi_avail_update(snd_pcm_t *pcm) in snd_pcm_multi_avail_update() 479 snd_pcm_sframes_t ret = LONG_MAX; in snd_pcm_multi_avail_update() 482 snd_pcm_sframes_t avail; in snd_pcm_multi_avail_update() 619 static snd_pcm_sframes_t snd_pcm_multi_rewindable(snd_pcm_t *pcm) in snd_pcm_multi_rewindable() 623 snd_pcm_sframes_t frames = LONG_MAX; in snd_pcm_multi_rewindable() 626 snd_pcm_sframes_t in snd_pcm_multi_rewindable() [all...] |
| H A D | pcm_meter.c | 109 snd_pcm_sframes_t frames; in snd_pcm_meter_update_main() 133 snd_pcm_sframes_t frames; in snd_pcm_meter_update_scope() 200 snd_pcm_sframes_t now; in snd_pcm_meter_thread() 331 static snd_pcm_sframes_t snd_pcm_meter_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_meter_rewind() 334 snd_pcm_sframes_t err = snd_pcm_rewind(meter->gen.slave, frames); in snd_pcm_meter_rewind() 340 static snd_pcm_sframes_t snd_pcm_meter_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_meter_forward() 343 snd_pcm_sframes_t err = INTERNAL(snd_pcm_forward)(meter->gen.slave, frames); in snd_pcm_meter_forward() 349 static snd_pcm_sframes_t snd_pcm_meter_mmap_commit(snd_pcm_t *pcm, in snd_pcm_meter_mmap_commit() 355 snd_pcm_sframes_t result = snd_pcm_mmap_commit(meter->gen.slave, offset, size); in snd_pcm_meter_mmap_commit() 365 static snd_pcm_sframes_t snd_pcm_meter_avail_updat [all...] |
| H A D | pcm_dmix.c | 393 snd_pcm_sframes_t diff; in snd_pcm_dmix_sync_ptr0() 482 static int snd_pcm_dmix_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_dmix_delay() 555 snd_pcm_sframes_t avail; in snd_pcm_dmix_start() 666 static snd_pcm_sframes_t snd_pcm_dmix_rewindable(snd_pcm_t *pcm) in snd_pcm_dmix_rewindable() 671 static snd_pcm_sframes_t snd_pcm_dmix_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_dmix_rewind() 753 static snd_pcm_sframes_t snd_pcm_dmix_forwardable(snd_pcm_t *pcm) in snd_pcm_dmix_forwardable() 758 static snd_pcm_sframes_t snd_pcm_dmix_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_dmix_forward() 760 snd_pcm_sframes_t avail; in snd_pcm_dmix_forward() 769 static snd_pcm_sframes_t snd_pcm_dmix_readi(snd_pcm_t *pcm ATTRIBUTE_UNUSED, void *buffer ATTRIBUTE_UNUSED, snd_pcm_uframes_t size ATTRIBUTE_UNUSED) in snd_pcm_dmix_readi() 774 static snd_pcm_sframes_t snd_pcm_dmix_read [all...] |
| H A D | pcm.c | 1152 int snd_pcm_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_delay() 1424 snd_pcm_sframes_t snd_pcm_rewindable(snd_pcm_t *pcm) in snd_pcm_rewindable() 1426 snd_pcm_sframes_t result; in snd_pcm_rewindable() 1455 snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_rewind() 1457 snd_pcm_sframes_t result; in snd_pcm_rewind() 1490 snd_pcm_sframes_t snd_pcm_forwardable(snd_pcm_t *pcm) in snd_pcm_forwardable() 1492 snd_pcm_sframes_t result; in snd_pcm_forwardable() 1522 EXPORT_SYMBOL snd_pcm_sframes_t INTERNAL(snd_pcm_forward)(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_forward() 1524 snd_pcm_sframes_t snd_pcm_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_forward() 1527 snd_pcm_sframes_t resul in snd_pcm_forward() [all...] |
| H A D | pcm_hw.c | 82 static snd_pcm_sframes_t snd_pcm_hw_avail_update(snd_pcm_t *pcm); 639 static int snd_pcm_hw_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp) in snd_pcm_hw_delay() 668 snd_pcm_sframes_t delay; in snd_pcm_hw_hwsync() 821 static snd_pcm_sframes_t snd_pcm_hw_rewindable(snd_pcm_t *pcm) in snd_pcm_hw_rewindable() 826 static snd_pcm_sframes_t snd_pcm_hw_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_hw_rewind() 841 static snd_pcm_sframes_t snd_pcm_hw_forwardable(snd_pcm_t *pcm) in snd_pcm_hw_forwardable() 846 static snd_pcm_sframes_t snd_pcm_hw_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames) in snd_pcm_hw_forward() 861 snd_pcm_sframes_t avail; in snd_pcm_hw_forward() 937 static snd_pcm_sframes_t snd_pcm_hw_writei(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size) in snd_pcm_hw_writei() 958 static snd_pcm_sframes_t snd_pcm_hw_write [all...] |
| /third_party/alsa-utils/alsaloop/ |
| H A D | alsaloop.h | 117 snd_pcm_sframes_t last_delay; 158 snd_pcm_sframes_t pitch_diff; 159 snd_pcm_sframes_t pitch_diff_min; 160 snd_pcm_sframes_t pitch_diff_max; 171 snd_pcm_sframes_t xrun_last_pdelay; 172 snd_pcm_sframes_t xrun_last_cdelay;
|
| /third_party/alsa-lib/include/ |
| H A D | pcm.h | 398 typedef long snd_pcm_sframes_t; typedef 557 int snd_pcm_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp); 560 snd_pcm_sframes_t snd_pcm_avail(snd_pcm_t *pcm); 561 snd_pcm_sframes_t snd_pcm_avail_update(snd_pcm_t *pcm); 562 int snd_pcm_avail_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *availp, snd_pcm_sframes_t *delayp); 563 snd_pcm_sframes_t snd_pcm_rewindable(snd_pcm_t *pcm); 564 snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames); 565 snd_pcm_sframes_t snd_pcm_forwardable(snd_pcm_t *pcm); 566 snd_pcm_sframes_t snd_pcm_forwar [all...] |
| H A D | pcm_ioplug.h | 142 snd_pcm_sframes_t (*pointer)(snd_pcm_ioplug_t *io); 146 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io, 201 int (*delay)(snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp);
|
| /third_party/alsa-utils/axfer/ |
| H A D | xfer-libasound-irq-rw.c | 62 snd_pcm_sframes_t handled_frame_count; in read_frames() 113 snd_pcm_sframes_t avail; in r_process_frames_blocking() 161 snd_pcm_sframes_t avail; in r_process_frames_nonblocking() 208 snd_pcm_sframes_t handled_frame_count; in write_frames() 257 snd_pcm_sframes_t avail; in w_process_frames_blocking() 321 snd_pcm_sframes_t avail; in w_process_frames_nonblocking()
|
| H A D | xfer-libasound-timer-mmap.c | 126 snd_pcm_sframes_t avail; in timer_mmap_process_frames() 131 snd_pcm_sframes_t consumed_count; in timer_mmap_process_frames() 191 if (avail < (snd_pcm_sframes_t)planned_count) { in timer_mmap_process_frames() 223 snd_pcm_sframes_t forward_count; in forward_appl_ptr() 306 snd_pcm_sframes_t rewind_count; in rewind_appl_ptr()
|
| /third_party/pulseaudio/src/tests/ |
| H A D | alsa-time-test.c | 36 snd_pcm_sframes_t last_avail = 0, last_delay = 0; in main() 157 snd_pcm_sframes_t avail, delay; in main() 183 /* assert(avail == (snd_pcm_sframes_t) snd_pcm_status_get_avail(status)); */ in main() 196 snd_pcm_sframes_t sframes; in main()
|