please explain buffers #663
-
i know nothing about java and audio systems can someone please explain what is |
Beta Was this translation helpful? Give feedback.
Answered by
topi314
Oct 31, 2022
Replies: 1 comment
-
the NAS buffer is a buffer for audio kept in native code where it isn't affected by java garbage collection pauses the frame buffer is kept in the jvm and is simply how many ms of audio to keep in memory |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
topi314
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the NAS buffer is a buffer for audio kept in native code where it isn't affected by java garbage collection pauses
this is done to reduce lags due to gc pauses
the frame buffer is kept in the jvm and is simply how many ms of audio to keep in memory