mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Fixed the video decoder deadlock when using HW decoding.
This commit is contained in:
parent
a82582e859
commit
1f673be3c8
1 changed files with 1 additions and 1 deletions
|
@ -1531,7 +1531,7 @@ static void decode_thread_seek(double time)
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool earlier_or_close_enough(double p1, double p2) {
|
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)
|
static void decode_thread(void *data)
|
||||||
|
|
Loading…
Add table
Reference in a new issue