Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Put per-channel filter properties together | Chris Robinson | 2014-05-19 | 3 | -39/+46 |
| | |||||
* | Return a sample pointer from DoFilters | Chris Robinson | 2014-05-19 | 1 | -14/+18 |
| | | | | | This allows us to avoid copying samples when no filtering is needed. Doing the same for resampling would require another temporary buffer in the device. | ||||
* | Move an HRTF mixer parameter and shorten a couple variable names | Chris Robinson | 2014-05-18 | 4 | -33/+28 |
| | |||||
* | Don't pass the SendParams to the wet-path mixer | Chris Robinson | 2014-05-18 | 6 | -41/+44 |
| | |||||
* | Don't pass the DirectParams to the dry-path mixer | Chris Robinson | 2014-05-18 | 7 | -96/+119 |
| | |||||
* | Use different parameters for HRTF mixers | Chris Robinson | 2014-05-18 | 6 | -29/+51 |
| | |||||
* | Pass some DirectParams as function parameters | Chris Robinson | 2014-05-18 | 7 | -29/+40 |
| | |||||
* | Use _mm_setr_ps instead of _mm_set_ps | Chris Robinson | 2014-05-18 | 1 | -4/+4 |
| | | | | | Apparently _mm_set_ps loads in reverse order compared to _mm_load_ps, so _mm_setr_ps should give what we really want. | ||||
* | Add a ALfilterState method to process multiple samples at once | Chris Robinson | 2014-05-18 | 4 | -9/+26 |
| | |||||
* | 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 | 2 | -3/+88 |
| | |||||
* | Apply high-pass source filters as needed | Chris Robinson | 2014-05-17 | 5 | -10/+88 |
| | |||||
* | Implementing handling high-pass filter properties | Chris Robinson | 2014-05-17 | 3 | -2/+82 |
| | |||||
* | Add a flag to specify when the low-pass filter needs to apply | Chris Robinson | 2014-05-17 | 3 | -29/+54 |
| | |||||
* | Use logarithmic adjustment for the gain in the autowah effect | Chris Robinson | 2014-05-17 | 1 | -7/+7 |
| | |||||
* | 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 |
| | |||||
* | Ensure that LoopEnd > LoopStart | Chris Robinson | 2014-05-15 | 1 | -0/+1 |
| | | | | | | For the benefit of Clang's static analysis, which doesn't know that a static source will always have a valid buffer and a buffer must have a non-0 loop range. | ||||
* | Initialize a pointer to NULL instead of a string | Chris Robinson | 2014-05-15 | 1 | -2/+1 |
| | |||||
* | Don't bother stripping whitespace from comments | Chris Robinson | 2014-05-15 | 1 | -5/+1 |
| | |||||
* | Early-out when outN is 0 | Chris Robinson | 2014-05-15 | 1 | -0/+3 |
| | |||||
* | Remove some unnecessary casts | Chris Robinson | 2014-05-15 | 1 | -12/+13 |
| | |||||
* | Initialize some variables when declaring them | Chris Robinson | 2014-05-15 | 1 | -4/+2 |
| | |||||
* | Initialize newformat to AL_NONE instead of a valid format | Chris Robinson | 2014-05-15 | 1 | -6/+2 |
| | |||||
* | Use an enum for the chorus and flanger waveforms | Chris Robinson | 2014-05-14 | 2 | -16/+54 |
| | |||||
* | Don't try to read the internal capture buffer into itself | Chris Robinson | 2014-05-14 | 1 | -6/+9 |
| | |||||
* | Remove a dead assignment | Chris Robinson | 2014-05-14 | 1 | -1/+0 |
| | |||||
* | 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. | ||||
* | Avoid freeing an in-use capture buffer | Chris Robinson | 2014-05-14 | 1 | -5/+3 |
| | | | | | When stopping, ALSA may capture into its own storage buffer. Do not free the storage buffer if it first reads from it. | ||||
* | Make RefCount a non-integer type | Chris Robinson | 2014-05-14 | 14 | -70/+88 |
| | | | | | 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 | 4 | -5/+5 |
| | |||||
* | Store the filter reference frequency in the source | Chris Robinson | 2014-05-11 | 3 | -12/+24 |
| | |||||
* | Update the source send target gains properly | Chris Robinson | 2014-05-11 | 1 | -4/+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 | 3 | -15/+16 |
| | |||||
* | Don't mix old- and new-style FIND_PACKAGE_HANDLE_STANDARD_ARGS calls | Chris Robinson | 2014-05-10 | 1 | -6/+2 |
| | | | | | | | Some (all?) versions of cmake seem to get a bit confused when an old-style FIND_PACKAGE_HANDLE_STANDARD_ARGS call fails, and the scripts attempt a new- style call later on. It continues to think it's using old-style, acting as if REQUIRED_VARS is the message and looks for a VERSION_VAR variable. | ||||
* | 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 |
| | |||||
* | Update the output buffer pointer in the Write_* methods | Chris Robinson | 2014-05-10 | 1 | -15/+11 |
| | |||||
* | Add a couple consts | Chris Robinson | 2014-05-10 | 1 | -2/+2 |
| | |||||
* | 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 | 4 | -101/+76 |
| | |||||
* | Avoid checking the previous buffer multiple times | Chris Robinson | 2014-05-10 | 1 | -9/+9 |
| | |||||
* | Append the number of bits, not bytes, to types | Chris Robinson | 2014-05-08 | 1 | -37/+27 |
| | | | | Also use ALuint64SOFT from alext.h for uint64 | ||||
* | Always use unsigned int for RefCount | Chris Robinson | 2014-05-07 | 1 | -18/+22 |
| |