WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
69468
media/video-loop.html is failing on Lion because of negative currentTime()
https://bugs.webkit.org/show_bug.cgi?id=69468
Summary
media/video-loop.html is failing on Lion because of negative currentTime()
Jer Noble
Reported
2011-10-05 14:57:56 PDT
Both the following tests fail because the AVFoundation back-end on Lion can report a negative currentTime. media/video-loop.html media/video-pause-immediately.html
Attachments
Patch
(1.88 KB, patch)
2011-10-06 14:10 PDT
,
Jer Noble
darin
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Jer Noble
Comment 1
2011-10-06 14:07:21 PDT
Actually, after digging into this, only video-loop.html is being affected by the negative-time problem.
Jer Noble
Comment 2
2011-10-06 14:10:19 PDT
Created
attachment 110017
[details]
Patch
Darin Adler
Comment 3
2011-10-06 16:07:39 PDT
Comment on
attachment 110017
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=110017&action=review
> Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:435 > + float seconds = narrowPrecisionToFloat(CMTimeGetSeconds(itemTime)); > + return max(seconds, 0.0f);
Should not need a local variable for this. Probably reads better without it.
Jer Noble
Comment 4
2011-10-06 16:37:25 PDT
(In reply to
comment #3
)
> (From update of
attachment 110017
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=110017&action=review
> > > Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:435 > > + float seconds = narrowPrecisionToFloat(CMTimeGetSeconds(itemTime)); > > + return max(seconds, 0.0f); > > Should not need a local variable for this. Probably reads better without it.
You're right; I was thinking of the MAX macro. I'll change this. Thanks!
Jer Noble
Comment 5
2011-10-10 15:00:40 PDT
Committed
r97093
: <
http://trac.webkit.org/changeset/97093
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug