loaddef.h 379 B

12345678910111213141516
  1. #ifndef LOADDEF_H
  2. #define LOADDEF_H
  3. #include <istream>
  4. #include <string_view>
  5. #include "alspan.h"
  6. #include "makemhr.h"
  7. bool LoadDefInput(std::istream &istream, const al::span<const char> startbytes,
  8. const std::string_view filename, const uint fftSize, const uint truncSize, const uint outRate,
  9. const ChannelModeT chanMode, HrirDataT *hData);
  10. #endif /* LOADDEF_H */