input/binary: Increase chunk size from 4KB to 4MB.
This can slightly increase performance when loading larger files.
This commit is contained in:
parent
408b6ab42b
commit
a33e4be826
|
@ -29,7 +29,7 @@
|
|||
|
||||
#define LOG_PREFIX "input/binary"
|
||||
|
||||
#define MAX_CHUNK_SIZE 4096
|
||||
#define MAX_CHUNK_SIZE (4 * 1024 * 1024)
|
||||
#define DEFAULT_NUM_CHANNELS 8
|
||||
#define DEFAULT_SAMPLERATE 0
|
||||
|
||||
|
|
Loading…
Reference in New Issue