mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 19:13:03 +00:00
Revert the DU_LIMIT changes due to variance in platform audio rendering speed
This commit is contained in:
parent
932bb1145b
commit
dfa3be78e4
@ -7,7 +7,7 @@ import com.limelight.nvstream.av.RtpPacket;
|
||||
|
||||
public class AudioDepacketizer {
|
||||
|
||||
private static final int DU_LIMIT = 5;
|
||||
private static final int DU_LIMIT = 15;
|
||||
private LinkedBlockingQueue<ByteBufferDescriptor> decodedUnits =
|
||||
new LinkedBlockingQueue<ByteBufferDescriptor>(DU_LIMIT);
|
||||
|
||||
|
@ -23,7 +23,7 @@ public class VideoDepacketizer {
|
||||
|
||||
private ConnectionStatusListener controlListener;
|
||||
|
||||
private static final int DU_LIMIT = 5;
|
||||
private static final int DU_LIMIT = 15;
|
||||
private LinkedBlockingQueue<DecodeUnit> decodedUnits = new LinkedBlockingQueue<DecodeUnit>(DU_LIMIT);
|
||||
|
||||
public VideoDepacketizer(ConnectionStatusListener controlListener)
|
||||
|
Loading…
x
Reference in New Issue
Block a user