aboutsummaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary macro parameter listsChris Robinson2023-12-153-3/+3
|
* Track the device state for being properly configuredChris Robinson2023-12-121-2/+7
| | | | And don't allow resuming if the backend device isn't properly set up.
* Remove void from empty parameter listsChris Robinson2023-12-122-3/+4
| | | | Also convert some functions to trailing return types and remove (void) casts.
* Fix size checkChris Robinson2023-12-111-2/+2
|
* Finish cleanup for effectsChris Robinson2023-12-111-2/+3
|
* Fix a pointer castChris Robinson2023-12-101-2/+2
|
* Much more clang-tidy cleanupChris Robinson2023-12-1019-104/+107
|
* Refactor FlexArrayChris Robinson2023-12-106-1/+7
| | | | | This avoids using an array of 1 as a flexible array member, and instead uses a span to reference the memory after itself.
* More clang-tidy cleanupChris Robinson2023-12-101-2/+2
| | | | And suppress some warnings
* Be less messy with PFFFTChris Robinson2023-12-091-15/+8
| | | | | Remove a 1-element array for an over-allocated struct array. Also add a wrapper struct for C++.
* More clang-tidy fixesChris Robinson2023-12-0911-132/+140
|
* Simplify handling the cluster sizesChris Robinson2023-12-081-13/+15
|
* Use a fixed array for fixed-size clustersChris Robinson2023-12-082-39/+45
|
* Clean up some more clang-tidy warningsChris Robinson2023-12-0818-98/+106
|
* Fix some clang-tidy warningsChris Robinson2023-12-083-6/+7
|
* Use RAII to handle writing under the mixer seqlockChris Robinson2023-12-041-2/+26
|
* Remove some unnecessary atomic wrappersChris Robinson2023-12-034-6/+6
|
* Make the device clock members atomicChris Robinson2023-12-032-2/+19
| | | | | | Even though they're protected by a SeqLock of sorts, it's still UB to read and write non-atomic vars from different threads. It's fine to do relaxed reads and writes given the lock though, to help alleviate the cost.
* fix printf format for MinGW (#942)Rosen Penev2023-12-033-6/+6
| | | | | | With gcc, mingw uses gnu_printf. With clang, printf is used as it does not support gnu_printf. Use the internal header to match this properly. Signed-off-by: Rosen Penev <[email protected]>
* Handle systems that don't support std::cyl_bessel_iChris Robinson2023-11-181-2/+44
|
* Fix definition typesChris Robinson2023-11-181-7/+7
|
* Support 32-bit int sample storageChris Robinson2023-11-154-0/+12
|
* Remove some explicit template parametersChris Robinson2023-11-101-117/+117
|
* Use the C++ standard's regular modified Bessel functionChris Robinson2023-11-081-33/+4
|
* Remove an unnecessary struct memberChris Robinson2023-11-041-5/+4
|
* Don't apply the UHJ all-pass's first segment in the time domainChris Robinson2023-10-282-57/+33
| | | | | Increases the delay by 128 samples, but replaces a time-domain convolution with a frequency-domain one.
* Use a byte for the channel indexChris Robinson2023-10-221-9/+9
|
* Don't keep setting and reloading a struct member in a loopChris Robinson2023-10-201-2/+3
|
* Remove the output delay on the UHJ and SuperStereo IIR decodersChris Robinson2023-10-182-38/+53
|
* Remove an unnecessary getterChris Robinson2023-10-171-11/+3
|
* Remove an unnecessary c_str() callChris Robinson2023-10-161-1/+1
|
* Properly align a buffer given to PFFFTChris Robinson2023-10-151-4/+5
|
* Use a span for a known array length instead of a raw pointerChris Robinson2023-10-152-6/+5
|
* Ensure some variables are the sameChris Robinson2023-10-151-20/+25
| | | | And clean up some comments
* Don't use an iterator where a pointer is expectedChris Robinson2023-10-141-1/+1
|
* Use a split filter for the FIR-based UHJ encodersChris Robinson2023-10-142-13/+200
| | | | | | | | This applies the all-pass filter in two steps, first as a relatively short time-domain FIR filter, then as a series of frequency domain convolutions (using complex multiplies). Time-domain convolution scales poorly, so larger convolutions benefit from being done in the frequency domain (though the first part is still done in the time domain, to avoid longer delays).
* Add convolution effect properties to rotate ambisonic responsesChris Robinson2023-10-121-0/+6
|
* Mark some functions as maybe_unusedChris Robinson2023-10-081-0/+2
| | | | For non-SSE-capable targets
* Avoid inline assembly for getting/setting SSE stateChris Robinson2023-10-051-20/+49
|
* Constify some pointers to indicate they won't changeChris Robinson2023-09-252-2/+2
|
* Avoid casting an integer literalChris Robinson2023-09-224-7/+7
|
* Add a SampleConverter method to convert planar buffer linesChris Robinson2023-09-212-0/+93
|
* Preliminary implementation of WASAPI spatial audio playbackChris Robinson2023-09-201-0/+5
|
* Store channel positions as vectors instead of anglesChris Robinson2023-09-141-2/+2
| | | | To avoid extraneous conversions between angles and vectors
* Precalculate some square factorsChris Robinson2023-09-041-7/+2
|
* Use a variant instead of a union+flagChris Robinson2023-09-032-39/+47
|
* Slightly improve some all-pass filter coefficientsChris Robinson2023-08-281-6/+6
|
* disable unavailable functionality on xbox (#887)Max Bachmann2023-07-261-1/+1
| | | | | * disable unavailable functionality on xbox * use not std version of getenv on xbox
* Fix some typos (#872)Dirk Stolle2023-07-042-2/+2
|
* Add a function to set a callback for log messagesChris Robinson2023-07-022-25/+82
|