mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 11:35:38 -04:00

The APNG patch for v1.6.47 isn't out yet, so I hacked in some changes to get the APNG code to build in pngrutil.c. In particular, the PNGv3 chromacity changes also modified pngrutil.c to use table-based dispatch instead of an if/else. png_read_frame_head() doesn't use this yet, so the APNG functions in pngrutil.c haven't been marked static yet, but they do now return png_handle_result_code. TODO: Rebase using the APNG patch once it's rebased for v1.6.47. NOTE: PNGv3 apparently makes APNG part of the specification, so libpng "should" gain built-in support for APNG without a patch at some point.
23 lines
950 B
Plaintext
Vendored
23 lines
950 B
Plaintext
Vendored
TODO list for libpng
|
|
--------------------
|
|
|
|
* Fix all defects (duh!)
|
|
* cHRM transformation.
|
|
* Palette creation.
|
|
* "grayscale->palette" transformation and "palette->grayscale" detection.
|
|
* Improved dithering.
|
|
* Multi-lingual error and warning message support.
|
|
* Complete sRGB transformation. (Currently it simply uses gamma=0.45455.)
|
|
* Man pages for function calls.
|
|
* Better documentation.
|
|
* Better filter selection
|
|
(e.g., counting huffman bits/precompression; filter inertia; filter costs).
|
|
* Histogram creation.
|
|
* Text conversion between different code pages (e.g., Latin-1 to Mac).
|
|
* Avoid building gamma tables whenever possible.
|
|
* Greater precision in changing to linear gamma for compositing against
|
|
background, and in doing rgb-to-gray transformations.
|
|
* Investigate pre-incremented loop counters and other loop constructions.
|
|
* Interpolated method of handling interlacing.
|
|
* More validations for libpng transformations.
|