mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-25 09:33:50 +00:00
added libraries: opus flac libsndfile updated: libvorbis libogg openal - Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
10 lines
264 B
C
10 lines
264 B
C
#ifndef LOADSOFA_H
|
|
#define LOADSOFA_H
|
|
|
|
#include "makemhr.h"
|
|
|
|
|
|
bool LoadSofaFile(const char *filename, const uint numThreads, const uint fftSize,
|
|
const uint truncSize, const uint outRate, const ChannelModeT chanMode, HrirDataT *hData);
|
|
|
|
#endif /* LOADSOFA_H */
|