Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a skeleton backend for MMDevApi | Chris Robinson | 2011-05-15 | 1 | -0/+3 |
| | |||||
* | Add functions to get strings from the device format | Chris Robinson | 2011-05-15 | 1 | -0/+3 |
| | |||||
* | Remove an unused macro and rename another | Chris Robinson | 2011-05-07 | 1 | -3/+1 |
| | |||||
* | Some minor cleanups | Chris Robinson | 2011-05-07 | 1 | -1/+0 |
| | |||||
* | Add an option to reverse Z panning of mono sources | Chris Robinson | 2011-05-07 | 1 | -0/+1 |
| | | | | | | | | | | | Applications that are not built around OpenAL's orientation system need to convert their given vectors to it. Depending on how this is done, it can lead to proper stereo (left-right) panning with improper surround sound (front-back) panning, which thusly sounds correct with stereo output and incorrect with 4+ channel output. This option is intended to help fix playback of such applications on surround sound systems, without having to resort to forcing stereo output. | ||||
* | Remove the device channel matrix | Chris Robinson | 2011-05-06 | 1 | -2/+0 |
| | |||||
* | Fix device flag value | Chris Robinson | 2011-05-06 | 1 | -1/+1 |
| | |||||
* | Remove the head_dampen option | Chris Robinson | 2011-05-06 | 1 | -3/+0 |
| | | | | Now that HRTF is properly supported, it's not needed | ||||
* | Use function pointers to call the source mixer | Chris Robinson | 2011-05-06 | 3 | -1/+15 |
| | |||||
* | Fix a comment | Chris Robinson | 2011-05-05 | 1 | -1/+1 |
| | |||||
* | Use signed samples for 8-bit storage | Chris Robinson | 2011-05-05 | 2 | -9/+9 |
| | |||||
* | Add a device flag for channel config requests | Chris Robinson | 2011-05-03 | 1 | -0/+2 |
| | |||||
* | Use the same filters for mono sources and multi-channel | Chris Robinson | 2011-05-03 | 1 | -4/+4 |
| | |||||
* | Add a frequency-request device flag | Chris Robinson | 2011-05-03 | 1 | -0/+2 |
| | |||||
* | Check for the C99 restrict keyword | Chris Robinson | 2011-05-02 | 1 | -0/+8 |
| | | | | | GCC does not default to C99 mode yet, so does not know restrict, however it still allows using __restrict in its place | ||||
* | Implement HRTF mixers for multi-channel sources | Chris Robinson | 2011-05-02 | 2 | -4/+8 |
| | |||||
* | Use flags instead of separate bools | Chris Robinson | 2011-05-01 | 1 | -5/+8 |
| | |||||
* | Add an HRTF filter for mono sources | Chris Robinson | 2011-05-01 | 2 | -0/+5 |
| | | | | | | | | | | The data is based on the KEMAR HRTF data provided by MIT, which can be found at <http://sound.media.mit.edu/resources/KEMAR.html>. The compact measurements were used. See hrtf_tables.inc for more information. The filter is only available for stereo output, using a 44100hz playback rate. Note also that it currently only applies to mono sounds, and the cf_level and head_dampen config options are ignored while it is active. | ||||
* | Add some source fields for HRTF data | Chris Robinson | 2011-05-01 | 2 | -0/+10 |
| | |||||
* | Add a device flag for enabling HRTF | Chris Robinson | 2011-05-01 | 1 | -0/+3 |
| | |||||
* | Use the new format names when possible | Chris Robinson | 2011-04-29 | 1 | -21/+21 |
| | |||||
* | Add the SOFT moniker for the loopback extension functions and enums | Chris Robinson | 2011-04-28 | 1 | -8/+8 |
| | |||||
* | Reorder some cases | Chris Robinson | 2011-04-27 | 1 | -2/+2 |
| | |||||
* | Minor fix for 24-bit conversions to float and double | Chris Robinson | 2011-04-27 | 1 | -4/+4 |
| | |||||
* | Fix 24-bit sample loading for big-endian | Chris Robinson | 2011-04-27 | 1 | -6/+36 |
| | |||||
* | Change some sample type values | Chris Robinson | 2011-04-27 | 1 | -4/+4 |
| | |||||
* | Add support for packed 24-bit samples | Chris Robinson | 2011-04-26 | 4 | -1/+168 |
| | |||||
* | Add a compatibility option to treat cone angles as half angles | Chris Robinson | 2011-04-22 | 1 | -0/+2 |
| | | | | | | | | | | 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. | ||||
* | Allow the buffer_samples API to be retrieved | Chris Robinson | 2011-04-10 | 1 | -0/+44 |
| | |||||
* | 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 | 2 | -0/+74 |
| | |||||
* | 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 |
| | |||||
* | Add a CoreAudio backend | Chris Robinson | 2011-03-15 | 1 | -0/+3 |
| | | | | Code courtesy of Garin Hiebert <[email protected]> | ||||
* | Rename ConvertData* to ConvertInput* | Chris Robinson | 2011-03-13 | 1 | -11/+11 |
| | |||||
* | 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 | 2 | -14/+19 |
| | |||||
* | Don't return enums for disabled effects | Chris Robinson | 2011-03-12 | 1 | -1/+21 |
| | |||||
* | Add support for ALC_EXT_DEDICATED | Chris Robinson | 2011-03-12 | 5 | -1/+82 |
| | |||||
* | Implement a basic non-real-time loopback device | Chris Robinson | 2011-03-11 | 1 | -11/+46 |
| | | | | | | | | | | 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 |