Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename the bsinc resampler to bsinc12 | Chris Robinson | 2017-08-25 | 1 | -46/+48 |
| | |||||
* | Parameterize the filter order and rejection in bsincgen | Chris Robinson | 2017-08-23 | 1 | -28/+29 |
| | |||||
* | Parameterize the bsinc table name | Chris Robinson | 2017-08-22 | 1 | -8/+9 |
| | |||||
* | Properly postfix the filter order number | Chris Robinson | 2017-08-21 | 1 | -2/+6 |
| | |||||
* | Properly check if a pointer is different when cleaning it up | Chris Robinson | 2017-08-20 | 1 | -2/+2 |
| | |||||
* | Fix -l switch | Chris Robinson | 2017-08-20 | 1 | -1/+1 |
| | |||||
* | Clarify argument errors in makehrtf | Chris Robinson | 2017-08-20 | 1 | -8/+8 |
| | |||||
* | Ensure the arglist is properly terminated | Chris Robinson | 2017-08-20 | 1 | -3/+2 |
| | |||||
* | Print the input and output filenames in makehrtf | Chris Robinson | 2017-08-20 | 1 | -2/+2 |
| | |||||
* | Remove the -m command from makehrtf | Chris Robinson | 2017-08-20 | 1 | -44/+15 |
| | | | | | It only ever outputs mhr files, so there's no need to have a command for it. If another output format is ever made, it can be a normal option flag. | ||||
* | Use getopt to handle options in makehrtf | Chris Robinson | 2017-08-20 | 3 | -72/+252 |
| | |||||
* | Improve unicode handling for makehrtf | Chris Robinson | 2017-08-20 | 1 | -1/+83 |
| | | | | | | | Command line parameters and filenames are now unicode-aware (the .def files should be UTF-8 encoded, if they contain any non-ASCII-7 characters). Unicode characters might not display correctly in the console, but it should process them correctly. | ||||
* | Add a function to multiply a complex with a scalar | Chris Robinson | 2017-08-18 | 1 | -16/+12 |
| | |||||
* | Show progress when processing HRTFs | Chris Robinson | 2017-08-18 | 1 | -2/+28 |
| | |||||
* | Use a proper complex number types in makehrtf | Chris Robinson | 2017-08-18 | 1 | -112/+114 |
| | |||||
* | Simplify bsincgen's Kaiser function | Chris Robinson | 2017-08-18 | 1 | -8/+3 |
| | |||||
* | "Unfix" the filter length calculation | Chris Robinson | 2017-08-18 | 1 | -3/+3 |
| | | | | | | | | Partially reverts 3f3a3ac4f1d069542ca2399a8b5e63d9d1a4df3b. The l*2 + 1 is correct when you want an odd number of sample points, which avoids an unnecessary phase offset in the fitler. However, the rounding is still needed to calculating the left offset (l), or else the transition width can increase with an odd-numbered order. | ||||
* | Keep bsinc filter quality more consistent between scales | Chris Robinson | 2017-08-17 | 1 | -7/+9 |
| | | | | | | | This generates the filters using the proper size and scale. The 'a' divisor should represent the +/- sample range (and thus be a whole number), with the number of sample points being double that. Increasing the filter size to a multiple of 4 (for SIMD) can be done by padding in 0s afterward. | ||||
* | Workaround Android not having log2 | Chris Robinson | 2017-08-17 | 1 | -0/+4 |
| | |||||
* | Properly calculate the filter size | Chris Robinson | 2017-08-17 | 1 | -3/+4 |
| | |||||
* | Correct the bsinc filter order | Chris Robinson | 2017-08-17 | 1 | -6/+7 |
| | | | | | | Despite the claim that it was an 11th order filter, the transition width was generated by specifying 12th order. A 12th order filter would need 14 sample points rather than the 12 it had. | ||||
* | Make the sinc4 table static | Chris Robinson | 2017-08-16 | 1 | -1/+1 |
| | |||||
* | Make the bsinc table layout more efficient | Chris Robinson | 2017-08-16 | 1 | -99/+20 |
| | | | | | | | | | | | | | | | | The old layout separated filters, scale deltas, phase deltas, and scale phase deltas into separate segments that each contained a numbers of scale and phase entries, Since processing a sample needed a filter and one of each delta entry relating to a particular scale and phase, the memory needed would be spread across the whole table. And since subsequent samples would use a different phase, it would jump around the table a whole lot as well. The new layout packs the data in a way more consistent with its use. The filters, scale deltas, phase deltas, and scale phase deltas are interleaved, such that for a particular scale and phase, the filter and delta entries used are contiguous. And the phase entries for a particular scale are kept together, so the ~500 to ~1000 samples processed per source update stay within the same 3KB to 6KB area of the 70+KB table, which is much more cache friendly. | ||||
* | Keep bsinc info together in a struct | Chris Robinson | 2017-08-15 | 1 | -37/+61 |
| | |||||
* | Add experimental support for 24-bit, dual-ear HRTFs | Chris Robinson | 2017-08-08 | 1 | -8/+42 |
| | | | | | | | Currently makehrtf only handles 24-bit output, not dual-ear, and only when given the --experimental switch. Files produced this way will not be guaranteed future compatibility. When the mhr format is also updated with multi-distance measurements, the experimental switch can go away. | ||||
* | Replace makehrtf's dither | Chris Robinson | 2017-08-01 | 1 | -14/+22 |
| | | | | | This uses a custom RNG instead of relying on the system-dependent rand(). It also removes the high-pass/noise-shaping, to flatten the noise floor. | ||||
* | Update makehrtf to use a larger FFT by default | Chris Robinson | 2017-07-25 | 1 | -74/+60 |
| | | | | Also fixes DC offset removal and increases the max IR size. | ||||
* | Resample HRIRs prior to minimum phase reconstruction | Chris Robinson | 2017-06-01 | 1 | -36/+41 |
| | |||||
* | Add a dithering option to alsoft-config | Chris Robinson | 2017-05-23 | 2 | -0/+37 |
| | |||||
* | Include the Built-In HRTF names in alsoft-config when enabled | Chris Robinson | 2017-05-05 | 1 | -0/+5 |
| | |||||
* | Move native-tools to the root directory | Chris Robinson | 2017-05-05 | 2 | -108/+0 |
| | |||||
* | Make the generated data array static const | Chris Robinson | 2017-05-05 | 1 | -1/+1 |
| | |||||
* | Implement cross-platform embedding of HRTF data | alexey.lysiuk | 2017-05-05 | 2 | -0/+108 |
| | |||||
* | Print available resamplers in openal-info | Chris Robinson | 2017-05-03 | 1 | -0/+33 |
| | |||||
* | Document the output-limiter config option | Chris Robinson | 2017-04-26 | 2 | -4/+41 |
| | | | | Expose it in alsoft-config as well. | ||||
* | Pre-compute the sinc4 resampler coefficient table | Chris Robinson | 2017-04-08 | 1 | -1/+39 |
| | |||||
* | Properly update the resampler label in the UI | Chris Robinson | 2017-03-24 | 1 | -1/+3 |
| | |||||
* | Fix the height of some GUI widgets | Chris Robinson | 2017-03-12 | 1 | -27/+21 |
| | |||||
* | Use a spinbox for the nfc-ref-delay value | Chris Robinson | 2017-03-12 | 3 | -72/+19 |
| | |||||
* | Use QString's arg method to format the float value | Chris Robinson | 2017-03-12 | 1 | -4/+3 |
| | |||||
* | Handle the nfc-ref-delay config option | Chris Robinson | 2017-03-12 | 3 | -1/+121 |
| | |||||
* | Document the nfc config option and expose it in alsoft-config | Chris Robinson | 2017-03-12 | 2 | -1/+36 |
| | |||||
* | Stretch out some GUI elements for the decoder configurations | Chris Robinson | 2017-03-01 | 1 | -12/+12 |
| | |||||
* | Rename stereo-panning option to stereo-encoding | Chris Robinson | 2017-02-22 | 2 | -19/+21 |
| | | | | Also rename the 'paired' value to 'panpot', and make it the default. | ||||
* | Reduce the default period count to 3 | Chris Robinson | 2017-02-22 | 1 | -1/+1 |
| | |||||
* | Make the "sends" config option act as a limit | Chris Robinson | 2017-02-21 | 1 | -18/+5 |
| | | | | | Instead of forcing the device to always use the specified send count, it simply limits requests to it. | ||||
* | Increase the default effect slot and send count | Chris Robinson | 2017-02-21 | 2 | -5/+5 |
| | | | | | | | | | | The default number of auxiliary effect slots is now 64. This can still be raised by the config file without a hard maximum, but incurs processing cost for each effect slot generated by the app. The default number of source sends is now actually 2, as per the EFX docs. However, it can be raised up to 16 via ALC_MAX_AUXILIARY_SENDS attribute requests, rather than the previous 4. | ||||
* | Allow distance compensation for non-HQ rendering as well | Chris Robinson | 2017-02-20 | 3 | -13/+3 |
| | | | | | It still requires a custom configuration to specify appropriate speaker distances. | ||||
* | Remove the separate surround51rear decoder option | Chris Robinson | 2017-02-19 | 3 | -55/+9 |
| | | | | | | Both 5.1 Side and Rear configurations use 'surround51' to look up the appropriate decoder file. The decoder loader already handles mapping between rear and side channels, so there's no need for separate options. | ||||
* | Remove the sinc8 resampler option | Chris Robinson | 2017-02-19 | 2 | -11/+11 |
| | | | | | Perf shows less than 1 percent CPU difference from the higher quality bsinc resampler, but uses almost twice as much memory (a 128KB lookup table). |