http://bugs.winehq.org/show_bug.cgi?id=25606
Tom Kaminski ttkaminski@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |ttkaminski@gmail.com
--- Comment #2 from Tom Kaminski ttkaminski@gmail.com 2011-01-28 14:21:36 CST --- I am the developer of Clones and I looked into this problem. The function that I have:
LONGLONG VideoTexturePlayer::GetCurrentPosition() { LONGLONG cur = 0; HRESULT rr = pMediaSeeking->GetCurrentPosition(&cur); // IMediaSeeking interface return cur; }
Always returns zero, in the latest version of wine, but it works correctly in wine 1.2 and earlier. This is consistent with the previous poster narrowing down the problem to the specific patch "quartz: Remove position from filtergraph."
Because the function returns 0, the end of the video is never detected, and so it hangs and the player can't continue. Hopefully the patch is reverted or fixed soon.