Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add index argument to bank entry change events | XANTRONIX Development | 2022-03-16 | 1 | -0/+5 |
| | |||||
* | Add index argument to xas_object_start(), stop() | XANTRONIX Development | 2022-03-16 | 1 | -2/+17 |
| | | | | | | | | | | | Changes: * Refactor all start, stop dispatch methods to accept an index argument, whether it is used or not * Use 'index' slot of xas_seq_event to store index to pass to xas_object_start(), xas_object_stop() for start and stop events | ||||
* | Fix unused argument warning | XANTRONIX Development | 2022-03-16 | 1 | -1/+1 |
| | |||||
* | Use xas_object_init() for new banks | XANTRONIX Development | 2022-03-16 | 1 | -0/+2 |
| | |||||
* | Rename 'count' argument to 'entry_size' | XANTRONIX Development | 2022-03-14 | 1 | -5/+5 |
| | |||||
* | Additional nomenclature rectitude | XANTRONIX Development | 2022-03-14 | 1 | -3/+3 |
| | |||||
* | Remove unnecessary argument from callbacks | XANTRONIX Development | 2022-03-14 | 1 | -3/+2 |
| | |||||
* | Make xas_bank_player_start() always start from 0 | XANTRONIX Development | 2022-03-13 | 1 | -4/+0 |
| | |||||
* | Fix incorrect xas_bank_entry_duration() | XANTRONIX Development | 2022-03-07 | 1 | -3/+7 |
| | |||||
* | Don't reset player entry to 0 on stop | XANTRONIX Development | 2022-03-07 | 1 | -1/+0 |
| | |||||
* | xas_bank_entry_duration(): use struct timeval | XANTRONIX Development | 2022-03-07 | 1 | -2/+6 |
| | |||||
* | Implement xas_bank_entry_duration() | XANTRONIX Development | 2022-03-07 | 1 | -0/+6 |
| | | | | | Implement xas_bank_entry_duration() to return the number of PCM samples in a sample bank entry | ||||
* | Implement entry_by_index() in src/bank.c | XANTRONIX Development | 2022-03-07 | 1 | -3/+10 |
| | | | | | Implement entry_by_index() in src/bank.c to provide a single means of obtaining a pointer to a xas_bank_entry object | ||||
* | Implement xas_bank_player_set_flags() | XANTRONIX Development | 2022-03-06 | 1 | -1/+12 |
| | | | | | Implement xas_bank_player_set_flags() to allow setting certain playback flags, such as, XAS_BANK_PLAYER_LOOP | ||||
* | Always return 0 from xas_bank_player_stop() | XANTRONIX Development | 2022-03-06 | 1 | -1/+1 |
| | |||||
* | Don't set gain to 0 on stopping sample bank player | XANTRONIX Development | 2022-03-06 | 1 | -1/+0 |
| | |||||
* | Destroy managed spatial scene objects | XANTRONIX Development | 2022-03-01 | 1 | -0/+1 |
| | |||||
* | Set stream_new callback for audible object types | XANTRONIX Development | 2022-02-28 | 1 | -3/+4 |
| | |||||
* | Ensure default bank player gain is 1.0 | XANTRONIX Development | 2022-02-28 | 1 | -1/+1 |
| | |||||
* | Allow setting bank player gain separately | XANTRONIX Development | 2022-02-28 | 1 | -6/+23 |
| | |||||
* | Implement xas_object | XANTRONIX Development | 2022-02-27 | 1 | -5/+13 |
| | | | | | | | | | | | | | | | 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 Development | 2022-02-23 | 1 | -0/+32 |
| | | | | | Implement xas_bank_load_file() to load a sample from a RIFF file on disk into a sample bank | ||||
* | Avoid xas_bank_record() infinite loop | XANTRONIX Development | 2022-02-23 | 1 | -0/+2 |
| | |||||
* | Ensure xas_bank_record() uses same audio format | XANTRONIX Development | 2022-02-23 | 1 | -0/+7 |
| | |||||
* | Implement xas_bank_player type | XANTRONIX Development | 2022-02-23 | 1 | -37/+74 |
| | | | | | | | | | | 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 type | XANTRONIX Development | 2022-02-09 | 1 | -24/+20 |
| | | | | | | | | | | | 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 | ||||
* | don't forget to adjust gain on sample playback | XANTRONIX Development | 2022-02-03 | 1 | -5/+9 |
| | |||||
* | i'm a dingus cat :333 | XANTRONIX Development | 2022-02-03 | 1 | -1/+3 |
| | |||||
* | holy shit idk what just happened but it works | XANTRONIX Development | 2022-02-03 | 1 | -28/+65 |
| | |||||
* | Implement xas_bank_active() | XANTRONIX Development | 2022-02-03 | 1 | -0/+4 |
| | | | | | Implement xas_bank_active() to allow one to determine if a sample bank is currently active | ||||
* | that can fit on a single line | XANTRONIX Development | 2022-02-03 | 1 | -2/+1 |
| | |||||
* | Shorten he name of XAS_AUDIO_ constants | XANTRONIX Development | 2022-02-03 | 1 | -1/+1 |
| | |||||
* | Initial implementation of src/bank.c | XANTRONIX Development | 2022-02-02 | 1 | -0/+109 |
Initial implementation of src/bank.c to act as a sample bank |