aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/converter.c
Commit message (Collapse)AuthorAgeFilesLines
* Use a different way to get the size of structs with flexible array membersChris Robinson2017-04-181-1/+1
|
* Mark some pointers with restrictChris Robinson2017-04-131-2/+4
|
* Store the ambisonic order separate from the channel enumChris Robinson2017-04-121-1/+1
|
* Remove an unnecessary variableChris Robinson2017-04-111-6/+2
|
* Use the correct channel conversion functionsChris Robinson2017-04-111-16/+16
|
* Add a mono<->stereo converterChris Robinson2017-04-111-0/+122
| | | | This converter always outputs floats, and uses energy-preserving scaling.
* Update the given source pointer in the sample converterChris Robinson2017-04-101-4/+4
|
* Add a sample converterChris Robinson2017-04-101-0/+332
This is intended to do conversions for interleaved samples, and supports changing from one DevFmtType to another as well as resampling. It does not handle remixing channels. The mixer is more optimized to use the resampling functions directly. However, this should prove useful for recording with certain backends that won't do the conversion themselves.