aboutsummaryrefslogtreecommitdiffstats
path: root/alc
Commit message (Collapse)AuthorAgeFilesLines
...
* Clean up some ALfloat -> floatChris Robinson2019-10-026-71/+65
|
* Move ALvoice from alu.h to a separate headerChris Robinson2019-10-028-326/+351
|
* Move a couple types to the source they're used inChris Robinson2019-10-022-6/+7
|
* Rename mixvoice.cpp to voice.cppChris Robinson2019-10-021-0/+0
|
* Make sure the temporary HRIRs are properly alignedChris Robinson2019-10-011-1/+1
|
* Remove an unnecessary functionChris Robinson2019-10-011-9/+5
|
* Clear the HRTF state values on allocationChris Robinson2019-09-301-1/+1
|
* Avoid infs/nans in the crest detectorChris Robinson2019-09-301-2/+3
| | | | | | It needs to be investigated why the rendered mix sometimes has such large sample values when starting, but the compressor/limiter shouldn't generate NaNs because of it.
* Separate a couple assignments from conditionalsChris Robinson2019-09-301-1/+2
|
* Repack the bsinc resamplers coefficientsChris Robinson2019-09-293-12/+12
| | | | | | This puts the base coefficients and the phase deltas next to each other. This improves caching, as the base and phase deltas are always used together while the scales are only used for the non-fast versions.
* Modify the bsinc resamplerChris Robinson2019-09-291-1/+1
| | | | | Readjusted the bsinc12 cutoff back to -60dB. Also increased the filter's phase count.
* Silence an MSVC warningChris Robinson2019-09-281-1/+5
|
* Check MAX_RESAMPLER_PADDING properly to ensure it's large enoughChris Robinson2019-09-282-4/+4
|
* Make the BSincTables constexpr in an anonymous namespaceChris Robinson2019-09-281-1/+0
|
* Make MAX_RESAMPLER_PADDING specify the total paddingChris Robinson2019-09-287-27/+30
|
* Use FastBSinc24 for WASAPI and CoreAudio captureChris Robinson2019-09-282-2/+2
| | | | Given a fixed rate, there's no downside to the fast version.
* Combine two function calls into oneChris Robinson2019-09-284-111/+108
|
* Add "fast" variants for the bsinc resamplersChris Robinson2019-09-284-7/+14
| | | | | | This simply omits the scale factor from the filter, similar to how up-sampling does. The consequence of this is less smooth transitions when ramping the pitch while down-sampling, but otherwise behaves fine.
* Implement a "fast" bsinc pathChris Robinson2019-09-268-6/+135
| | | | | | | | | | This takes advantage of the fact than when increment <= 1 (when not down- sampling), the scale factor is always 0. As a result, the scale and scale-phase deltas never contribute to the filtered output. Removing those multiply+add operations cuts half of the work done by the inner loop. Sounds that do need to down-sample (when played with a high pitch, or is 48khz on 44.1khz output, for example), still go through the normal bsinc process.
* Avoid extraneous parametersChris Robinson2019-09-253-19/+17
|
* Use blended HRIRs for the B-Format decodeChris Robinson2019-09-243-70/+107
|
* Fix unsigned 8-bit buffersChris Robinson2019-09-241-1/+1
|
* Use an array to match the HRTF rendering methodChris Robinson2019-09-241-17/+20
|
* Add a missing header for AndroidChris Robinson2019-09-231-0/+1
|
* Fix a couple more conversion warningsChris Robinson2019-09-221-6/+6
|
* Make the resampler type an enum classChris Robinson2019-09-226-27/+27
|
* Move the ifstream wrapper to commonChris Robinson2019-09-225-209/+9
|
* 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
|