Skip to content

Commit

Permalink
Increase buffer size for incoming packets to accommodate OPUS-QUAD pa…
Browse files Browse the repository at this point in the history
…ckets
  • Loading branch information
kyleawayan committed Sep 22, 2024
1 parent 0d5df67 commit c30cb65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ private boolean createVirtualRekordbox() throws Exception {
}

// Set up our buffer and packet to receive incoming messages.
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 c30cb65

Please sign in to comment.