Closed Bug 721510 Opened 12 years ago Closed 12 years ago

Always decode at least one chunk when decoding a rasterimage

Categories

(Core :: Graphics: ImageLib, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla13

People

(Reporter: justin.lebar+bug, Assigned: justin.lebar+bug)

Details

Attachments

(1 file, 2 obsolete files)

Right now, an unlucky context switch could cause us to decode 0 chunks of a rasterimage.  But for correctness purposes, we need to decode at least one chunk when doing an UNTIL_SIZE decode.

Anyway, this will make more sense with a patch.  I'm also going to fix bug 715308 comment 124 at the same time.
Assignee: nobody → justin.lebar+bug
Attached patch Patch v1 (obsolete) — Splinter Review
Review: :joedrew!
Attachment #591945 - Flags: review?(joe)
Attached patch Patch v2Splinter Review
Attachment #591956 - Flags: review?(joe)
Attachment #591945 - Attachment is obsolete: true
Attachment #591945 - Flags: review?(joe)
Comment on attachment 591956 [details] [diff] [review]
Patch v2

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

::: image/src/RasterImage.cpp
@@ +2974,5 @@
>    if (!aImg->mDecoder)
>      return NS_OK;
>  
> +  if (aImg->mDecoded)
> +    return NS_OK;

This can be folded into the condition above (with suitable adjustment of the comment), since it's really for the same case.

@@ +2999,5 @@
>    // We keep decoding chunks until one of events occurs:
> +  // 1) We're an UNTIL_SIZE decode and we get the size
> +  // 2) We don't have any data left to decode
> +  // 3) The decode completes
> +  // 4) We hit the deadline

You should probably move this documentation to right above the while condition.

@@ +3012,2 @@
>    }
> +  while ((aDecodeType != DECODE_TYPE_UNTIL_SIZE || !aImg->mHasSize) &&

I think it actually might be easier to understand if you separate this condition out of the while condition. I don't feel strongly about it, though, so do what makes the most sense to you.
Attachment #591956 - Flags: review?(joe) → review+
Landed on inbound: https://hg.mozilla.org/integration/mozilla-inbound/rev/b4decc9b812f
But backed out:    https://hg.mozilla.org/releases/mozilla-aurora/rev/d5db8b8f8c8a

because of intermittent but frequent reftest failures in bmp-corrupted/wrapper.html?invalid-compression.bmp, invalid-compression-RLE8.bmp, and invalid-compression-RLE4.bmp:
https://tbpl.mozilla.org/php/getParsedLog.php?id=8889722&tree=Mozilla-Inbound
https://tbpl.mozilla.org/php/getParsedLog.php?id=8889344&tree=Mozilla-Inbound
https://tbpl.mozilla.org/php/getParsedLog.php?id=8887615&tree=Mozilla-Inbound

For the failure I looked at, image 1 shows a blue square while image 2 is blank white.
I'm kind of surprised this caused these failures (modulo any obvious bugs I'm missing); if anything, I'd expect bug 715308 to have caused them.  But let's leave this out for a while and see if there are more test failures.
The failures did show up in a couple of changesets without this patch, so it looks like this can re-land once the tree is open again.  I filed bug 721917 for the test failures.  Sorry for the trouble!
Re-landed on inbound: https://hg.mozilla.org/integration/mozilla-inbound/rev/158354889007
Target Milestone: --- → mozilla12
https://hg.mozilla.org/mozilla-central/rev/158354889007
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
[Approval Request Comment]
See comment 131.

User impact if declined: Minimal; crash is low-frequency, reftest failure may not be human-visible.

Testing completed (on m-c, etc.): Backout.

Risk to taking this patch (and alternatives if risky): Very low risk; backing out new patch, reverting to known-good state.

String changes made by this patch: none
Attachment #593526 - Flags: review?(joe)
Attachment #593526 - Flags: approval-mozilla-aurora?
Comment on attachment 593526 [details]
Placeholder patch - Back out this and bug 721510

Dang, wrong bug.
Attachment #593526 - Flags: review?(joe)
Attachment #593526 - Flags: approval-mozilla-aurora?
Attachment #593526 - Attachment is obsolete: true
Backed out by:
https://hg.mozilla.org/mozilla-central/rev/350ba395c507
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Target Milestone: mozilla12 → ---
Blocks: 725945
Relanded by https://hg.mozilla.org/mozilla-central/rev/581a0260b08b
Status: REOPENED → RESOLVED
Closed: 12 years ago12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla13
No longer blocks: 725945
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: