Skip to content

Commit a317a40

Browse files
committedApr 19, 2022
increase wav file buffer from 1218b to 256b
1 parent 2e7862a commit a317a40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎BoxDAC.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ bool BoxDAC::playFile(const char* path) {
280280
}
281281
bool BoxDAC::_playWAV(const char* path) {
282282
AudioGeneratorWAV *ag = new AudioGeneratorWAV();
283-
ag->SetBufferSize(128);
283+
ag->SetBufferSize(256); //128b works, too
284284

285285
audioGenerator = ag;
286286
audioSource = new AudioFileSourceFatFs(path);

0 commit comments

Comments
 (0)
Please sign in to comment.