Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't needlessly expose a variable for the backends | Chris Robinson | 2010-05-12 | 6 | -15/+13 |
| | |||||
* | Move incomplete extension declarations to alMain.h | Chris Robinson | 2010-05-12 | 2 | -66/+71 |
| | |||||
* | Scale output of effects to compensate for device down-mixing | Chris Robinson | 2010-05-12 | 3 | -6/+28 |
| | |||||
* | Use a UIntMap for the effect slot list | Chris Robinson | 2010-05-12 | 5 | -71/+56 |
| | |||||
* | Store the buffer's original data size and block alignment | Chris Robinson | 2010-05-12 | 2 | -18/+41 |
| | |||||
* | Store looping locally when mixing a source | Chris Robinson | 2010-05-12 | 1 | -2/+4 |
| | |||||
* | Simplify and fix applying a source offset | Chris Robinson | 2010-05-11 | 1 | -19/+8 |
| | |||||
* | Use a separate function to convert compressed bytes to frames | Chris Robinson | 2010-05-11 | 1 | -50/+52 |
| | |||||
* | Only a streaming source can have a processed buffer | Chris Robinson | 2010-05-11 | 1 | -3/+4 |
| | |||||
* | Rename a variable | Chris Robinson | 2010-05-11 | 1 | -5/+5 |
| | |||||
* | Look for the map insertion point using a binary search | Chris Robinson | 2010-05-10 | 1 | -4/+15 |
| | |||||
* | Use a simple loop to set multi-channel dry gains | Chris Robinson | 2010-05-09 | 1 | -9/+2 |
| | |||||
* | Use a map to store sources and buffers | Chris Robinson | 2010-05-01 | 10 | -183/+273 |
| | | | | And do a lookup using a binary search instead of linear | ||||
* | Use doubles instead of floats for the source offset calculations | Chris Robinson | 2010-04-28 | 1 | -42/+42 |
| | |||||
* | Combine AL and ALC function lists | Chris Robinson | 2010-04-28 | 2 | -145/+133 |
| | |||||
* | Get the offset even if the current buffer is 0 | Chris Robinson | 2010-04-28 | 1 | -5/+14 |
| | |||||
* | Only apply ambient gain to available output channels | Chris Robinson | 2010-04-27 | 2 | -10/+16 |
| | |||||
* | Add a couple missing values to the *GetEnumValue tables | Chris Robinson | 2010-04-25 | 2 | -0/+2 |
| | |||||
* | Add an option to scale the output mix | Chris Robinson | 2010-04-23 | 2 | -14/+24 |
| | |||||
* | Combine two loops into one | Chris Robinson | 2010-04-23 | 1 | -12/+7 |
| | |||||
* | Update stereodup config option comment | Chris Robinson | 2010-04-22 | 1 | -2/+2 |
| | |||||
* | Make stereo duplication a property of the device | Chris Robinson | 2010-04-20 | 4 | -6/+11 |
| | | | | Further, don't use it with mono/stereo output | ||||
* | Stop and start the backend device only if new attributes are being requested | Chris Robinson | 2010-04-17 | 1 | -15/+21 |
| | |||||
* | Disable PulseAudio's write callback when disconnecting | Chris Robinson | 2010-04-17 | 1 | -0/+1 |
| | |||||
* | Translate the source position separately | Chris Robinson | 2010-04-16 | 1 | -11/+7 |
| | | | | | | | | | | | | | | This is to handle the case where an app specifies the same values for the source and listener, and expects centered panning. This fails due to floating- point errors in the matrix, causing the result to be ever-so-slightly off of 0. This error would normally be hidden by the position normalization, which will not lengthen a distance shorter than the reference distance so the panning would be nearly imperceptible. But that also fails if the reference distance is set to 0, causing the position to expand to a full unit. Keep the 4x4 matrix calculations, however. It will still be useful for the requested listener matrix extension. | ||||
* | Return immediately when no layout is specified | Chris Robinson | 2010-04-11 | 1 | -0/+3 |
| | |||||
* | More type fixes | Chris Robinson | 2010-04-11 | 1 | -3/+3 |
| | |||||
* | Use a linear scaling when sending multi-channel sources to auxiliary slots | Chris Robinson | 2010-04-11 | 2 | -13/+9 |
| | |||||
* | Use proper types for some variables | Chris Robinson | 2010-04-11 | 1 | -6/+7 |
| | |||||
* | Only consider output speakers for the panning LUT | Chris Robinson | 2010-04-11 | 2 | -24/+72 |
| | |||||
* | Don't use LIB_INSTALL_DIR since that can be the full path | Chris Robinson | 2010-04-11 | 1 | -9/+6 |
| | |||||
* | Avoid reading buffer 0's size | Chris Robinson | 2010-04-10 | 1 | -1/+2 |
| | |||||
* | Avoid hard-coding the channel count | Chris Robinson | 2010-04-09 | 1 | -1/+2 |
| | |||||
* | Get the speaker arrangement before setting up the channel matrix | Chris Robinson | 2010-04-09 | 1 | -18/+19 |
| | |||||
* | Re-enable stereo duplication | Chris Robinson | 2010-04-08 | 1 | -0/+55 |
| | |||||
* | Use the proper type for the speaker-to-channel map | Chris Robinson | 2010-04-08 | 1 | -3/+3 |
| | |||||
* | Scale the ring modulator's mono input when expanding to multi-channel | Chris Robinson | 2010-04-08 | 1 | -9/+15 |
| | |||||
* | Store the panning LUT in the device | Chris Robinson | 2010-04-08 | 5 | -119/+115 |
| | |||||
* | Use a single layout for the virtual speakers | Chris Robinson | 2010-04-08 | 2 | -29/+7 |
| | | | | The downmix should probably be improved to take the angles into account | ||||
* | Apply a scalar to the output downmix so channels don't get more than a 100% mix | Chris Robinson | 2010-04-08 | 1 | -0/+16 |
| | | | | All channels get the same scalar so channel balance (should be) maintained | ||||
* | Set the device channel matrix when the device is reset | Chris Robinson | 2010-04-08 | 2 | -99/+100 |
| | |||||
* | Always mix internally at 8.1 | Chris Robinson | 2010-04-08 | 2 | -198/+151 |
| | | | | | The channels are remixed when writing to the output buffer. Stereo duplication is currently broken, but this can be restored later | ||||
* | Invert device channel map array | Chris Robinson | 2010-04-08 | 3 | -99/+124 |
| | |||||
* | Make some functions static | Chris Robinson | 2010-04-08 | 1 | -4/+4 |
| | |||||
* | Update alsoftrc.sample for the ring modulator | Chris Robinson | 2010-04-08 | 1 | -1/+1 |
| | |||||
* | Modulate with the requested waveform in the ring modulator | Chris Robinson | 2010-04-08 | 1 | -12/+86 |
| | |||||
* | Implement a basic high-pass cutoff filter in the ring modulator | Chris Robinson | 2010-04-08 | 1 | -6/+28 |
| | |||||
* | Implement a skeleton Ring Modulator effect | Chris Robinson | 2010-04-08 | 8 | -1/+262 |
| | |||||
* | Fix non-dynamic PortAudio | Chris Robinson | 2010-04-01 | 1 | -1/+0 |
| | |||||
* | Release 1.12.854openal-soft-1.12.854 | Chris Robinson | 2010-03-29 | 1 | -2/+2 |
| |