aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/midi/sf2load.c
Commit message (Collapse)AuthorAgeFilesLines
* Add the last remaining "real-time" propertiesChris Robinson2013-12-291-6/+6
|
* Add chorus and reverb send propertiesChris Robinson2013-12-291-2/+4
|
* Add pan and attenuation propertiesChris Robinson2013-12-291-6/+9
|
* Add tuning propertiesChris Robinson2013-12-291-3/+3
|
* Add filter propertiesChris Robinson2013-12-291-5/+7
|
* Add modulation envelope propertiesChris Robinson2013-12-291-8/+8
|
* Add a few more pitch propertiesChris Robinson2013-12-291-3/+3
|
* Add volume envelope propertiesChris Robinson2013-12-291-8/+8
|
* Fix copy-paste errors in error messagesChris Robinson2013-12-291-2/+2
|
* Accumulate with default modulator amountsChris Robinson2013-12-291-0/+20
|
* Add support for the fontsound loop modeChris Robinson2013-12-291-3/+6
|
* Ensure the soundfont version is 2.xChris Robinson2013-12-281-2/+28
|
* Add alLoadSoundfontSOFT to load a soundfont via callbackChris Robinson2013-12-281-0/+1283
Some hefty caveats: This function is not thread-safe. In particular, the current context affecting the thread must not be changed, and the provided soundfont must not be altered while the function is executing. Ideally, this will be fixed. Error handling is poor. Some RIFF structure errors may not be caught (e.g. sub- chunks with sizes greater than the parent chunk allows for), and generated AL errors are ignored, possibly leading to resource leaks in certain situations. These should be fixed in time. There is minimal error checking on the provided soundfont ID. It does not ensure a valid ID has been provided, nor does it ensure the provided soundfont can be modified. These short-comings should be fixed eventually. Proper cleanup is the responsibility of the caller. The caller must get the preset objects from the soundfont before deleting it, and the fontsound objects from each preset before deleting them, to make sure all resources are properly deleted.