[Webkit-unassigned] [Bug 34005] Safari pegs CPU and drops tons of frames using HTML5 Vimeo player

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Apr 28 09:20:14 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=34005





--- Comment #27 from Jer Noble <jer.noble at apple.com>  2010-04-28 09:20:14 PST ---
(In reply to comment #26)
> Oh, I didn't realize CoreVideo was part of the QuickTime SDK. I think the only
> reason we have a separate QTMovieWin.dll is to work around conflicts between
> QuickTime's CF and the one used by WebKit. If that isn't an issue here, then
> having WebKit link to CoreVideo seems fine. 

Unfortunately, QuickTime doesn't link against the same CoreVideo that we would,
so there's a similar situation there to the CF one.

The only remaining issue is one of constants defined in CoreVideo headers. 
Right now, we're doing things like: 
    if (buffer.pixelFormat() == kCVPixelFormat_32ARGB).  
We could convert those checks into things like: 
    if (buffer.pixelFormatIs32ARGB())
...and be in the clear there too.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list