mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-21 03:52:48 +00:00
Fix logging and deadlock on stream termination
This commit is contained in:
parent
8e247ad9a6
commit
36b248be4b
@ -327,7 +327,7 @@ public class MediaCodecDecoderRenderer extends VideoDecoderRenderer {
|
|||||||
|
|
||||||
startTime = MediaCodecHelper.getMonotonicMillis();
|
startTime = MediaCodecHelper.getMonotonicMillis();
|
||||||
|
|
||||||
while (!rendererThread.isInterrupted() && index < 0) {
|
while (rendererThread.isAlive() && index < 0) {
|
||||||
index = videoDecoder.dequeueInputBuffer(500);
|
index = videoDecoder.dequeueInputBuffer(500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 67d9f52b6d3a72137f7f2fbbc81fa707befa72a5
|
Subproject commit e9b406c52e552dca6e3ad98771f5ea1b94363248
|
Loading…
x
Reference in New Issue
Block a user