summaryrefslogtreecommitdiffstats
path: root/include/xas/bank.h
Commit message (Collapse)AuthorAgeFilesLines
* Begin SOLA refactorsolaXANTRONIX Development2023-07-221-3/+31
|
* Rename 'count' argument to 'entry_size'XANTRONIX Development2022-03-141-1/+1
|
* Additional nomenclature rectitudeXANTRONIX Development2022-03-141-1/+1
|
* xas_bank_entry_duration(): use struct timevalXANTRONIX Development2022-03-071-1/+4
|
* Implement xas_bank_entry_duration()XANTRONIX Development2022-03-071-0/+2
| | | | | Implement xas_bank_entry_duration() to return the number of PCM samples in a sample bank entry
* Implement xas_bank_player_set_flags()XANTRONIX Development2022-03-061-0/+6
| | | | | Implement xas_bank_player_set_flags() to allow setting certain playback flags, such as, XAS_BANK_PLAYER_LOOP
* Ensure default bank player gain is 1.0XANTRONIX Development2022-02-281-0/+2
|
* Allow setting bank player gain separatelyXANTRONIX Development2022-02-281-3/+3
|
* Implement xas_objectXANTRONIX Development2022-02-271-3/+8
| | | | | | | | | | | | | | | Changes: * Implement xas_object as a base "class" for all playback state objects; allow implementation of start() and stop() methods to control playback * Move code for setting gain, bank slot to a new method, xas_bank_player_select() * Remove code from xas_bank_player_start() setting gain, bank slot * Add xas_object header to each monaural playable object
* Implement xas_bank_load_file()XANTRONIX Development2022-02-231-0/+4
| | | | | Implement xas_bank_load_file() to load a sample from a RIFF file on disk into a sample bank
* Implement xas_bank_player typeXANTRONIX Development2022-02-231-11/+23
| | | | | | | | | | Changes: * Implement xas_bank_player type to decouple player state from sample storage, to allow multiple concurrent players against a single sample bank * Refactor examples/say.c to use xas_bank_player
* Implement xas_audio_format typeXANTRONIX Development2022-02-091-7/+6
| | | | | | | | | | | Changes: * Implement xas_audio_format struct to provide sample size, channels, and sample rate * Refactor argument order for most functions to allow a reasonable reading of argument types, when replacing three separate size_t arguments with one xas_audio_format object
* Better argument name thereXANTRONIX Development2022-02-031-1/+1
|
* Implement xas_bank_active()XANTRONIX Development2022-02-031-0/+2
| | | | | Implement xas_bank_active() to allow one to determine if a sample bank is currently active
* Initial implementation of src/bank.cXANTRONIX Development2022-02-021-0/+46
Initial implementation of src/bank.c to act as a sample bank