aboutsummaryrefslogtreecommitdiffstats
path: root/alc
Commit message (Collapse)AuthorAgeFilesLines
* Avoid storing an integer in a pointerChris Robinson2019-09-211-3/+6
| | | | | | C++ does not guarantee that, given an int of sufficient size, converting int->ptr->int will result in the original value. A pointer may have more than one integer representation. Only ptr->int->ptr round trips are well-defined.
* Split some code into separate functionsChris Robinson2019-09-211-128/+126
|
* Explicitly mark a couple functions as inlineChris Robinson2019-09-211-6/+6
|
* Use an array and loop instead of individual testsChris Robinson2019-09-211-16/+22
|
* Remove and simplify some functionsChris Robinson2019-09-201-6/+8
|
* Use an anonymous namespace instead of staticChris Robinson2019-09-191-6/+12
|
* Fix a couple more annoying conversion warningsChris Robinson2019-09-181-2/+2
|
* Fix some Windows warningsChris Robinson2019-09-182-12/+12
|
* Avoid hiding a class member functionChris Robinson2019-09-181-5/+5
|
* Enable and fix some more warningsChris Robinson2019-09-182-17/+20
|
* Make the bsinc l and m coefficients unsignedChris Robinson2019-09-174-19/+14
|
* Avoid an unnecessary multiplyChris Robinson2019-09-161-2/+2
|
* Remove the last uses of the system's str[n]casecmpChris Robinson2019-09-165-26/+33
|
* Avoid an unused variableChris Robinson2019-09-161-1/+1
|
* Add and use custom string types and functionsChris Robinson2019-09-161-35/+43
|
* Fix typoChris Robinson2019-09-161-3/+3
|
* Clean up some more conversion warningsChris Robinson2019-09-161-22/+19
|
* Clean up some more shadowing warningsChris Robinson2019-09-167-40/+42
|
* Add a fallback if SLAndroidDataFormat_PCM_EX isn't availableChris Robinson2019-09-151-56/+91
|
* Clean up the spaghetti mess in alcCaptureSamplesChris Robinson2019-09-151-7/+19
|
* Rename ALautowah* for consistencyChris Robinson2019-09-151-18/+18
|
* Make the BackendFactory base destructor protectedChris Robinson2019-09-151-2/+3
|
* Return and pass more appropriate types for backendsChris Robinson2019-09-1520-227/+227
|
* Fix a few warnings from MSVCChris Robinson2019-09-142-3/+3
|
* Fix a few more GCC warningsChris Robinson2019-09-144-5/+8
|
* Fix a copy-paste errorChris Robinson2019-09-141-1/+1
|
* Enable and fix more warningsChris Robinson2019-09-1411-88/+89
|
* Avoid recalculations in the formant filter processChris Robinson2019-09-141-15/+22
|
* Don't hold the pulse lock while not necessaryChris Robinson2019-09-141-1/+2
|
* Fix some more implicit conversions noted by GCCChris Robinson2019-09-1424-124/+144
|
* Clean up (most) implicit conversions in the backendsChris Robinson2019-09-146-86/+98
|
* Fix implicit conversions in the effectsChris Robinson2019-09-148-116/+107
|
* Use an unsigned index valueChris Robinson2019-09-142-5/+2
|
* Fix more implicit conversionsChris Robinson2019-09-143-21/+23
|
* Store the ambisonic order as unsignedChris Robinson2019-09-137-22/+21
|
* Return unsigned values from the FromDevFmt functionsChris Robinson2019-09-1313-81/+67
|
* Clean up more implicit conversionsChris Robinson2019-09-134-26/+29
|
* Pass IrSize to the HRTF mixers as unsignedChris Robinson2019-09-137-25/+25
|
* Make IrSize unsignedChris Robinson2019-09-136-109/+105
|
* Make NumAuxSends unsignedChris Robinson2019-09-134-24/+26
|
* Clean up implicit conversions in alu.cppChris Robinson2019-09-131-44/+36
|
* Make the resampler increment unsignedChris Robinson2019-09-139-82/+77
|
* Clean up sample converter implicit conversionsChris Robinson2019-09-125-36/+38
|
* Clean up implicit conversions in source.cppChris Robinson2019-09-122-4/+4
|
* Use unsigned channel indicesChris Robinson2019-09-129-59/+61
|
* Clean up some more implicit conversionsChris Robinson2019-09-111-14/+14
|
* Fix a few more C-style castsChris Robinson2019-09-113-6/+7
|
* Fix function declarationChris Robinson2019-09-113-5/+6
|
* Avoid C-style casts in C++Chris Robinson2019-09-116-19/+22
|
* Fix some more implicit castsChris Robinson2019-09-112-368/+363
|