Merge pull request #386 from CyberBotX/sample-rate

Up the max sample rate to 128K.
This commit is contained in:
Christopher Snowhill 2019-03-30 17:26:00 -07:00 committed by GitHub
commit 95e65ea405
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ enum { PATH_LIMIT = 32768 };
enum { STREAM_NAME_SIZE = 255 };
enum { VGMSTREAM_MAX_CHANNELS = 64 };
enum { VGMSTREAM_MIN_SAMPLE_RATE = 300 }; /* 300 is Wwise min */
enum { VGMSTREAM_MAX_SAMPLE_RATE = 96000 };
enum { VGMSTREAM_MAX_SAMPLE_RATE = 128000 };
enum { VGMSTREAM_MAX_SUBSONGS = 65535 };
#include "streamfile.h"