mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 16:13:40 +00:00
Fixed the video decoder deadlock when using HW decoding.
This commit is contained in:
parent
a82582e859
commit
1f673be3c8
@ -1531,7 +1531,7 @@ static void decode_thread_seek(double time)
|
||||
}
|
||||
|
||||
static bool earlier_or_close_enough(double p1, double p2) {
|
||||
return (p1 <= p2 || (p1-p2) <= 0.1);
|
||||
return (p1 <= p2 || (p1-p2) <= 0.001);
|
||||
}
|
||||
|
||||
static void decode_thread(void *data)
|
||||
|
Loading…
x
Reference in New Issue
Block a user