Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Pre-apply the crossfeed filter gain to the input sample coefficients | Chris Robinson | 2014-06-12 | 1 | -19/+10 |
| | |||||
* | Use floats for the BS2B filter | Chris Robinson | 2014-06-11 | 1 | -10/+10 |
| | |||||
* | Make bs2b_cross_feed inline | Chris Robinson | 2014-06-10 | 1 | -2/+33 |
| | |||||
* | Add SSE2 and SSE4.1 linear resamplers | Timothy Arceri | 2014-06-06 | 1 | -1/+2 |
| | | | | | Currently the only way SSE 4.1 is detected is by using __get_cpuid, i.e. with GCC. Windows' IsProcessorFeaturePresent does not report SSE4.1 capabilities. | ||||
* | Avoid a loop when updating the source position variables | Chris Robinson | 2014-06-02 | 1 | -0/+2 |
| | |||||
* | Add an option to get the length of a source's full queue | Chris Robinson | 2014-05-25 | 1 | -0/+95 |
| | | | | | This simplifies keeping track how much a source has buffered in its queue, which reduces a bunch of unnecessary book keeping the app would have to do. | ||||
* | Move the active source's offset out of the direct params | Chris Robinson | 2014-05-24 | 2 | -2/+2 |
| | |||||
* | Mark a few more functions as const | Chris Robinson | 2014-05-23 | 2 | -8/+8 |
| | |||||
* | Rename CONST_FUNC and PRINTF_STYLE, and fix non-GNU AL_PRINT | Chris Robinson | 2014-05-23 | 1 | -10/+10 |
| | |||||
* | AL_SOFT_block_alignment is now considered done | Chris Robinson | 2014-05-22 | 1 | -6/+0 |
| | |||||
* | Use the first non-0-length buffer when starting a source | Chris Robinson | 2014-05-22 | 1 | -1/+1 |
| | |||||
* | Use an unsigned type for the win32 size_t formatter | Chris Robinson | 2014-05-22 | 1 | -1/+1 |
| | |||||
* | Mark some functions as const | Chris Robinson | 2014-05-22 | 1 | -5/+7 |
| | |||||
* | Add some asserts to verify block alignment for conversion | Chris Robinson | 2014-05-20 | 1 | -0/+8 |
| | |||||
* | Return a sample pointer from resamplers | Chris Robinson | 2014-05-19 | 2 | -5/+6 |
| | | | | Both resampling and filtering now avoid copying samples when they no-op. | ||||
* | Put per-channel filter properties together | Chris Robinson | 2014-05-19 | 1 | -8/+12 |
| | |||||
* | Move an HRTF mixer parameter and shorten a couple variable names | Chris Robinson | 2014-05-18 | 1 | -3/+3 |
| | |||||
* | Don't pass the SendParams to the wet-path mixer | Chris Robinson | 2014-05-18 | 1 | -11/+13 |
| | |||||
* | Don't pass the DirectParams to the dry-path mixer | Chris Robinson | 2014-05-18 | 1 | -12/+13 |
| | |||||
* | Use different parameters for HRTF mixers | Chris Robinson | 2014-05-18 | 2 | -1/+9 |
| | |||||
* | Pass some DirectParams as function parameters | Chris Robinson | 2014-05-18 | 1 | -2/+3 |
| | |||||
* | Add a ALfilterState method to process multiple samples at once | Chris Robinson | 2014-05-18 | 2 | -0/+7 |
| | |||||
* | Reset filter properties when setting a null filter type | Chris Robinson | 2014-05-17 | 1 | -0/+6 |
| | |||||
* | Support the band-pass filter | Chris Robinson | 2014-05-17 | 1 | -1/+84 |
| | |||||
* | Apply high-pass source filters as needed | Chris Robinson | 2014-05-17 | 3 | -0/+20 |
| | |||||
* | Implementing handling high-pass filter properties | Chris Robinson | 2014-05-17 | 2 | -1/+78 |
| | |||||
* | Add a flag to specify when the low-pass filter needs to apply | Chris Robinson | 2014-05-17 | 1 | -13/+21 |
| | |||||
* | Document the different filter types, and combine some split lines | Chris Robinson | 2014-05-17 | 2 | -36/+20 |
| | |||||
* | Rename freq_scale parameter to freq_mult | Chris Robinson | 2014-05-17 | 2 | -3/+3 |
| | |||||
* | Initialize newformat to AL_NONE instead of a valid format | Chris Robinson | 2014-05-15 | 1 | -6/+2 |
| | |||||
* | Add a couple asserts to ensure a proper buffer | Chris Robinson | 2014-05-14 | 1 | -0/+3 |
| | | | | | | It should not be possible for a playing or paused source to not have a valid buffer, but Clang's static analyzer doesn't know that. Hopefully an assert will convince it. | ||||
* | Make RefCount a non-integer type | Chris Robinson | 2014-05-14 | 8 | -32/+32 |
| | | | | | It should only be accessed through the appropriate functions to ensure proper atomicity. | ||||
* | Add HF Reference as a filter property | Chris Robinson | 2014-05-14 | 3 | -0/+6 |
| | |||||
* | Make LOWPASSFREQREF a float value | Chris Robinson | 2014-05-11 | 2 | -3/+3 |
| | |||||
* | Store the filter reference frequency in the source | Chris Robinson | 2014-05-11 | 2 | -0/+4 |
| | |||||
* | Avoid locking the mixer when unqueueing buffers | Chris Robinson | 2014-05-11 | 1 | -4/+16 |
| | |||||
* | Avoid accessing the source's buffer queue head multiple times | Chris Robinson | 2014-05-11 | 1 | -17/+16 |
| | |||||
* | Use a struct to store the source's direct gain/gainhf properties | Chris Robinson | 2014-05-11 | 2 | -9/+10 |
| | |||||
* | Avoid locking the mixer while queueing buffers onto a source. | Chris Robinson | 2014-05-10 | 1 | -24/+34 |
| | |||||
* | Mark the buffer queue pointers volatile | Chris Robinson | 2014-05-10 | 1 | -2/+2 |
| | |||||
* | Add a missing pointer init | Chris Robinson | 2014-05-10 | 1 | -3/+3 |
| | |||||
* | Explicit init the source queue and current_buffer pointers | Chris Robinson | 2014-05-10 | 1 | -0/+3 |
| | |||||
* | Use a RWLock to help protect the source's buffer queue | Chris Robinson | 2014-05-10 | 3 | -35/+61 |
| | | | | | In some instances this allows to to remove the device/mixer lock, or reduce how long it's held. | ||||
* | Don't explicitly store the BuffersInQueue | Chris Robinson | 2014-05-10 | 2 | -10/+14 |
| | |||||
* | Store the current buffer queue item, rather than played buffer count | Chris Robinson | 2014-05-10 | 2 | -78/+64 |
| | |||||
* | Move the static_assert definition to its own header | Chris Robinson | 2014-05-07 | 1 | -10/+1 |
| | |||||
* | Move some headers to include/ | Chris Robinson | 2014-05-06 | 1 | -217/+0 |
| | | | | Note, these are not installed. Only headers in include/AL/ are installed. | ||||
* | Better pack HRTF mixing properties | Chris Robinson | 2014-05-03 | 2 | -14/+14 |
| | |||||
* | Clamp the current and target gain lower bound to epsilon | Chris Robinson | 2014-05-03 | 1 | -1/+1 |
| | | | | | Should give a bit more wiggle room for the gain stepping to get lower than the silence threshold. | ||||
* | Convert the mmdevapi backend to the new backend API | Chris Robinson | 2014-04-25 | 1 | -3/+0 |
| |