Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use the current buffer item for static sources too | Chris Robinson | 2014-05-21 | 1 | -1/+1 |
| | |||||
* | Copy samples if needed in the 'copy' resampler | Chris Robinson | 2014-05-21 | 1 | -9/+15 |
| | |||||
* | Properly process all samples with a bandpass filter | Chris Robinson | 2014-05-21 | 1 | -2/+2 |
| | |||||
* | Use the correct input for HRTF mixing | Chris Robinson | 2014-05-21 | 1 | -1/+1 |
| | |||||
* | Update the active source's direct and send properties after each mix | Chris Robinson | 2014-05-21 | 1 | -10/+9 |
| | |||||
* | Return a sample pointer from resamplers | Chris Robinson | 2014-05-19 | 3 | -19/+21 |
| | | | | Both resampling and filtering now avoid copying samples when they no-op. | ||||
* | Put per-channel filter properties together | Chris Robinson | 2014-05-19 | 2 | -31/+34 |
| | |||||
* | 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 | 3 | -30/+25 |
| | |||||
* | Don't pass the SendParams to the wet-path mixer | Chris Robinson | 2014-05-18 | 5 | -30/+31 |
| | |||||
* | Don't pass the DirectParams to the dry-path mixer | Chris Robinson | 2014-05-18 | 6 | -84/+106 |
| | |||||
* | Use different parameters for HRTF mixers | Chris Robinson | 2014-05-18 | 4 | -28/+42 |
| | |||||
* | Pass some DirectParams as function parameters | Chris Robinson | 2014-05-18 | 6 | -27/+37 |
| | |||||
* | 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 | 2 | -9/+19 |
| | |||||
* | Support the band-pass filter | Chris Robinson | 2014-05-17 | 1 | -2/+4 |
| | |||||
* | Apply high-pass source filters as needed | Chris Robinson | 2014-05-17 | 2 | -10/+68 |
| | |||||
* | Implementing handling high-pass filter properties | Chris Robinson | 2014-05-17 | 1 | -1/+4 |
| | |||||
* | Add a flag to specify when the low-pass filter needs to apply | Chris Robinson | 2014-05-17 | 2 | -16/+33 |
| | |||||
* | Use logarithmic adjustment for the gain in the autowah effect | Chris Robinson | 2014-05-17 | 1 | -7/+7 |
| | |||||
* | 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 |
| | |||||
* | Initialize some variables when declaring them | Chris Robinson | 2014-05-15 | 1 | -4/+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 |
| | |||||
* | 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 | 2 | -12/+12 |
| | | | | | It should only be accessed through the appropriate functions to ensure proper atomicity. | ||||
* | Make LOWPASSFREQREF a float value | Chris Robinson | 2014-05-11 | 2 | -2/+2 |
| | |||||
* | Store the filter reference frequency in the source | Chris Robinson | 2014-05-11 | 1 | -12/+20 |
| | |||||
* | Update the source send target gains properly | Chris Robinson | 2014-05-11 | 1 | -4/+4 |
| | |||||
* | Use a struct to store the source's direct gain/gainhf properties | Chris Robinson | 2014-05-11 | 1 | -6/+6 |
| | |||||
* | 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 |
| | |||||
* | Store the current buffer queue item, rather than played buffer count | Chris Robinson | 2014-05-10 | 2 | -23/+12 |
| | |||||
* | Avoid checking the previous buffer multiple times | Chris Robinson | 2014-05-10 | 1 | -9/+9 |
| | |||||
* | Move RWLock and UIntMap implementations to common | Chris Robinson | 2014-05-07 | 3 | -244/+0 |
| | | | | This should make the code in common completely self-reliant. | ||||
* | Use standard types for the RWLock | Chris Robinson | 2014-05-07 | 2 | -12/+12 |
| | |||||
* | Move atomic method definitions to a separate common source | Chris Robinson | 2014-05-06 | 1 | -7/+0 |
| | |||||
* | Move threads.c to a separate source dir | Chris Robinson | 2014-05-06 | 1 | -531/+0 |
| | | | | | This will eventually serve to build a static lib of common wrapper methods, such as threads, mutexes, atomics, etc. | ||||
* | Move some headers to include/ | Chris Robinson | 2014-05-06 | 2 | -162/+0 |
| | | | | Note, these are not installed. Only headers in include/AL/ are installed. | ||||
* | Use gettimeofday if clock_gettime isn't available | Chris Robinson | 2014-05-06 | 1 | -5/+11 |
| | |||||
* | Add a cast to silence an MSVC warning | Chris Robinson | 2014-05-04 | 1 | -2/+3 |
| | |||||
* | Trace skipped info sub-chunks | Chris Robinson | 2014-05-04 | 1 | -0/+2 |
| | |||||
* | Use ALuint for the amount to skip | Chris Robinson | 2014-05-04 | 1 | -1/+1 |
| | |||||
* | Don't use the next power of two when duplicating config values | Chris Robinson | 2014-05-04 | 1 | -1/+1 |
| | | | | Speed isn't terribly important here, and reallocs should be extremely rare. | ||||
* | Remove unnecessary ifdefs | Chris Robinson | 2014-05-04 | 2 | -4/+0 |
| | | | | | mixer_sse.c and mixer_neon.c are only compiled when the relavent headers are found anyway. | ||||
* | Always use the current gains when mixing | Chris Robinson | 2014-05-04 | 3 | -17/+22 |
| | | | | | | The current gain gets explicitly set to the target when the stepping is finished to ensure the target is still used. This way, however, will allow for asynchronously 'canceling' a fade by setting the counter to 0. | ||||
* | Better pack HRTF mixing properties | Chris Robinson | 2014-05-03 | 2 | -56/+51 |
| |