Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Return the original value from CompExchange* | Chris Robinson | 2014-03-09 | 3 | -30/+27 |
| | |||||
* | Remove the Apple-specific atomic function implementations. | Chris Robinson | 2014-03-09 | 1 | -36/+0 |
| | | | | | | I'm not sure if they're even used, but they were rather ugly and are set to get even uglier since they don't follow normal conventions (missing exchange, and cas not returning the original value). | ||||
* | Add an extension to support MSADPCM buffer formats | Chris Robinson | 2014-03-04 | 1 | -1/+3 |
| | |||||
* | Add an extension to alter the block alignment for buffer unpack/pack ops | Chris Robinson | 2014-03-04 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | This is for unpacking (reading, e.g. alBufferData) and packing (writing, e.g. alGetBufferSamplesSOFT) operations. The alignments are specified in sample frames, with 0 meaning the default (65 for IMA4, 1 otherwise). IMA4 alignment must be a multiple of 8, plus 1 (e.g. alignment = n*8 + 1), otherwise an error will occur during (un)packing. Chenging the block alignment does not affect already-loaded sample data, only future unpack/pack operations... so for example, this is perfectly valid: // Load mono IMA4 data with a block alignment of 1024 bytes, or 2041 sample // frames. alBufferi(buffer, AL_UNPACK_BLOCK_ALIGNMENT_SOFT, 2041); alBufferData(buffer, AL_FORMAT_MONO_IMA4, data, data_len, srate); alBufferi(buffer, AL_UNPACK_BLOCK_ALIGNMENT_SOFT, 0); | ||||
* | Move PATH_MAX fallback definitions to alMain.h | Chris Robinson | 2014-02-27 | 4 | -31/+0 |
| | |||||
* | Add back the missing PATH_MAX fallback | Chris Robinson | 2014-02-27 | 1 | -0/+10 |
| | |||||
* | Move OpenDataFile to helpers.c so other sources can use it | Chris Robinson | 2014-02-27 | 2 | -131/+133 |
| | |||||
* | Add an explicit cast to make Windows happy | Chris Robinson | 2014-02-26 | 1 | -2/+2 |
| | |||||
* | Don't fallback to relative filename handling if opening as absolute fails | Chris Robinson | 2014-02-26 | 1 | -26/+27 |
| | |||||
* | Expand environment variables for all config option values when loading | Chris Robinson | 2014-02-26 | 2 | -31/+77 |
| | |||||
* | Support environment variables in the hrtf_tables config value | Chris Robinson | 2014-02-25 | 1 | -4/+34 |
| | |||||
* | Attempt to restore the Neon-enhanced ApplyCoeffsStep method | Chris Robinson | 2014-02-23 | 1 | -7/+21 |
| | | | | Unable to test, but it hopefully works. | ||||
* | Revert "Apply HRTF coefficient stepping separately" | Chris Robinson | 2014-02-23 | 4 | -19/+74 |
| | | | | | | | | | This reverts commit 25b9c3d0c15e959d544f5d0ac7ea507ea5f6d69f. Conflicts: Alc/mixer_neon.c Unfortunately this also undoes the Neon-enhanced ApplyCoeffsStep method. | ||||
* | Move HRTF macros and function declarations to a separate header | Chris Robinson | 2014-02-23 | 4 | -0/+31 |
| | |||||
* | Move the default hrtf table to an external file | Chris Robinson | 2014-02-23 | 2 | -878/+12 |
| | |||||
* | Add a return value to FindHrtfFormat | Chris Robinson | 2014-02-23 | 2 | -7/+9 |
| | |||||
* | Check the hrtf config option earlier | Chris Robinson | 2014-02-23 | 1 | -8/+8 |
| | | | | | This is to make sure it tries to find an HRTF-compatible format before reseting the device, just like when using ALC_HRTF_SOFT. | ||||
* | Avoid checking the hrtf config option twice | Chris Robinson | 2014-02-23 | 1 | -2/+3 |
| | |||||
* | Search system-dependant data paths for relative hrtf table filenames | Chris Robinson | 2014-02-23 | 1 | -1/+126 |
| | |||||
* | Avoid using a global static buffer for config loading | Chris Robinson | 2014-02-23 | 1 | -3/+51 |
| | |||||
* | Fix indentation | Chris Robinson | 2014-02-23 | 1 | -20/+20 |
| | |||||
* | Fix a race condition in the mmdevapi message queue thread | Chris Robinson | 2014-02-09 | 1 | -0/+6 |
| | |||||
* | Add some extra traces to the mmdevapi backend | Chris Robinson | 2014-02-09 | 1 | -0/+8 |
| | | | | Trying to track down the cause of some reported errors. | ||||
* | Change the autowah to have a cutoff range of 20Hz to 20KHz | Chris Robinson | 2014-02-07 | 1 | -1/+1 |
| | | | | | | This is the same as allowed in the SF2 spec for its filter cutoff generator, which can be used for a wah effect in MIDI. It makes sense to use a similar range here. | ||||
* | Fix some types | Chris Robinson | 2014-02-07 | 2 | -4/+4 |
| | |||||
* | Slightly shorten a long line | Chris Robinson | 2014-02-02 | 1 | -1/+1 |
| | |||||
* | Rework MIDI clock timing | Chris Robinson | 2014-02-02 | 4 | -123/+62 |
| | | | | | | It's best to avoid using doubles in the mixer since the FPU's set to single- precision mode. The new clock timing is similar to the device clock timing, and should hopefully be less prone to drift caused by fp rounding errors. | ||||
* | Use nanosecond resolution for MIDI | Chris Robinson | 2014-02-01 | 1 | -2/+2 |
| | | | | | This makes the MIDI clock use the same resolution as the device clock and source latency and the device clock. | ||||
* | Remove an unnecessary special-case for the click removal | Chris Robinson | 2014-02-01 | 1 | -14/+1 |
| | |||||
* | Avoid duplicating code in alcGetIntegerv | Chris Robinson | 2014-02-01 | 1 | -241/+152 |
| | |||||
* | Add an alcGetInteger64vSOFT method and a way to get the device clock | Chris Robinson | 2014-02-01 | 1 | -2/+204 |
| | |||||
* | Keep track of a device clock time, based on the number of samples processed | Chris Robinson | 2014-02-01 | 2 | -0/+32 |
| | |||||
* | Properly fill the SF2 sample buffer on big endian | Chris Robinson | 2014-02-01 | 1 | -1/+1 |
| | |||||
* | Fix an infinite loop when loading SF2 samples on big endian machines | Chris Robinson | 2014-02-01 | 1 | -2/+5 |
| | |||||
* | Implement dry and wet mixers for Neon | Chris Robinson | 2014-01-26 | 4 | -5/+91 |
| | | | | Code provided by Philippe Simons <[email protected]>. | ||||
* | bufferQueue's Clear method doesn't take any parameters | Chris Robinson | 2014-01-19 | 1 | -1/+1 |
| | |||||
* | Clear the OpenSL buffer queue when stopping | Chris Robinson | 2014-01-19 | 1 | -2/+15 |
| | |||||
* | Check and trace INFO properties when reading them | Chris Robinson | 2014-01-19 | 1 | -3/+9 |
| | |||||
* | Include sys/sysconf.h if available for sysconf() | Chris Robinson | 2014-01-18 | 1 | -0/+3 |
| | |||||
* | Check for 0-sized sf2 structure arrays | Chris Robinson | 2014-01-17 | 1 | -18/+18 |
| | |||||
* | Remove redundancy in a couple error messages | Chris Robinson | 2014-01-17 | 1 | -2/+2 |
| | |||||
* | Put the version and irom storage into the Soundfont struct | Chris Robinson | 2014-01-17 | 1 | -13/+18 |
| | |||||
* | Fix a couple warning messages to show the correct instrument ID | Chris Robinson | 2014-01-17 | 1 | -8/+8 |
| | |||||
* | Partially handle the irom sub-chunk | Chris Robinson | 2014-01-17 | 1 | -3/+30 |
| | | | | Reject soundfonts that have ROM sample types without a valid irom sub-chunk. | ||||
* | Better handle original key and overriding root key | Chris Robinson | 2014-01-17 | 1 | -3/+10 |
| | |||||
* | Rename aftertouch to keypressure | Chris Robinson | 2014-01-17 | 2 | -3/+3 |
| | |||||
* | Add a config option to specify the extra MIDI volume scaling | Chris Robinson | 2014-01-17 | 1 | -3/+17 |
| | | | | The value specified is in decibels. | ||||
* | Use a proper struct for envelope properties | Chris Robinson | 2014-01-17 | 1 | -2/+2 |
| | |||||
* | Handle fontsound sample types using explicit enum values | Chris Robinson | 2014-01-15 | 2 | -13/+41 |
| | | | | | | Uses AL_MONO_SOFT, AL_RIGHT_SOFT, and AL_LEFT_SOFT. "Linked" samples types aren't explicitly supported due to being under-defined in the SF2 spec, nor are ROM samples currently. | ||||
* | Use ALfontsound_setPropi to set fontsound sample properties | Chris Robinson | 2014-01-15 | 2 | -13/+30 |
| | | | | And make sure the loop mode is properly translated for FluidSynth. |