Skip to content

Commit

Permalink
Merge pull request #81 from kyleawayan/increase-buffer-size-for-opus-…
Browse files Browse the repository at this point in the history
…quad

Increase buffer size for incoming packets to accommodate OPUS-QUAD packets
  • Loading branch information
brunchboy authored Sep 23, 2024
2 parents 0d5df67 + c30cb65 commit de89d7c
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 de89d7c

Please sign in to comment.