blob: 34fbb832b057f9c18aa34da9d0599a8ec03a674b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef LOADDEF_H
#define LOADDEF_H
#include <istream>
#include "makemhr.h"
bool LoadDefInput(std::istream &istream, const char *startbytes, std::streamsize startbytecount,
const char *filename, const uint fftSize, const uint truncSize, const ChannelModeT chanMode,
HrirDataT *hData);
#endif /* LOADDEF_H */
|