Closed Bug 1352282 Opened 7 years ago Closed 7 years ago

fix png decoder to set loop count even for first frame only decodes

Categories

(Core :: Graphics: ImageLib, enhancement)

enhancement
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla55
Tracking Status
firefox55 --- fixed

People

(Reporter: tnikkel, Assigned: tnikkel)

References

Details

Attachments

(2 files, 2 obsolete files)

First frame only decodes of pngs do not parse the loop count, so the loop count gets a default value of 0. 0 is actually treated like a finite loop in FrameAnimator. (-1 is infinite loop). If you get the right order of events when there is an animated and first frame only decode both in flight at the same time the wrong value of 0 can overwrite the correct value of -1, and then FrameAnimator treats this as a finite loop and decides its finished animating and stops the animation. test_discardAnimatedImages.html actually caught this but it didn't make the test turn red cause we don't check for that specifically (ie if you ran it locally you saw the problem).
Attached patch patch (obsolete) — Splinter Review
Attachment #8853209 - Flags: review?(aosmond)
Attached patch improve the test to catch this (obsolete) — Splinter Review
I verified that this would have caught this bug.
Attachment #8853318 - Flags: review?(aosmond)
Comment on attachment 8853209 [details] [diff] [review]
patch

Review of attachment 8853209 [details] [diff] [review]:
-----------------------------------------------------------------

Couldn't we just fix the decoder to always post the frame loop count when it is finished like the GIF decoder (looks like I did WebP animations to match the GIF decoder behaviour too)? I would prefer the behaviour of decoders be consistent, unless there is obvious overhead we want to avoid, and avoid comments in the code which suggest the metadata isn't trustworthy when it really is. While some animated parameters are conditional on a full decode, it makes a lot of sense why those particular parameters are unknown (refresh area, loop length in milliseconds) unless we do a full decode.

The animation control chunk stores the number of frames and the loop count -- we know it has been encountered already because we use that in the metadata decoding (and according to the spec, guaranteed to be before any frame data). I think it amounts to moving this chunk of code into nsPNGDecoder::FinishInternal:

http://searchfox.org/mozilla-central/rev/72fe012899a1b27d34838ab463ad1ae5b116d76b/image/decoders/nsPNGDecoder.cpp#1028

We can safely ignore the nsPNGDecoder::FinishInternalWithError method because nsPNGDecoder::end_callback ends the decoding successfully immediately after (and even asserts to make sure we don't have an error set). The updated test case is still good though I imagine :).
Comment on attachment 8853318 [details] [diff] [review]
improve the test to catch this

Review of attachment 8853318 [details] [diff] [review]:
-----------------------------------------------------------------

::: image/test/mochitest/test_discardAnimatedImage.html
@@ +99,4 @@
>      gNumDiscards++;
>      ok(true, "got image discard");
> +    if (arrayIndex >= 2) {
> +      // The last two images are finite, so we don't expect any frame updates,

Shouldn't we expect at least two frame updates? At least one update while/just after the first frame decodes, from the decoder itself via Decoder::PostInvalidation (>= 1 for APNG, == 1 for GIF), and one update from the refresh request which it switches frames via RasterImage::RequestRefresh (>= 1, no matter how many frames as it could skip them)? The gNumFrameUpdates could count down from the number of expected updates to simplify the logic (since there are multiple thresholds if you do this).
(In reply to Andrew Osmond [:aosmond] from comment #4)
> Shouldn't we expect at least two frame updates? At least one update
> while/just after the first frame decodes, from the decoder itself via
> Decoder::PostInvalidation (>= 1 for APNG, == 1 for GIF),

I think I'd consider that a bug. Since we aren't going to paint the first frame.

> and one update from
> the refresh request which it switches frames via RasterImage::RequestRefresh
> (>= 1, no matter how many frames as it could skip them)? The

It should skip them all actually. FrameAnimator::RequestRefresh should never be called because the animation is finished, so the RasterImage will have mAnimating = false. The composited frame still has the final frame from before the discard (we don't discard the composited frame yet).
Attached patch improve test v2Splinter Review
This test checks that drawImage actually draws something. The required me to change the finite gif because the first frame of the previous finite gif was completely transparent. Since drawImage is first frame only I also take a snapshot of the two infinite gifs and check that they actually change in addition to getting frame update msgs.

I also added a couple setTimeout(..,0) because we weren't usually painting the images to the screen before we marked them display none. Paint suppression isn't always over when the load event fires, to be sure paint suppression is over you have to do a setTimeout from the load event. In addition I made sure layout was flushed before requesting discard: if we didn't flush layout it's possible we'd hold a lock to the images and so the discard request would be ignored. I didn't observe this however.
Attachment #8853318 - Attachment is obsolete: true
Attachment #8853318 - Flags: review?(aosmond)
Attachment #8853612 - Flags: review?(aosmond)
Attached patch patch v2Splinter Review
Attachment #8853209 - Attachment is obsolete: true
Attachment #8853209 - Flags: review?(aosmond)
Attachment #8854194 - Flags: review?(aosmond)
Attachment #8854194 - Flags: review?(aosmond) → review+
Attachment #8853612 - Flags: review?(aosmond) → review+
Pushed by tnikkel@gmail.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/5bd86eea082a
Always fill in the number of loops when decoding an APNG file. r=aosmond
https://hg.mozilla.org/integration/mozilla-inbound/rev/cb514a085715
Improve test_discardAnimatedImage.html to check that the animation continues when we re-decode. r=aosmond
Summary: only set animation related values if we weren't doing a first frame only decode → fix png decoder to set loop count even for first frame only decodes
Pushed by tnikkel@gmail.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/5aa7fb0cc00c
In test_discardAnimatedImage.html call drawWindow from a setTimeout from frame update notification.
(In reply to Pulsebot from comment #10)
> Pushed by tnikkel@gmail.com:
> https://hg.mozilla.org/integration/mozilla-inbound/rev/5aa7fb0cc00c
> In test_discardAnimatedImage.html call drawWindow from a setTimeout from
> frame update notification.

I pushed a followup to the test based on an assert I was getting intermittently on try server.
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: