aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Add a ALfilterState method to process multiple samples at onceChris Robinson2014-05-182-9/+19
|
* Support the band-pass filterChris Robinson2014-05-171-2/+4
|
* Apply high-pass source filters as neededChris Robinson2014-05-172-10/+68
|
* Implementing handling high-pass filter propertiesChris Robinson2014-05-171-1/+4
|
* Add a flag to specify when the low-pass filter needs to applyChris Robinson2014-05-172-16/+33
|
* Use logarithmic adjustment for the gain in the autowah effectChris Robinson2014-05-171-7/+7
|
* Ensure that LoopEnd > LoopStartChris Robinson2014-05-151-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 stringChris Robinson2014-05-151-2/+1
|
* Don't bother stripping whitespace from commentsChris Robinson2014-05-151-5/+1
|
* Initialize some variables when declaring themChris Robinson2014-05-151-4/+2
|
* Use an enum for the chorus and flanger waveformsChris Robinson2014-05-142-16/+54
|
* Don't try to read the internal capture buffer into itselfChris Robinson2014-05-141-6/+9
|
* Remove a dead assignmentChris Robinson2014-05-141-1/+0
|
* Avoid freeing an in-use capture bufferChris Robinson2014-05-141-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 typeChris Robinson2014-05-142-12/+12
| | | | | It should only be accessed through the appropriate functions to ensure proper atomicity.
* Make LOWPASSFREQREF a float valueChris Robinson2014-05-112-2/+2
|
* Store the filter reference frequency in the sourceChris Robinson2014-05-111-12/+20
|
* Update the source send target gains properlyChris Robinson2014-05-111-4/+4
|
* Use a struct to store the source's direct gain/gainhf propertiesChris Robinson2014-05-111-6/+6
|
* Update the output buffer pointer in the Write_* methodsChris Robinson2014-05-101-15/+11
|
* Add a couple constsChris Robinson2014-05-101-2/+2
|
* Store the current buffer queue item, rather than played buffer countChris Robinson2014-05-102-23/+12
|
* Avoid checking the previous buffer multiple timesChris Robinson2014-05-101-9/+9
|
* Move RWLock and UIntMap implementations to commonChris Robinson2014-05-073-244/+0
| | | | This should make the code in common completely self-reliant.
* Use standard types for the RWLockChris Robinson2014-05-072-12/+12
|
* Move atomic method definitions to a separate common sourceChris Robinson2014-05-061-7/+0
|
* Move threads.c to a separate source dirChris Robinson2014-05-061-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 Robinson2014-05-062-162/+0
| | | | Note, these are not installed. Only headers in include/AL/ are installed.
* Use gettimeofday if clock_gettime isn't availableChris Robinson2014-05-061-5/+11
|
* Add a cast to silence an MSVC warningChris Robinson2014-05-041-2/+3
|
* Trace skipped info sub-chunksChris Robinson2014-05-041-0/+2
|
* Use ALuint for the amount to skipChris Robinson2014-05-041-1/+1
|
* Don't use the next power of two when duplicating config valuesChris Robinson2014-05-041-1/+1
| | | | Speed isn't terribly important here, and reallocs should be extremely rare.
* Remove unnecessary ifdefsChris Robinson2014-05-042-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 mixingChris Robinson2014-05-043-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 propertiesChris Robinson2014-05-032-56/+51
|
* Clamp the current and target gain lower bound to epsilonChris Robinson2014-05-031-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 mixersChris Robinson2014-05-032-44/+22
|
* Revert e9aee578a797c694655538cd0a00ad6c0bf6d5dcChris Robinson2014-05-021-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 constructorChris Robinson2014-05-021-0/+23
|
* Use a backup in case pthread_mutex_timedlock isn't availableChris Robinson2014-05-011-1/+23
|
* Use ALboolean for al_string_empty's return typeChris Robinson2014-04-302-2/+2
|
* Add a helper VECTOR_FOR_EACH macroChris Robinson2014-04-306-55/+49
|
* Use _mm_set_ps() to set an __m128 instead of {}Chris Robinson2014-04-261-2/+2
|
* Convert the mmdevapi backend to the new backend APIChris Robinson2014-04-253-394/+511
|
* Use a vector for mmdevapi device listsChris Robinson2014-04-241-93/+77
|
* More device list cleanup cleanupChris Robinson2014-04-242-40/+25
|
* Use a helper function to clear PulseAudio device listsChris Robinson2014-04-241-36/+20
|
* Use a helper method to clear winmm device listsChris Robinson2014-04-241-20/+15
|
* Avoid using superfluous LP* typesChris Robinson2014-04-231-10/+10
|