Closed Bug 745178 Opened 12 years ago Closed 12 years ago

Update libpng to version 1.5.10

Categories

(Core :: Graphics: ImageLib, enhancement)

enhancement
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla15

People

(Reporter: glennrp+bmo, Assigned: glennrp+bmo)

References

()

Details

Attachments

(1 file, 5 obsolete files)

Libpng-1.5.10 has been out for a couple of weeks and seems to be stable.  The main reason for the release was to fix CVE-2011-3048, but we aren't vulnerable to that.  It also ignores multiple iCCP chunks which could give us a slight performance benefit.
Assignee: nobody → glennrp+bmo
A new feature of libpng-1.5.10 is to check for invalid palette index and iissue a warning if one is found.  Previously we allowed invalid indexes and rendered any pixels with such an invalid index to black.  The v00 patch does not enable this feature, for speed consideration (otherwise an extra pass is made over each row), so we continue to render any such pixels as black without a warning.  This is harmless.
Status: NEW → ASSIGNED
Depends on: 648690
I'll update the apng diff and give it a Try push tonight.
Added checkin header, updated MOZCHANGES
Attachment #614760 - Attachment is obsolete: true
Ryan, I found a typo that probably existed for years...

In png_get_next_frame_fcTL() we are testing the pointer to x_offset twice, but no y_offset
See also bug#745202 which disables the unnecessary palette-index testing when using the systems libpng, when PR_LOGGING is disabled.  @Max, I'll post a v02 patch fixing the typo, thanks.
Attachment #614769 - Attachment is obsolete: true
I had to fix up an ifdef in png.h, but other than that, it passes on try.
https://tbpl.mozilla.org/?tree=Try&rev=82bbfa4bd308

Also, there's a new build warning in pngpread.c. Here's the MSVC version:
pngpread.c(690) : warning C4013: 'MOZ_PNG_handle_unknown' undefined; assuming extern returning int
Glenn, how should we proceed on the new warning?
It's an error in libpng.

At line 361 in pngpread.c (APNG patched) or line 258 (unpatched)
I think we need the following instead of the two lines that are there
(splitting the "else if" into two parts):

#ifdef PNG_HANDLE_UNKNOWN_SUPPORTED
   else
#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
   if (png_chunk_unknown_handling(png_ptr, chunk_name))
#endif
Also the "else { .. } " block beginning around line 680 needs to be
enclosed in #ifdef PNG_HANDLE_UNKNOWN_SUPPORTED / #endif

I'm preparing a new patch.
This still has a broken #endif in png.h (same one I alluded to in comment 7).
+#if defined(PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED) || \
+    defined(PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED)
+PNG_EXPORT(234, void, png_set_check_for_invalid_index, (png_structp png_ptr,
+    int allowed));
+
++#endif

No need for another patch, I'll fix it locally.
Fixed "+#endif" in png.h
Attachment #617715 - Attachment is obsolete: true
declares png_handle_unknown() in pngpriv.h
Attachment #617723 - Attachment is obsolete: true
Comment on attachment 617763 [details] [diff] [review]
v05: update libpng to version 1.5.10

v05 looks good on Try.
https://tbpl.mozilla.org/?tree=Try&rev=aba02a77a80b
Attachment #617763 - Flags: review?(joe)
Comment on attachment 617763 [details] [diff] [review]
v05: update libpng to version 1.5.10

Got r+ from joe over IRC.
Attachment #617763 - Flags: review?(joe) → review+
https://hg.mozilla.org/integration/mozilla-inbound/rev/f22a06ee6a6e
Flags: in-testsuite-
Target Milestone: --- → mozilla15
https://hg.mozilla.org/mozilla-central/rev/f22a06ee6a6e
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Depends on: 771394
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: