Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Ensure enough space is allocated for structs with a FlexArray | Chris Robinson | 2020-08-15 | 1 | -1/+4 |
| | |||||
* | Avoid a zero-length array for the FlexArray definition | Chris Robinson | 2020-08-15 | 1 | -5/+4 |
| | | | | | | Newer GCCs are warning about FlexArray being used at the end of another struct. Though not the most ideal to always allocate space for at least 1 element, actual 0-sized uses are rare and for smaller element types. | ||||
* | Avoid a cmake check for determining the size of long | Chris Robinson | 2020-08-13 | 1 | -7/+19 |
| | |||||
* | Improve handling main() with UTF-8 args on Windows | Chris Robinson | 2020-08-12 | 1 | -36/+56 |
| | |||||
* | Make osme things constexpr | Chris Robinson | 2020-08-10 | 1 | -17/+15 |
| | |||||
* | Fix DIAGNOSTIC_POP for GCC and Clang | Chris Robinson | 2020-08-06 | 1 | -1/+1 |
| | |||||
* | Don't include headers in a namespace definition | Chris Robinson | 2020-07-23 | 1 | -4/+8 |
| | |||||
* | Avoid including windows.h in threads.h | Chris Robinson | 2020-06-28 | 2 | -9/+9 |
| | |||||
* | Workaround a MinGW quirk | Chris Robinson | 2020-06-26 | 1 | -0/+1 |
| | | | | | Sometimes MinGW defines strncasecmp to _strnicmp in string.h, which can cause problems with al::strncasecmp if it's not consistently replaced. | ||||
* | Simplify the aligned over-allocation strategy | Chris Robinson | 2020-06-07 | 1 | -15/+14 |
| | |||||
* | Avoid explicit checks for _BitScanForward[64] | Chris Robinson | 2020-06-07 | 1 | -9/+10 |
| | |||||
* | Use an enum for FamCount | Chris Robinson | 2020-05-19 | 1 | -3/+3 |
| | |||||
* | Check that aligned_alloc is available with cmake | Chris Robinson | 2020-05-19 | 1 | -2/+2 |
| | | | | | | | | Some compilers support C++17 even on targets that lack required functions. Projects that want to force C++17 will then run into a problem with std::aligned_alloc not existing on those targets, so it needs to be explicitly checked for. The alternative is to simply never use it even when it would be available. | ||||
* | Fix some standard calls | Chris Robinson | 2020-05-16 | 1 | -9/+7 |
| | |||||
* | Move the bsinc tables out of common | Chris Robinson | 2020-05-11 | 3 | -373/+0 |
| | |||||
* | Revert "Fix the FFT half point for the shifter effects" | Chris Robinson | 2020-05-09 | 1 | -1/+1 |
| | | | | This reverts commit 12bb5a47cda0ef6ec1ced73ccf5d267a71f9e710. | ||||
* | Fix the FFT half point for the shifter effects | Chris Robinson | 2020-05-08 | 1 | -1/+1 |
| | |||||
* | Fix subspan extent calculation | Chris Robinson | 2020-04-28 | 1 | -1/+1 |
| | |||||
* | Silence a type conversion warning with GCC | Chris Robinson | 2020-04-14 | 1 | -2/+3 |
| | |||||
* | Avoid inlining some potentially costly calls | Chris Robinson | 2020-04-14 | 2 | -0/+4 |
| | |||||
* | Use a common base for a couple exceptions | Chris Robinson | 2020-04-10 | 2 | -14/+10 |
| | |||||
* | Apply some alloc and alignment attributes | Chris Robinson | 2020-04-10 | 1 | -16/+4 |
| | |||||
* | Make a default/empty constructor noexcept | Chris Robinson | 2020-04-09 | 1 | -1/+1 |
| | |||||
* | Use a unique_ptr for constructing the bsinc table coefficients | Chris Robinson | 2020-04-07 | 1 | -25/+22 |
| | |||||
* | Dynamically allocate the temporary bsinc filter table | Chris Robinson | 2020-04-06 | 1 | -2/+7 |
| | |||||
* | Pass the BSincHeader by reference instead of value | Chris Robinson | 2020-04-05 | 1 | -2/+2 |
| | |||||
* | Avoid storing the bsinc coefficient deltas before output | Chris Robinson | 2020-04-04 | 1 | -48/+49 |
| | | | | This cuts the majority of stack use when generating the coefficients. | ||||
* | Fix bsinc filter alignment and offsets | Chris Robinson | 2020-04-02 | 1 | -3/+3 |
| | |||||
* | Avoid std::abs in a constexpr function | Chris Robinson | 2020-04-02 | 1 | -1/+1 |
| | |||||
* | Generate the bsinc tables using constexpr methods | Chris Robinson | 2020-04-02 | 3 | -0/+370 |
| | | | | | | | | All the methods used should be compliant with C++14 constexpr rules. However, the number of scales and phases cause GenerateBSincCoeffs to reach the allowed step limit, preventing full compile-time generation. It's not a terribly big deal, it'll generate them very quickly when loading, but it does prevent using shared read-only memory pages. | ||||
* | Avoid using M_PI | Chris Robinson | 2020-04-01 | 2 | -16/+9 |
| | |||||
* | Avoid non-namespace template specialization | Chris Robinson | 2020-03-24 | 1 | -7/+11 |
| | |||||
* | Remove some unused functions | Chris Robinson | 2020-03-23 | 1 | -64/+3 |
| | |||||
* | Add a macro to disable class-specific new/delete | Chris Robinson | 2020-03-23 | 1 | -0/+6 |
| | |||||
* | Avoid ## in a macro | Chris Robinson | 2020-03-23 | 1 | -6/+6 |
| | | | | Cppcheck thinks it's an invalid use of it | ||||
* | Use more appropriate types for bitfields | Chris Robinson | 2020-03-22 | 1 | -4/+10 |
| | |||||
* | Clean up some C++11-isms | Chris Robinson | 2020-03-22 | 3 | -13/+10 |
| | |||||
* | Properly define the new[] and delete[] operators | Chris Robinson | 2020-03-22 | 1 | -3/+10 |
| | |||||
* | Avoid some pre-C++14 workarounds | Chris Robinson | 2020-03-22 | 1 | -8/+0 |
| | |||||
* | Fix some 'ambiguous' calls for newer MSVC | Chris Robinson | 2020-01-06 | 1 | -6/+6 |
| | |||||
* | Ensure a pointer is provided for a templated iterator type | Chris Robinson | 2020-01-05 | 1 | -2/+2 |
| | |||||
* | Fix reverse iterators for spans | Chris Robinson | 2019-12-25 | 1 | -8/+8 |
| | |||||
* | Avoid extraneous looping | Chris Robinson | 2019-11-29 | 1 | -17/+30 |
| | |||||
* | Move the polyphase resampler to the common lib | Chris Robinson | 2019-11-28 | 2 | -0/+259 |
| | |||||
* | Avoid an extraneous macro and use a simplified type alias | Chris Robinson | 2019-10-27 | 1 | -4/+4 |
| | |||||
* | Avoid static constexpr for arrays iterated over at run-time | Chris Robinson | 2019-10-25 | 1 | -1/+1 |
| | |||||
* | Put the pragma defines in a separate header | Chris Robinson | 2019-10-07 | 2 | -19/+25 |
| | |||||
* | Don't inline the utf8 converters | Chris Robinson | 2019-10-01 | 3 | -35/+41 |
| | |||||
* | Add some allocator fields GCC 6.3 seems to want | Chris Robinson | 2019-10-01 | 1 | -0/+6 |
| | |||||
* | Use using to avoid extraneous template instantiations | Chris Robinson | 2019-09-29 | 1 | -2/+2 |
| |