Changeset 211242 in webkit


Ignore:
Timestamp:
Jan 26, 2017 4:57:36 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r210328.
https://bugs.webkit.org/show_bug.cgi?id=167476

Blocking bug is fixed <rdar://problem/29957753> (Requested by
keith_miller on #webkit).

Reverted changeset:

"Disable smooth playhead animation for main content media in
the Touch Bar"
https://bugs.webkit.org/show_bug.cgi?id=166715
http://trac.webkit.org/changeset/210328

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r211241 r211242  
     12017-01-26  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r210328.
     4        https://bugs.webkit.org/show_bug.cgi?id=167476
     5
     6        Blocking bug is fixed <rdar://problem/29957753> (Requested by
     7        keith_miller on #webkit).
     8
     9        Reverted changeset:
     10
     11        "Disable smooth playhead animation for main content media in
     12        the Touch Bar"
     13        https://bugs.webkit.org/show_bug.cgi?id=166715
     14        http://trac.webkit.org/changeset/210328
     15
    1162017-01-26  Joseph Pecoraro  <pecoraro@apple.com>
    217
  • trunk/Source/WebCore/platform/mac/WebPlaybackSessionInterfaceMac.mm

    r210328 r211242  
    221221        effectivePlaybackRate = 0;
    222222
    223     // FIXME: The timing value should ideally use the effective playback rate, but this causes AVKit to indefinitely fire a repeating timer.
    224     // More investigation will be required before we re-enable smooth playhead animation -- for now, we should just pretend that the playback
    225     // rate is always 0.
    226     manager.timing = [getAVValueTimingClass() valueTimingWithAnchorValue:currentTime anchorTimeStamp:effectiveAnchorTime rate:0];
     223    manager.timing = [getAVValueTimingClass() valueTimingWithAnchorValue:currentTime anchorTimeStamp:effectiveAnchorTime rate:effectivePlaybackRate];
    227224}
    228225
Note: See TracChangeset for help on using the changeset viewer.