Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the stereodup option | Chris Robinson | 2012-04-29 | 1 | -17/+0 |
| | | | | There's better ways to do it now with "wide" sound sources. | ||||
* | Reorganize some ALsource fields | Chris Robinson | 2012-04-27 | 1 | -2/+2 |
| | |||||
* | Use a macro to declare the function and enum list members | Chris Robinson | 2012-04-20 | 1 | -447/+451 |
| | |||||
* | Combine ALCenum and ALenum lists | Chris Robinson | 2012-04-20 | 1 | -5/+263 |
| | |||||
* | Reorganize ALC functions and fixup some comments | Chris Robinson | 2012-04-20 | 1 | -392/+407 |
| | |||||
* | Remove some more hungarian notation | Chris Robinson | 2012-04-19 | 1 | -38/+38 |
| | |||||
* | Remove some more hungarian notation | Chris Robinson | 2012-04-19 | 1 | -30/+30 |
| | |||||
* | Remove hungarian notation from the device and context structs | Chris Robinson | 2012-04-19 | 1 | -9/+9 |
| | |||||
* | Read ALSOFT_TRAP_*ERROR when reading the config | Chris Robinson | 2012-04-16 | 1 | -21/+17 |
| | |||||
* | Don't error when querying unknown enums for the channel config and sample format | Chris Robinson | 2012-03-15 | 1 | -3/+2 |
| | |||||
* | Finalize ALC_SOFT_loopback | Chris Robinson | 2012-03-15 | 1 | -2/+2 |
| | |||||
* | Mark the GlobalContext pointer as volatile | Chris Robinson | 2012-03-14 | 1 | -1/+1 |
| | |||||
* | Initialize the default effect after opening the device | Chris Robinson | 2012-03-13 | 1 | -11/+16 |
| | |||||
* | Rename GetReverbEffect to LoadReverbPreset | Chris Robinson | 2012-03-13 | 1 | -4/+2 |
| | |||||
* | Use enums to specify the default channel configuration and sample type | Chris Robinson | 2012-03-13 | 1 | -5/+5 |
| | |||||
* | Initialize the default effect when opening the device and update it with the ↵ | Chris Robinson | 2012-03-13 | 1 | -5/+18 |
| | | | | other effect slots | ||||
* | Pass the device to InitializeEffect and return the error enum from it | Chris Robinson | 2012-03-13 | 1 | -1/+1 |
| | |||||
* | Pass a device to the effect update functions | Chris Robinson | 2012-03-13 | 1 | -1/+1 |
| | |||||
* | Rename ForcedEffect to DefaultEffect | Chris Robinson | 2012-03-13 | 1 | -6/+6 |
| | |||||
* | Finalize AL_SOFT_direct_channels | Chris Robinson | 2012-03-12 | 1 | -1/+1 |
| | |||||
* | Pin the DLL for Windows | Chris Robinson | 2012-03-08 | 1 | -2/+4 |
| | | | | | | | | The mmdevapi backend does not react well to being unloaded dynamically. It has a message-handling thread running in the background which can't quit before DllMain is called with DLL_PROCESS_DETACH, at which point it's too late to safely message and wait for it shutddown, thus it can continue running after the DLL is unloaded from memory. | ||||
* | Mark the device as running for capture, too | Chris Robinson | 2012-03-05 | 1 | -2/+7 |
| | |||||
* | Hold the list lock while calling the backend | Chris Robinson | 2012-03-05 | 1 | -11/+16 |
| | | | | Pretty ugly, but we mustn't hold the device lock | ||||
* | Use a separate backend callback to start playback of the device | Chris Robinson | 2012-03-05 | 1 | -11/+9 |
| | | | | | | | | | | | | This allows us to properly update the ALCdevice and its resources with the new parameters before starting playback, instead of expecting the mixer to block and wait after it has begun. This also lets us avoid holding the device lock while resetting and starting the device, which helps prevent lock inversion on some backends (ie, one thread locking A then B, and another thread locking B then A), ultimately allowing certain backends to asynchronously update the ALCdevice without risk of lockup. Capture still has issues here, however. | ||||
* | Avoid some uninitialized warnings | Chris Robinson | 2012-03-05 | 1 | -0/+3 |
| | |||||
* | Enforce range limits on periods and period_size. | Chris Robinson | 2012-03-04 | 1 | -2/+2 |
| | |||||
* | Make sure the device gets stopped when closing even if there's no contexts | Chris Robinson | 2012-03-02 | 1 | -7/+7 |
| | |||||
* | Make alcLoopbackOpenDeviceSOFT take a standard "device" name for a parameter | Chris Robinson | 2012-03-01 | 1 | -5/+6 |
| | |||||
* | Give "OpenAL Soft" for the standard device name | Chris Robinson | 2012-02-28 | 1 | -8/+10 |
| | |||||
* | Trace the name of the created device | Chris Robinson | 2012-02-27 | 1 | -1/+1 |
| | |||||
* | Use separate loops for getting and checking device attributes | Chris Robinson | 2012-02-25 | 1 | -42/+70 |
| | |||||
* | Use an enum for the device type | Chris Robinson | 2012-02-23 | 1 | -26/+23 |
| | |||||
* | Only probe for devices when a backend is loaded | Chris Robinson | 2012-02-20 | 1 | -3/+3 |
| | |||||
* | Always use "OpenAL Soft" for the short device enumeration list | Chris Robinson | 2012-02-20 | 1 | -30/+7 |
| | |||||
* | Remove the trailing double-underscore from a couple env vars | Chris Robinson | 2012-02-19 | 1 | -4/+4 |
| | |||||
* | Check for the ALSOFT_DRIVERS env var for a list of backend drivers | Chris Robinson | 2012-02-19 | 1 | -1/+2 |
| | | | | This overrides the 'drivers' config option | ||||
* | Add a COUNTOF macro to get the number of entries in a static array | Chris Robinson | 2012-02-19 | 1 | -7/+7 |
| | |||||
* | Fix a misnamed variable | Chris Robinson | 2012-02-19 | 1 | -5/+5 |
| | |||||
* | Print a warning if using the 'format' config option | Chris Robinson | 2012-02-19 | 1 | -46/+49 |
| | |||||
* | Only set a default slot for non-NULL effect types | Chris Robinson | 2012-02-18 | 1 | -3/+6 |
| | |||||
* | Add a device parameter to alcLoopbackOpenDeviceSOFT | Chris Robinson | 2012-02-15 | 1 | -3/+9 |
| | |||||
* | Add a device request flag for the sample type | Chris Robinson | 2012-02-15 | 1 | -6/+17 |
| | |||||
* | Separate the format config option into channels and sample-type | Chris Robinson | 2012-02-15 | 1 | -51/+102 |
| | |||||
* | Define a minimum output sample rate and warn if the config option goes below it | Chris Robinson | 2012-02-15 | 1 | -4/+8 |
| | |||||
* | Combine a couple if checks | Chris Robinson | 2012-02-15 | 1 | -9/+5 |
| | |||||
* | Support signed and unsigned 32-bit int output | Chris Robinson | 2012-02-14 | 1 | -0/+4 |
| | |||||
* | Use more proper enum names for the resampler | Chris Robinson | 2012-02-12 | 1 | -4/+4 |
| | |||||
* | Rename non_virtual_channels to direct_channels | Chris Robinson | 2012-02-09 | 1 | -2/+1 |
| | |||||
* | Don't enable BS2B for loopback devices | Chris Robinson | 2012-02-07 | 1 | -2/+0 |
| | |||||
* | Use an enum for static const values | Chris Robinson | 2012-01-31 | 1 | -4/+6 |
| |