Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clear trailing whitespace from the loaded ambdec description | Chris Robinson | 2022-09-15 | 1 | -0/+2 |
| | |||||
* | Use the correct va_list for the second vsnprintf | Chris Robinson | 2022-09-14 | 1 | -1/+1 |
| | |||||
* | Use ifstream's wchar_t constructors on Windows | Chris Robinson | 2022-09-12 | 1 | -1/+1 |
| | | | | MinGW seems to have added them a while ago, so that greatly simplifies things. | ||||
* | Don't pack ambdec coefficients | Chris Robinson | 2022-09-12 | 1 | -4/+3 |
| | | | | | | | | | Tne coefficients are placed as for full 3D ACN handling. The ChanMask just indicates which have potentially useful values. This could be a bit more agressive and clear ChanMask bits for channels that don't contribute to output, so that a decoder the specifies height-related channel bits, but leaves their coefficients all 0, can be handled as 2D. I don't expect many ambdec files to be like that, though. | ||||
* | Simplify ambdec loading | Chris Robinson | 2022-09-12 | 1 | -236/+156 |
| | |||||
* | Ensure coeff_scale is set for ambdec files | Chris Robinson | 2022-09-11 | 1 | -5/+10 |
| | |||||
* | Reject ambdec files with higher than third order and FuMa scaling | Chris Robinson | 2022-09-11 | 1 | -13/+15 |
| | |||||
* | Explicitly define AmbDecConf's destructor | Chris Robinson | 2022-02-22 | 1 | -0/+3 |
| | | | | | | GCC complains it can't inline the destructor because it's "unlikely" to be called and would bloat code size, despite being implicitly defined. Technically accurate, but rather annoying since it's not explicitly called or defined. | ||||
* | Handle spaces in the ambdec description | Chris Robinson | 2021-06-24 | 1 | -1/+1 |
| | |||||
* | Return an optional for an error | Chris Robinson | 2020-12-25 | 1 | -191/+79 |
| | |||||
* | Avoid dynamic vectors in AmbDecConf | Chris Robinson | 2020-12-25 | 1 | -15/+68 |
| | | | | Also add a bit more sanity checking | ||||
* | Move the ambdec loader to core | Chris Robinson | 2020-12-25 | 1 | -0/+434 |