From: José Luis Jiménez López<josejl1987@gmail.com> Verified on Windows 10. Signed-off-by: José Luis Jiménez López <josejl1987@gmail.com> --- dlls/quartz/tests/avisplit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/quartz/tests/avisplit.c b/dlls/quartz/tests/avisplit.c index b93e80770df..d0388c7a05f 100644 --- a/dlls/quartz/tests/avisplit.c +++ b/dlls/quartz/tests/avisplit.c @@ -1558,9 +1558,9 @@ static void test_seeking(void) LONGLONG frame; } rounding_tests[] = { - {4999999, 0}, - {5000000, 0}, - {15000000, 1} + {1000 * one_msec - 1, 0}, + {1000 * one_msec, 1}, + {1000 * one_msec + 1, 1}, }; IBaseFilter_FindPin(filter, L"Stream 00", &pin); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10339