reduce buffer size

This commit is contained in:
filifa 2024-08-22 22:36:45 -05:00
parent e5172787a1
commit 15d3f6200f
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func main() {
}
}
audioData := make([]int16, 4096)
audioData := make([]int16, 2048)
err = binary.Read(reader, binary.LittleEndian, audioData)
if err != nil {