Home
last modified time | relevance | path

Searched refs:ALIGN_CEIL64 (Results 1 – 3 of 3) sorted by relevance

/dports/multimedia/lives/lives-3.2.0/src/
H A Dpulse.c401 xseek = ALIGN_CEIL64(xseek, afile->achans * (afile->asampsize >> 3)); in pulse_audio_write_process()
463 pulsed->seek_pos = ALIGN_CEIL64(pulsed->seek_pos, qnt); in pulse_audio_write_process()
473 pulsed->seek_pos = ALIGN_CEIL64(pulsed->seek_pos - qnt, qnt); in pulse_audio_write_process()
523 pulsed->seek_pos = ALIGN_CEIL64(pulsed->seek_pos, qnt); in pulse_audio_write_process()
626 pad_bytes = ALIGN_CEIL64(pad_bytes - qnt, qnt); in pulse_audio_write_process()
678 pulsed->seek_pos = ALIGN_CEIL64(pulsed->seek_pos - qnt, qnt); in pulse_audio_write_process()
689 seek_start = ALIGN_CEIL64(seek_start - qnt, qnt); in pulse_audio_write_process()
694 pad_bytes = ALIGN_CEIL64(pad_bytes, qnt); in pulse_audio_write_process()
708 pulsed->seek_pos = ALIGN_CEIL64(seek_start, qnt); in pulse_audio_write_process()
742 pulsed->seek_pos = ALIGN_CEIL64(pulsed->seek_pos, qnt); in pulse_audio_write_process()
[all …]
H A Djack.c461 xseek = ALIGN_CEIL64(xseek, afile->achans * (afile->asampsize >> 3)); in audio_process()
654 seek_start = ALIGN_CEIL64(seek_start - qnt, qnt); in audio_process()
H A Dmain.h289 #define ALIGN_CEIL64(a, b) ((((int64_t)(a) + (int64_t)(b) - 1) / (int64_t)(b)) * (int64_t)(b)) macro