Skip to content

Commit

Permalink
Merge pull request #83 from kyleawayan/buffer-size-for-opus-quad
Browse files Browse the repository at this point in the history
Increase buffer size for incoming packets to accommodate OPUS-QUAD packets
  • Loading branch information
brunchboy authored Sep 24, 2024
2 parents c951436 + bd78fbc commit d706561
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ private boolean createVirtualRekordbox() throws Exception {
* @return the thread
*/
private Thread createStatusReceiver() {
final byte[] buffer = new byte[512];
final byte[] buffer = new byte[1420];
final DatagramPacket packet = new DatagramPacket(buffer, buffer.length);

// Create the update reception thread
Expand Down

0 comments on commit d706561

Please sign in to comment.