Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change some sample type values | Chris Robinson | 2011-04-27 | 1 | -4/+4 |
| | |||||
* | Add loopback device properties to the ALCenum list | Chris Robinson | 2011-04-27 | 1 | -0/+5 |
| | |||||
* | Add a couple in-progress extensions to the extension lists | Chris Robinson | 2011-04-27 | 1 | -3/+4 |
| | |||||
* | Add support for packed 24-bit samples | Chris Robinson | 2011-04-26 | 5 | -1/+170 |
| | |||||
* | Add a compatibility option to treat cone angles as half angles | Chris Robinson | 2011-04-22 | 3 | -2/+11 |
| | | | | | | | | | | All previous versions of the library treated the source cone angles as half angles, which is contrary to the spec. Setting the __ALSOFT_HALF_ANGLE_CONES environment variable to "true" or "1" restores the buggy behavior for compatibility with applications that expect it. This is not a config file option because new apps should not be made to depend on the old behavior. | ||||
* | Convert full-width cone angle source properties to half-width | Chris Robinson | 2011-04-22 | 1 | -3/+3 |
| | | | | | | The spec intends the property values to be the full angle encompassed by the cones, but the calculation interprets them as the angle from the center point. | ||||
* | Apply the device matrix to the multi-channel source matrix | Chris Robinson | 2011-04-14 | 1 | -72/+74 |
| | | | | | | | Mono sources and effects already output according to the available output device channels. Multiplying the device matrix with the source matrix results in a matrix that has the same effect as applying the source matrix followed by the device matrix, so all the channel remixing can be done in one place. | ||||
* | Fix LFE channel output | Chris Robinson | 2011-04-14 | 1 | -0/+3 |
| | |||||
* | Only set relevant device matrix entries | Chris Robinson | 2011-04-12 | 1 | -30/+35 |
| | |||||
* | Allow the buffer_samples API to be retrieved | Chris Robinson | 2011-04-10 | 2 | -0/+50 |
| | |||||
* | Move Convert_IMA4 into the template declarations | Chris Robinson | 2011-03-21 | 1 | -52/+13 |
| | |||||
* | Use nested loops when converting data | Chris Robinson | 2011-03-19 | 1 | -4/+7 |
| | |||||
* | Use more appropriate enum values | Chris Robinson | 2011-03-18 | 1 | -18/+22 |
| | |||||
* | Add some new format names | Chris Robinson | 2011-03-17 | 1 | -0/+22 |
| | |||||
* | Make LoadData return an error if the dst format is not valid or compatible | Chris Robinson | 2011-03-16 | 1 | -9/+4 |
| | |||||
* | Add alIsBufferFormatSupportedSOFT | Chris Robinson | 2011-03-16 | 2 | -0/+19 |
| | |||||
* | Combine ConvertInput* and ConvertOutput* helpers | Chris Robinson | 2011-03-16 | 1 | -123/+57 |
| | | | | | The UserFmt* enum types are a complete set of all recognized channel configs and sample types, so casting Fmt* enum types to them is valid. | ||||
* | Add alGetBufferSamplesSOFT | Chris Robinson | 2011-03-16 | 2 | -7/+113 |
| | |||||
* | Buffers made with alBufferSamplesSOFT always reference the internal format | Chris Robinson | 2011-03-16 | 1 | -14/+27 |
| | | | | This is not necessarily the same as the format of the originating data | ||||
* | Add alBufferSubSamplesSOFT | Chris Robinson | 2011-03-16 | 2 | -0/+68 |
| | |||||
* | Add alBufferSamplesSOFT, as an initial start to AL_SOFT_buffer_samples | Chris Robinson | 2011-03-16 | 3 | -2/+76 |
| | |||||
* | Pass the number of compressed frames to LoadData | Chris Robinson | 2011-03-16 | 1 | -21/+34 |
| | |||||
* | Use the defines for the UserFmt* and Fmt* types | Chris Robinson | 2011-03-16 | 2 | -25/+26 |
| | |||||
* | NoErr should be noErr | Chris Robinson | 2011-03-15 | 1 | -8/+8 |
| | |||||
* | Add a CoreAudio backend | Chris Robinson | 2011-03-15 | 6 | -1/+315 |
| | | | | Code courtesy of Garin Hiebert <[email protected]> | ||||
* | Move ALC_ENUMERATE_ALL_EXT enums to alc.h, to match other systems' headers | Chris Robinson | 2011-03-14 | 2 | -6/+9 |
| | |||||
* | Invert the device matrix row/column | Chris Robinson | 2011-03-13 | 2 | -41/+41 |
| | | | | It is accessed now as mat[target][source] | ||||
* | Remove more unneeded casts | Chris Robinson | 2011-03-13 | 1 | -5/+5 |
| | |||||
* | Remove unnecessary casts | Chris Robinson | 2011-03-13 | 1 | -2/+2 |
| | |||||
* | Rename ConvertData* to ConvertInput* | Chris Robinson | 2011-03-13 | 1 | -11/+11 |
| | |||||
* | Fix DSound floating-point sample assumptions | Chris Robinson | 2011-03-12 | 1 | -2/+2 |
| | |||||
* | Recognize ALC_EXT_DEDICATED with openal-info | Chris Robinson | 2011-03-12 | 1 | -1/+32 |
| | |||||
* | Use a loop to make sure the requested effect is not disabled | Chris Robinson | 2011-03-12 | 3 | -14/+16 |
| | |||||
* | Combine multiple lists into one | Chris Robinson | 2011-03-12 | 3 | -25/+19 |
| | |||||
* | Don't return enums for disabled effects | Chris Robinson | 2011-03-12 | 1 | -1/+21 |
| | |||||
* | Add dedicated to the list of excludefx | Chris Robinson | 2011-03-12 | 1 | -1/+2 |
| | |||||
* | Add support for ALC_EXT_DEDICATED | Chris Robinson | 2011-03-12 | 8 | -2/+217 |
| | |||||
* | Add ALC_EXT_DEDICATED to alext.h | Chris Robinson | 2011-03-12 | 1 | -0/+7 |
| | |||||
* | Add AL_EXT_FOLDBACK to alext.h | Chris Robinson | 2011-03-12 | 1 | -0/+17 |
| | |||||
* | Better protect the device for multi-threading access | Chris Robinson | 2011-03-12 | 1 | -35/+33 |
| | |||||
* | Implement a basic non-real-time loopback device | Chris Robinson | 2011-03-11 | 4 | -22/+360 |
| | | | | | | | | | | Currently it behaves just like a normal device except contexts are only processed during calls to alcRenderSamples. Additionally, the ALC_SYNC and ALC_REFRESH context attributes are not valid for these devices, and there are two new context attributes to specify the rendering format: ALC_FORMAT_TYPE and ALC_FORMAT_CHANNELS. These each take one of the type and channel enums added. This stuff is subject to change. | ||||
* | Fix a compiler warning about checking differing enum types | Chris Robinson | 2011-03-10 | 1 | -1/+1 |
| | | | | | One of the enum types is actually a subset of the other, and share the same integer values for compatible enumation values | ||||
* | Filter NaN sample values when converting floats and doubles | Chris Robinson | 2011-03-04 | 1 | -4/+4 |
| | |||||
* | Release 1.13openal-soft-1.13 | Chris Robinson | 2011-02-15 | 1 | -1/+1 |
| | |||||
* | Finalize the loop points extension as AL_SOFT_loop_points | Chris Robinson | 2011-02-09 | 4 | -9/+9 |
| | |||||
* | BufferFreq doesn't need to be a float | Chris Robinson | 2011-02-09 | 1 | -2/+2 |
| | |||||
* | Use the correct winmm device ID type | Chris Robinson | 2011-02-08 | 1 | -2/+2 |
| | |||||
* | Add an option to force usage of static MSVC runtimes | Chris Robinson | 2011-02-08 | 1 | -0/+11 |
| | |||||
* | Prevent unused variable warnings when monotonic clock isn't available | Chris Robinson | 2011-02-08 | 1 | -1/+1 |
| | |||||
* | Don't inline CalcLimitedHfRatio | Chris Robinson | 2011-02-07 | 1 | -1/+1 |
| |