Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Stop trying to read samples if there was an error | Chris Robinson | 2014-07-19 | 1 | -1/+1 |
| | |||||
* | Trace when a soundfont buffer goes unused | Chris Robinson | 2014-07-19 | 1 | -0/+3 |
| | |||||
* | Keep existing presets when loading in a new soundfont | Chris Robinson | 2014-07-19 | 1 | -3/+5 |
| | | | | | | Note that alLoadSoundfontSOFT doesn't currently allow using a soundfont with existing presets. This is for being able to load and stack multiple soundfonts for the default soundfont. | ||||
* | Use a macro to specify the fourcc formatters | Chris Robinson | 2014-07-18 | 1 | -21/+22 |
| | |||||
* | Properly scale the first HRTF pass-through coefficient | Chris Robinson | 2014-07-17 | 1 | -4/+8 |
| | | | | | Coefficients are scaled by 32767. For pass-through, this is attenuated by sqrt(0.5) to maintain a consistent perceived volume. | ||||
* | Cleanup some HRTF code | Chris Robinson | 2014-07-16 | 1 | -68/+53 |
| | | | | Use loops instead of duplicating code, rewrite some lines to be clearer. | ||||
* | Fix omni-directional moving HRTF coeffs | Chris Robinson | 2014-07-14 | 1 | -4/+4 |
| | |||||
* | Add a source radius property that determines the directionality of a sound | Chris Robinson | 2014-07-11 | 3 | -43/+70 |
| | | | | | | | | | At 0 distance from the listener, the sound is omni-directional. As the source and listener become 'radius' units apart, the sound becomes more directional. With HRTF, an omni-directional sound is handled using 0-delay, pass-through filter coefficients, which is blended with the real delay and coefficients as needed to become more directional. | ||||
* | Access the result macro parameter only once | Chris Robinson | 2014-07-06 | 1 | -3/+4 |
| | |||||
* | Rename some functions | Chris Robinson | 2014-07-06 | 1 | -8/+8 |
| | |||||
* | Store 4 modulators per map entry | Chris Robinson | 2014-07-06 | 1 | -16/+17 |
| | |||||
* | Allow ALsoundfont_deleteSoundfont to handle multiple buffers | Chris Robinson | 2014-07-06 | 1 | -0/+10 |
| | |||||
* | Don't require pre-declaring vector types | Chris Robinson | 2014-07-06 | 9 | -32/+31 |
| | |||||
* | AL_SOFT_source_length is complete | Chris Robinson | 2014-07-05 | 1 | -1/+1 |
| | |||||
* | Don't set modulators that have no destination | Chris Robinson | 2014-07-05 | 1 | -8/+10 |
| | |||||
* | Fix a couple checks | Chris Robinson | 2014-07-05 | 1 | -2/+2 |
| | |||||
* | Use a helper function to check valid MIDI controller inputs | Chris Robinson | 2014-07-04 | 2 | -5/+4 |
| | |||||
* | Set the 'valid' field when we have a valid buffer pointer | Chris Robinson | 2014-07-04 | 1 | -3/+1 |
| | |||||
* | Move an inline definition to a more appropriate source | Chris Robinson | 2014-07-04 | 2 | -2/+3 |
| | |||||
* | AL_SOFT_MSADPCM is functionally complete | Chris Robinson | 2014-07-03 | 1 | -1/+1 |
| | |||||
* | Remove an unnecessary cast | Chris Robinson | 2014-07-01 | 1 | -2/+2 |
| | |||||
* | Fix preset zone instrument header check | Chris Robinson | 2014-07-01 | 1 | -2/+2 |
| | |||||
* | Print SF2 text INFO chunks | Chris Robinson | 2014-07-01 | 2 | -51/+94 |
| | |||||
* | Warn about all unhandled soundfont generators | Chris Robinson | 2014-06-30 | 1 | -4/+4 |
| | |||||
* | Check the last preset and instrument properties within the loop | Chris Robinson | 2014-06-30 | 1 | -46/+10 |
| | |||||
* | Standardize some New/Delete methods | Chris Robinson | 2014-06-30 | 1 | -3/+3 |
| | |||||
* | Load soundfont samples into an ALbuffer | Chris Robinson | 2014-06-29 | 4 | -27/+36 |
| | | | | | Also remove ALsoundfont's now-unneeded sample storage functions and struct fields. | ||||
* | Store and use an ALbuffer for samples in an ALfontsound | Chris Robinson | 2014-06-29 | 1 | -3/+5 |
| | | | | | | | | The fontsound still maintains its own start, end, and loop offsets, so that the same buffer may be shared between multiple/all fontsounds. Ideally a single buffer should be used for all fontsounds to avoid memory fragmentation and help CPU caching, although higher quality soundfonts may need more memory than a single buffer can hold. | ||||
* | Only set the needed HRTF coefficients | Chris Robinson | 2014-06-21 | 1 | -2/+2 |
| | |||||
* | Avoid negating 'negative' variable names | Chris Robinson | 2014-06-20 | 1 | -2/+2 |
| | |||||
* | Don't pass the device to HRTF methods | Chris Robinson | 2014-06-20 | 3 | -15/+14 |
| | |||||
* | Don't overwrite the loopback device format with the HRTF format | Chris Robinson | 2014-06-20 | 1 | -8/+18 |
| | |||||
* | Remove unused variables | Chris Robinson | 2014-06-13 | 1 | -4/+0 |
| | |||||
* | Get the mixer and resampler functions when needed | Chris Robinson | 2014-06-13 | 2 | -77/+73 |
| | |||||
* | Combine the direct and send mixers | Chris Robinson | 2014-06-13 | 7 | -252/+95 |
| | |||||
* | Combine some dry and wet path types | Chris Robinson | 2014-06-13 | 6 | -82/+76 |
| | |||||
* | Pre-apply the crossfeed filter gain to the input sample coefficients | Chris Robinson | 2014-06-12 | 1 | -7/+6 |
| | |||||
* | Use floats for the BS2B filter | Chris Robinson | 2014-06-11 | 1 | -34/+34 |
| | |||||
* | Make bs2b_cross_feed inline | Chris Robinson | 2014-06-10 | 1 | -43/+2 |
| | |||||
* | Don't try to set fp precision with __control87_2 or _controlfp | Chris Robinson | 2014-06-08 | 1 | -10/+4 |
| | |||||
* | Print CPU extensions that are unavailable but requested | Chris Robinson | 2014-06-08 | 1 | -6/+6 |
| | |||||
* | Update a couple sources with the proper author | Chris Robinson | 2014-06-06 | 2 | -2/+2 |
| | |||||
* | Move InitiatePositionArrays to mixer_defs.h | Chris Robinson | 2014-06-06 | 4 | -45/+21 |
| | |||||
* | Add SSE2 and SSE4.1 linear resamplers | Timothy Arceri | 2014-06-06 | 6 | -5/+234 |
| | | | | | Currently the only way SSE 4.1 is detected is by using __get_cpuid, i.e. with GCC. Windows' IsProcessorFeaturePresent does not report SSE4.1 capabilities. | ||||
* | Avoid a loop when updating the source position variables | Chris Robinson | 2014-06-02 | 2 | -10/+12 |
| | |||||
* | Add an extension string for the in-progress source length extension | Chris Robinson | 2014-05-26 | 1 | -1/+2 |
| | | | | | This is the extension that allows you to get the full length of the source's buffer queue. | ||||
* | Don't print an ERR if pulse fails to get latency info due to no data | Chris Robinson | 2014-05-26 | 1 | -3/+8 |
| | | | | It just means it was called too quickly after starting. | ||||
* | Don't resume the backend if there's no contexts | Chris Robinson | 2014-05-24 | 1 | -10/+11 |
| | |||||
* | Move the active source's offset out of the direct params | Chris Robinson | 2014-05-24 | 1 | -2/+2 |
| | |||||
* | Mark a few more functions as const | Chris Robinson | 2014-05-23 | 1 | -4/+4 |
| |