This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
libpng/KNOWNBUG

49 lines
1.6 KiB
Plaintext
Raw Normal View History

1998-04-21 15:03:57 -05:00
2000-07-24 06:34:14 -05:00
Known bugs and suggested enhancements in libpng-1.0.8
1998-04-21 15:03:57 -05:00
2000-07-08 13:19:41 -05:00
1. July 2, 2000 -- BUG -- pnggccrd.c
2000-07-14 08:15:12 -05:00
The png_read_filter() function has still not been fully converted and
will not compile under gcc-2.95.2; it is currently ifdef'ed out.
2000-07-24 06:34:14 -05:00
STATUS: Under investigation. Experts on MMX assembler code are
invited to help with the debugging. Note that pngvcrd.c works fine.
2000-07-08 13:19:41 -05:00
2000-07-24 06:34:14 -05:00
2. March 15, 1998 -- OPTIMIZATION -- Kevin Bracey
1998-04-21 15:03:57 -05:00
Loops need to be optimized everywhere
1998-06-14 14:43:31 -05:00
Make them count down instead of up -- Kevin Bracey
1998-12-29 11:47:59 -06:00
1998-06-14 14:43:31 -05:00
Optimizing compilers don't need this, and making
the change would be error prone -- Tom Lane, Glenn R-P
1998-06-06 15:31:35 -05:00
1998-06-14 14:43:31 -05:00
Question whether i-- or --i is better.
1998-06-06 15:31:35 -05:00
1998-06-14 14:43:31 -05:00
STATUS: Under investigation, postponed until after
2000-07-24 06:34:14 -05:00
libpng-2.0.0. About 160 loops will be turned around
2000-07-08 13:19:41 -05:00
in libpng-2.0.x betaxx, for testing.
1998-12-29 11:47:59 -06:00
2000-07-24 06:34:14 -05:00
3. July 4, 1998 -- ENHANCEMENT -- Glenn R-P
1998-12-29 11:47:59 -06:00
1999-10-01 14:22:25 -05:00
libpng-1.0.5 and earlier transform colors to gamma=1.0 space for
1998-12-29 11:47:59 -06: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-07-24 06:34:14 -05:00
4. September 1999 -- ENHANCEMENT --
1999-09-17 12:27:26 -05:00
It should be possible to use libpng without floating-point aritmetic.
STATUS: Under investigation, implementation postponed until after
2000-07-24 06:34:14 -05:00
libpng-2.0.0.
1998-06-06 15:31:35 -05:00
2000-04-01 21:10:05 -06:00
Much of this was completed in libpng-1.0.6, but gamma compensation
2000-02-04 23:40:16 -06:00
is not yet done in fixed-point arithmetic.