Relax check_sample_rate util to allow 300hz (Wwise lowest)

This commit is contained in:
bnnm 2017-04-11 20:00:35 +02:00
parent a468898855
commit b6d89a0f47

View File

@ -3,7 +3,7 @@
#include "streamtypes.h"
int check_sample_rate(int32_t sr) {
return !(sr<1000 || sr>96000);
return !(sr<300 || sr>96000);
}
const char * filename_extension(const char * filename) {