aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use std::arrays for HRIR coeffs and valuesChris Robinson2019-02-077-45/+41
|
* Simply setting a couple indicesChris Robinson2019-02-041-2/+2
|
* Use relaxed memory ordering for initializing atomic_flagsChris Robinson2019-02-044-5/+5
|
* Use a unique_ptr to store the loaded HrtfEntryChris Robinson2019-02-041-34/+28
|
* Fixed alffplay underrun recovery timingChris Robinson2019-02-041-33/+26
|
* Merge pull request #269 from gongminmin/FixForVS2019kcat2019-02-046-5/+10
|\ | | | | Fix compiling problems on VS2019 with vc142 toolset
| * Fix compiling problems on VS2019 with vc142 toolsetMinmin Gong2019-02-046-5/+10
|/ | | | Msvc142 in VS2019 preview 2 doesn't allow std::atomic_flag to be initialized by a bool. Call test_and_set in the constructors instead.
* Add missing includeChris Robinson2019-01-291-1/+3
|
* Calculate the correct evidx for the HRTF B-Format decoderChris Robinson2019-01-291-3/+7
|
* Load and use all available HRTF fieldsChris Robinson2019-01-291-30/+30
|
* Pass the distance to GetHrtfCoeffsChris Robinson2019-01-283-22/+25
|
* Collect HRTF field info into a structChris Robinson2019-01-283-36/+56
|
* Clean up calculating HRIR indices to blendChris Robinson2019-01-281-37/+26
|
* Don't normalize HRIRs per-fieldChris Robinson2019-01-271-8/+8
|
* Partially handle ambisonics in alffplayChris Robinson2019-01-271-28/+98
| | | | | | | | | This is currently really only applicable to Opus-encoded files. It assumes AmbiX (SN3D normalization, ACN ordering) and only comes into play when the channel layout is blank. FFmpeg/libavcodec doesn't have a way to detect B-Format input or what normalization and ordering it uses. Note in particular .amb files do not play correctly (libavcodec seems to apply a default channel layout for 4-channel wav-type files, regardless of its channel mask value).
* Round the calculated field distance in makehrtfChris Robinson2019-01-271-6/+7
|
* Don't try to clean up the async ringbuffer if it isn't allocatedChris Robinson2019-01-261-16/+19
|
* Fix applied scalars for B-Format source mixingChris Robinson2019-01-261-8/+8
|
* Update a function commentChris Robinson2019-01-241-2/+2
|
* Slight cleanup for NfcFilterCreate4Chris Robinson2019-01-241-20/+14
|
* Make IncRef and DecRef member functionsChris Robinson2019-01-244-23/+27
|
* Clean up the NFC filters a bitChris Robinson2019-01-234-70/+41
|
* Rename a headerChris Robinson2019-01-235-7/+7
| | | | To workaround an apparent MSVC error
* Add missing includesChris Robinson2019-01-231-0/+2
|
* Make hrtf_inc.cpp a proper headerChris Robinson2019-01-235-14/+10
|
* Use template declarations for the HRTF mixersChris Robinson2019-01-237-78/+109
|
* Use template declarations for the normal mixing functionsChris Robinson2019-01-235-38/+33
|
* Use a template declaration for the resampler functionsChris Robinson2019-01-238-89/+82
|
* Use the farthest of multi-field HRTFsChris Robinson2019-01-221-3/+10
|
* Don't install utilities that aren't builtChris Robinson2019-01-221-1/+5
|
* Fix building makehrtf and sofa-info on WindowsChris Robinson2019-01-223-9/+26
|
* Support loading sofa files in makehrtfChris Robinson2019-01-224-157/+658
| | | | | The makehrtf utility now requires libmysofa to build. This isn't necessay for the OpenAL Soft library itself.
* Partially allow loading of multi-field HRTFsChris Robinson2019-01-221-40/+62
| | | | | Only the first field actually gets used, but all the data is processed when loading.
* Add a sofa-info utility to check sofa filesChris Robinson2019-01-212-0/+393
|
* Add a FindMySOFA cmake moduleChris Robinson2019-01-211-0/+60
|
* Handle a missing default WASAPI device IDChris Robinson2019-01-181-3/+3
|
* Add front and back methods to FlexArrayChris Robinson2019-01-171-0/+6
|
* Replace a couple more C math callsChris Robinson2019-01-141-2/+2
|
* Constify some parametersChris Robinson2019-01-127-101/+103
|
* Avoid implicit conversions from signed to unsignedChris Robinson2019-01-121-5/+5
|
* Use a flexible array for DirectHrtfState and ALvoiceChris Robinson2019-01-127-70/+85
|
* Use a flexible array for HrtfHandle and SampleConverterChris Robinson2019-01-113-31/+47
|
* Make the min/max/clamp functions constexprChris Robinson2019-01-111-21/+21
|
* Add placement operator deleteChris Robinson2019-01-112-4/+8
|
* Add a missing includeChris Robinson2019-01-111-0/+1
|
* Use a flexible array for the active effect slotsChris Robinson2019-01-114-22/+32
|
* Add a flexible array template containerChris Robinson2019-01-111-0/+42
|
* Use a vector for ALeffectslotArrayChris Robinson2019-01-095-48/+40
|
* Merge pull request #264 from ShFil119/impr/cleanupkcat2019-01-0936-122/+117
|\ | | | | Cleanup continuation
| * Use `= default` to define trivial dtor/ctorFilip Gawin2019-01-092-8/+3
| |