aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use size_t for the mixers' fade counter and outposChris Robinson2019-08-206-23/+22
|
* Use size_t for HrtfMixer functions' buffer sizeChris Robinson2019-08-207-36/+35
|
* Use size_t for reverb offsets and masksChris Robinson2019-08-201-97/+92
|
* Simplify passing some span parametersChris Robinson2019-08-201-10/+6
|
* Try to fix span construction for MSVCChris Robinson2019-08-201-3/+3
|
* Fix MixRow definition for NEONChris Robinson2019-08-201-2/+2
|
* Pass a span to the Resample functionChris Robinson2019-08-209-60/+57
|
* Use unsigned for the sample and channel convertersChris Robinson2019-08-204-41/+38
|
* Track the MixVoice sample count and fade counter as unsignedChris Robinson2019-08-202-19/+17
|
* Use size_t for the NFC and biquad filters' sample countChris Robinson2019-08-206-15/+19
|
* Pass a span for the Mix function's inputChris Robinson2019-08-2016-119/+110
|
* Rename the Mix function input for clarityChris Robinson2019-08-205-20/+22
|
* Pass the MixRow buffer size as a spanChris Robinson2019-08-207-61/+57
|
* Change NUM_LINES to a size_t for MSVCChris Robinson2019-08-191-33/+33
|
* Fix for GCC5 decaying an array to a pointerChris Robinson2019-08-191-6/+6
|
* More logically separate temp reverb buffersChris Robinson2019-08-191-37/+36
|
* Allow using a variable channel stride for MixRowSamplesChris Robinson2019-08-198-33/+39
|
* Improve subspan default template argumentChris Robinson2019-08-181-2/+2
|
* Use the appropriate typeChris Robinson2019-08-181-4/+4
|
* Formatting cleanupChris Robinson2019-08-181-27/+27
|
* Don't require MixRow's output to be a FloatBufferLineChris Robinson2019-08-187-13/+13
|
* Merge pull request #329 from Raulshc/fshifterkcat2019-08-181-28/+55
|\ | | | | EFX: Update Frequency shifter
| * EFX: Update Frequency shifterRaulshc2019-08-181-28/+55
| | | | | | | | Add f. shifter processing for L and R channels.
* | Merge pull request #328 from Raulshc/double2intkcat2019-08-182-34/+36
|\ \ | | | | | | Move double2int function
| * | Move double2int functionRaulshc2019-08-182-34/+36
| |/ | | | | | | Move inline double2int function to alnumeric.h from pshifter.cpp
* | Merge pull request #327 from Raulshc/alsoft_config_vmorpherkcat2019-08-183-1/+21
|\ \ | |/ |/| Alsoft-config: Add vocal morpher effect
| * Alsoft-config: Add vocal morpher effectRaulshc2019-08-183-1/+21
|/
* Reduce the size of reverb's temporary buffer storageChris Robinson2019-08-181-85/+94
| | | | The size of ReverbState is now almost half of what it was.
* Avoid an out parameter for VectorPartialScatterChris Robinson2019-08-171-5/+7
|
* Use a std::array for the reverb sample bufferChris Robinson2019-08-171-19/+11
|
* Use new/delete for context and effectslot propertiesChris Robinson2019-08-135-6/+10
|
* Move update pointers to the containers they updateChris Robinson2019-08-136-12/+13
|
* Use new/delete for listener propertiesChris Robinson2019-08-133-3/+6
|
* Don't explicitly inline a particular functionChris Robinson2019-08-131-1/+1
|
* Environment variables should override config settingsChris Robinson2019-08-121-12/+8
|
* Move UID definitions to a separate sourceChris Robinson2019-08-123-58/+64
|
* Remove always-true assumptionChris Robinson2019-08-121-1/+0
|
* Fix some return typesChris Robinson2019-08-121-5/+5
|
* Add methods to get env vars as an optionalChris Robinson2019-08-129-94/+137
|
* Don't use INT_MAX for unknown span lengthsChris Robinson2019-08-111-26/+24
| | | | | 32-bit doesn't like it, for some reason. Use the largest possible length it could be.
* Move vector.h to commonChris Robinson2019-08-112-1/+1
|
* Move the wstr converters to a separate headerChris Robinson2019-08-1111-50/+52
|
* Remove multiple buffers per queue itemChris Robinson2019-08-114-355/+96
| | | | And simplify related code
* Move the dynload decls and defs to commonChris Robinson2019-08-1010-65/+84
|
* Fix array access indexChris Robinson2019-08-101-1/+1
|
* Avoid __popcnt[64] on MSVCChris Robinson2019-08-101-41/+31
| | | | | It requires SSE4, and provides no fallback mechanism for CPU targets lacking the opcode it maps to.
* Fix and clarify the peaking biquad filterChris Robinson2019-08-103-11/+12
|
* Merge pull request #323 from Raulshc/vmorpher_declskcat2019-08-101-0/+7
|\ | | | | Add parameter DECLs for vocal morpher
| * Add parameter DECLs for vocal morpherRaulshc2019-08-101-0/+7
|/
* Merge pull request #322 from gongminmin/SDK1903kcat2019-08-101-9/+10
|\ | | | | Enable to detect Windows SDK v1903