[Webkit-unassigned] [Bug 170333] REGRESSION(r213764): [GTK] PNG animations are not played properly

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Apr 3 10:55:50 PDT 2017


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

--- Comment #2 from Said Abou-Hallawa <sabouhallawa at apple.com> ---
The animation issue happens because in PNGImageDecoder.h, the implementation of repetitionCount() is the following:

RepetitionCount repetitionCount() const override { return m_playCount-1; }

Since I changed the definition of RepetitionCount enum values, this function should like this:

RepetitionCount repetitionCount() const override { return m_playCount ? m_playCount : RepetitionCountInfinite; }

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170403/7b726b2b/attachment.html>


More information about the webkit-unassigned mailing list