libpng/KNOWNBUG

83 lines
2.8 KiB
Plaintext
Raw Normal View History

1998-04-21 16:03:57 -04:00
2000-03-21 06:13:06 -05:00
Known bugs and suggested enhancements in libpng-1.0.6
1998-04-21 16:03:57 -04:00
2000-04-01 22:10:05 -05:00
1. April 1, 2000 -- BUG
1998-04-21 16:03:57 -04:00
2000-04-01 22:10:05 -05:00
Under some circumstances old applications that make direct access to
the info_ptr->text and its members might free the same memory that
is also free'ed by libpng during the png_destroy_struct process.
2000-04-07 11:34:56 -04:00
Fixed in libpng-1.0.6-patch-03 and libpng-1.0.6d. The PNG_FREE_TEXT flag
2000-04-01 22:10:05 -05:00
bit in info_ptr->free_me is now checked to make sure libpng is responsible
for freeing the memory.
2. April 1, 2000 -- BUG
The non-ISO-C "strdup()" function is used in png.c
STATUS: The function has been simplified and no longer uses strdup()
2000-04-07 11:34:56 -04:00
in libpng-1.0.6-patch-03 and libpng-1.0.6d.
2000-04-01 22:10:05 -05:00
3. March 24, 2000 -- BUG
The png_set_rgb_to_gray_fixed() function is setting incorrect weighting
factors.
2000-04-07 11:34:56 -04:00
STATUS: Fixed in libpng-1.0.6-patch-02 and libpng-1.0.6d.
2000-04-01 22:10:05 -05:00
4. March 22, 2000 -- BUG
There are some printf() and fprintf() statements active in pngwutil.c
when PNG_NO_STDIO and PNG_sCAL_SUPPORTED are both defined.
2000-04-07 11:34:56 -04:00
STATUS: Fixed in libpng-1.0.6-patch-01 and libpng-1.0.6d. The strcpy()
2000-04-01 22:10:05 -05:00
function is used instead.
5. March 22, 2000 -- BUG
The length of the iCCP chunk data is calculated incorrectly; because
it can contain zeroes, strlen() doesn't work.
2000-04-07 11:34:56 -04:00
STATUS: Fixed in libpng-1.0.6-patch-01 and libpng-1.0.6d by adding a
data_length parameter to the png_decompress_chunk() function.
2000-04-01 22:10:05 -05:00
6. March 15, 1998 -- OPTIMIZATION -- Kevin Bracey
1998-04-21 16:03:57 -04:00
Loops need to be optimized everywhere
1998-06-14 15:43:31 -04:00
Make them count down instead of up -- Kevin Bracey
1998-12-29 12:47:59 -05:00
1998-06-14 15:43:31 -04:00
Optimizing compilers don't need this, and making
the change would be error prone -- Tom Lane, Glenn R-P
1998-06-06 16:31:35 -04:00
1998-06-14 15:43:31 -04:00
Question whether i-- or --i is better.
1998-06-06 16:31:35 -04:00
1998-06-14 15:43:31 -04:00
STATUS: Under investigation, postponed until after
1999-12-10 10:43:02 -05:00
libpng-1.1.0. About 160 loops will be turned around
in libpng-1.1.Nn, for testing.
1998-12-29 12:47:59 -05:00
2000-04-01 22:10:05 -05:00
7. July 4, 1998 -- ENHANCEMENT -- Glenn R-P
1998-12-29 12:47:59 -05:00
1999-10-01 15:22:25 -04:00
libpng-1.0.5 and earlier transform colors to gamma=1.0 space for
1998-12-29 12:47:59 -05:00
merging with background, and then back to the image's gamma. The
bit_depth of the intermediate (gamma=1.0) representation is probably
not sufficient. In the typical gamma=1/2.2 situation, the linear
pixels need about 4 more bits than the gamma-encoded ones, to avoid
loss of precision. A similar situation exists with the rgb_to_gray
operation.
STATUS: under development.
2000-04-01 22:10:05 -05:00
8. September 1999 -- ENHANCEMENT --
1999-09-17 13:27:26 -04:00
It should be possible to use libpng without floating-point aritmetic.
STATUS: Under investigation, implementation postponed until after
2000-04-07 11:34:56 -04:00
libpng-1.0.6. The application interface will change because replacements
1999-09-17 13:27:26 -04:00
for the png_set_gAMA(), png_set_cHRM(), and corresponding png_get_()
functions will be needed.
1998-06-06 16:31:35 -04:00
2000-04-01 22:10:05 -05:00
Much of this was completed in libpng-1.0.6, but gamma compensation
2000-02-05 00:40:16 -05:00
is not yet done in fixed-point arithmetic.