From: Jose JL <josejl1987@gmail.com> --- dlls/quartz/tests/avisplit.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/quartz/tests/avisplit.c b/dlls/quartz/tests/avisplit.c index a926e3ff900..ab7c4dae7fb 100644 --- a/dlls/quartz/tests/avisplit.c +++ b/dlls/quartz/tests/avisplit.c @@ -1472,6 +1472,7 @@ static void test_unconnected_filter_state(void) ref = IBaseFilter_Release(filter); ok(!ref, "Got outstanding refcount %ld.\n", ref); } + static void test_seeking(void) { LONGLONG time, current, stop, prev_stop, earliest, latest, duration; @@ -1716,8 +1717,8 @@ static void test_seeking(void) hr = IMediaSeeking_SetPositions(seeking, ¤t, AM_SEEKING_AbsolutePositioning, &stop, AM_SEEKING_AbsolutePositioning); ok(hr == S_OK, "Got hr %#lx.\n", hr); - ok(current == 1500 * 10000, "Got time %s.\n", wine_dbgstr_longlong(current)); - ok(stop == 3500 * 10000, "Got time %s.\n", wine_dbgstr_longlong(stop)); + ok(current == seek_start, "Got time %s.\n", wine_dbgstr_longlong(current)); + ok(stop == seek_stop, "Got time %s.\n", wine_dbgstr_longlong(stop)); stop = current = invalid_time; hr = IMediaSeeking_GetPositions(seeking, ¤t, &stop); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10339