diff options
author | XANTRONIX Development | 2022-03-07 13:10:41 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-03-07 13:10:41 -0500 |
commit | 563b5ba828d40c0c791e056504a53aa86ea359e1 (patch) | |
tree | b17b294c0c607859c3f0bf014d978e9203715df4 /include/xas | |
parent | 5f2b64b0c667f754131bce652339f401324d72ca (diff) | |
download | xas-563b5ba828d40c0c791e056504a53aa86ea359e1.tar.gz xas-563b5ba828d40c0c791e056504a53aa86ea359e1.tar.bz2 xas-563b5ba828d40c0c791e056504a53aa86ea359e1.zip |
Implement xas_bank_entry_duration()
Implement xas_bank_entry_duration() to return the number of PCM
samples in a sample bank entry
Diffstat (limited to 'include/xas')
-rw-r--r-- | include/xas/bank.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/xas/bank.h b/include/xas/bank.h index 716ad64..7828587 100644 --- a/include/xas/bank.h +++ b/include/xas/bank.h @@ -46,6 +46,8 @@ xas_bank *xas_bank_new(xas_audio_format format, void xas_bank_destroy(xas_bank *bank); +size_t xas_bank_entry_duration(xas_bank *bank, size_t entry_index); + ssize_t xas_bank_record(xas_bank *bank, xas_audio_stream *input, size_t entry_index, |