[PATCH 0/1] MR5417: avifil32: Update lCurrentFrame in IGetFrame_fnGetFrame().
Fixes slow motion videos in Joe Danger 2: The Movies. Currently lCurrentFrame is never updated and it decodes all the frames from start. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5417
From: Paul Gofman <pgofman(a)codeweavers.com> --- dlls/avifil32/getframe.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/avifil32/getframe.c b/dlls/avifil32/getframe.c index c6df7339256..0b58c3f064f 100644 --- a/dlls/avifil32/getframe.c +++ b/dlls/avifil32/getframe.c @@ -254,6 +254,8 @@ static LPVOID WINAPI IGetFrame_fnGetFrame(IGetFrame *iface, LONG lPos) } /* for (lNext < lPos) */ } /* if (This->lCurrentFrame != lPos) */ + This->lCurrentFrame = lPos; + return (This->hic == NULL ? This->lpInFormat : This->lpOutFormat); } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5417
Hi, It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated. The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details: The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=144464 Your paranoid android. === debian11b (64 bit WoW report) === mscoree: mscoree.c:671: Test failed: CreateProcessW(L"C:\\users\\winetest\\Temp\\wct\\loadpaths0000\\loadpaths.exe") failed: 1359
participants (3)
-
Marvin -
Paul Gofman -
Paul Gofman (@gofman)