Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix some integer truncation warnings in MSVC | Chris Robinson | 2019-04-12 | 1 | -6/+6 |
| | |||||
* | Remove the SZFMT macro | Chris Robinson | 2019-04-11 | 1 | -3/+3 |
| | | | | C++11 mandates the %zu/d formatter | ||||
* | Change references of makehrtf to makemhr | Chris Robinson | 2019-03-24 | 1 | -1/+1 |
| | |||||
* | Simplify calculating azimuth and elevation indices for HRTF | Chris Robinson | 2019-03-14 | 1 | -17/+7 |
| | |||||
* | Fix wrapping for the upper HRIR index | Chris Robinson | 2019-03-14 | 1 | -13/+14 |
| | |||||
* | Reverse the HRTF field array | Chris Robinson | 2019-02-27 | 1 | -12/+17 |
| | | | | | | Most often a sound's distance will be beyond the farthest field measurement, so It's more efficient to have the farthest field first and avoid looping through the whole field array for them. | ||||
* | Rename MAX_AMBI_COEFFS and MAX_AMBI2D_COEFFS | Chris Robinson | 2019-02-19 | 1 | -2/+2 |
| | |||||
* | Apply phase correction to the ambisonic decoder HRIRs | Chris Robinson | 2019-02-16 | 1 | -25/+60 |
| | | | | | | This preserves the original phase of the HRIR frequencies for decoding the ambisonic signal. This should help prevent extra coloration from the band- splitter used to scale the HF response. | ||||
* | Use std::arrays for HRIR coeffs and values | Chris Robinson | 2019-02-07 | 1 | -21/+16 |
| | |||||
* | Use a unique_ptr to store the loaded HrtfEntry | Chris Robinson | 2019-02-04 | 1 | -34/+28 |
| | |||||
* | Add missing include | Chris Robinson | 2019-01-29 | 1 | -1/+3 |
| | |||||
* | Calculate the correct evidx for the HRTF B-Format decoder | Chris Robinson | 2019-01-29 | 1 | -3/+7 |
| | |||||
* | Load and use all available HRTF fields | Chris Robinson | 2019-01-29 | 1 | -30/+30 |
| | |||||
* | Pass the distance to GetHrtfCoeffs | Chris Robinson | 2019-01-28 | 1 | -11/+15 |
| | |||||
* | Collect HRTF field info into a struct | Chris Robinson | 2019-01-28 | 1 | -32/+47 |
| | |||||
* | Clean up calculating HRIR indices to blend | Chris Robinson | 2019-01-28 | 1 | -37/+26 |
| | |||||
* | Make IncRef and DecRef member functions | Chris Robinson | 2019-01-24 | 1 | -13/+13 |
| | |||||
* | Use the farthest of multi-field HRTFs | Chris Robinson | 2019-01-22 | 1 | -3/+10 |
| | |||||
* | Partially allow loading of multi-field HRTFs | Chris Robinson | 2019-01-22 | 1 | -40/+62 |
| | | | | | Only the first field actually gets used, but all the data is processed when loading. | ||||
* | Use a flexible array for DirectHrtfState and ALvoice | Chris Robinson | 2019-01-12 | 1 | -3/+3 |
| | |||||
* | Use a flexible array for HrtfHandle and SampleConverter | Chris Robinson | 2019-01-11 | 1 | -18/+25 |
| | |||||
* | Make Create methods for structs with flexible array members ... | Chris Robinson | 2019-01-08 | 1 | -6/+16 |
| | | | | ... that are used with unique_ptr. | ||||
* | Fix some comments and reduce indentation | Chris Robinson | 2019-01-08 | 1 | -35/+32 |
| | |||||
* | Avoid using old style casts | Filip Gawin | 2019-01-08 | 1 | -5/+5 |
| | | | | | | To think about: examples/alffplay.cpp:600 OpenAL32/Include/alMain.h:295 | ||||
* | Revert back to using a band-splitter to increase the HF response | Chris Robinson | 2019-01-06 | 1 | -23/+12 |
| | | | | | | Unfortunately the shelf filter causes issues due to the shelf gain magnitude creating a varying phase offset. The splitter also creates phase offsets, but it's consistent regardless of gain. | ||||
* | Replace macros with constexpr inline functions | Chris Robinson | 2019-01-06 | 1 | -3/+3 |
| | |||||
* | Remove an unnecessary undef | Chris Robinson | 2019-01-06 | 1 | -1/+0 |
| | |||||
* | Use double-precision biquads for the HRTF shelf filters | Chris Robinson | 2019-01-06 | 1 | -7/+7 |
| | |||||
* | Use a shelf filter for the HRTF B-Format decoder HF scale | Chris Robinson | 2019-01-06 | 1 | -37/+50 |
| | |||||
* | Add and use a make_unique function | Chris Robinson | 2019-01-01 | 1 | -2/+2 |
| | |||||
* | Rename a couple HRTF structs | Chris Robinson | 2018-12-22 | 1 | -37/+37 |
| | |||||
* | Try to help GetHrtfCoeffs vectorize | Chris Robinson | 2018-12-21 | 1 | -21/+19 |
| | |||||
* | Small cleanup for BuildBFormatHrtf | Chris Robinson | 2018-12-21 | 1 | -35/+39 |
| | |||||
* | Don't convert the HRTF decoder virtual speaker positions to radians | Chris Robinson | 2018-12-21 | 1 | -10/+8 |
| | |||||
* | Add more casts for MSVC | Chris Robinson | 2018-12-12 | 1 | -1/+1 |
| | |||||
* | Add default construction to HrtfEntry | Chris Robinson | 2018-12-09 | 1 | -3/+1 |
| | |||||
* | Use a vector for LoadedHrtfs | Chris Robinson | 2018-12-09 | 1 | -67/+65 |
| | |||||
* | Avoid static global initialization functions | Chris Robinson | 2018-12-08 | 1 | -15/+0 |
| | |||||
* | Use class methods for BandSplitter and SplitterAllpass filters | Chris Robinson | 2018-12-05 | 1 | -5/+5 |
| | |||||
* | Replace remaining uses of std::vector with al::vector | Chris Robinson | 2018-11-24 | 1 | -14/+14 |
| | | | | Which uses a custom allocator that uses our allocation functions. | ||||
* | Simplify the RefCount type | Chris Robinson | 2018-11-19 | 1 | -2/+2 |
| | |||||
* | Remove some unnecessary static specifiers | Chris Robinson | 2018-11-18 | 1 | -2/+2 |
| | |||||
* | Use a standard string for the enumerated HRTF names | Chris Robinson | 2018-11-18 | 1 | -14/+5 |
| | |||||
* | Use a regular vector for the enumerated HRTF list | Chris Robinson | 2018-11-18 | 1 | -72/+63 |
| | |||||
* | Use a regular char* for the device's name | Chris Robinson | 2018-11-15 | 1 | -10/+2 |
| | |||||
* | Pass a normal const char* to EnumerateHrtf | Chris Robinson | 2018-11-15 | 1 | -4/+4 |
| | |||||
* | Make the enumerated HRTF entry name a char* | Chris Robinson | 2018-11-12 | 1 | -20/+25 |
| | | | | | Would ideally be a std::string with the HRTF name itself, but they're still seen in C code. | ||||
* | Use C++ more with helpers.cpp | Chris Robinson | 2018-11-11 | 1 | -55/+29 |
| | |||||
* | Use C++ more in hrtf.cpp | Chris Robinson | 2018-11-09 | 1 | -499/+439 |
| | |||||
* | Convert hrtf.c to C++ | Chris Robinson | 2018-11-09 | 1 | -0/+1410 |