Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Clamp the current and target gain lower bound to epsilon | Chris Robinson | 2014-05-03 | 1 | -10/+10 |
| | | | | | Should give a bit more wiggle room for the gain stepping to get lower than the silence threshold. | ||||
* | Make sure all gain steps are applied with the SSE and Neon mixers | Chris Robinson | 2014-05-03 | 2 | -44/+22 |
| | |||||
* | Revert e9aee578a797c694655538cd0a00ad6c0bf6d5dc | Chris Robinson | 2014-05-02 | 1 | -2/+2 |
| | | | | | The vector iterator needs to be the start of the Data array even if the vector itself is NULL, or else insertion can have a negative insert position. | ||||
* | Iniitialize some mmdevapi backend fields in the constructor | Chris Robinson | 2014-05-02 | 1 | -0/+23 |
| | |||||
* | Use a backup in case pthread_mutex_timedlock isn't available | Chris Robinson | 2014-05-01 | 1 | -1/+23 |
| | |||||
* | Use ALboolean for al_string_empty's return type | Chris Robinson | 2014-04-30 | 2 | -2/+2 |
| | |||||
* | Add a helper VECTOR_FOR_EACH macro | Chris Robinson | 2014-04-30 | 6 | -55/+49 |
| | |||||
* | Use _mm_set_ps() to set an __m128 instead of {} | Chris Robinson | 2014-04-26 | 1 | -2/+2 |
| | |||||
* | Convert the mmdevapi backend to the new backend API | Chris Robinson | 2014-04-25 | 3 | -394/+511 |
| | |||||
* | Use a vector for mmdevapi device lists | Chris Robinson | 2014-04-24 | 1 | -93/+77 |
| | |||||
* | More device list cleanup cleanup | Chris Robinson | 2014-04-24 | 2 | -40/+25 |
| | |||||
* | Use a helper function to clear PulseAudio device lists | Chris Robinson | 2014-04-24 | 1 | -36/+20 |
| | |||||
* | Use a helper method to clear winmm device lists | Chris Robinson | 2014-04-24 | 1 | -20/+15 |
| | |||||
* | Avoid using superfluous LP* types | Chris Robinson | 2014-04-23 | 1 | -10/+10 |
| |