~ubuntu-branches/ubuntu/raring/wxwidgets2.8/raring

« back to all changes in this revision

Viewing changes to src/png/TODO

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2012-01-07 13:59:25 UTC
  • mfrom: (1.1.9) (5.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20120107135925-2601miy9ullcon9j
Tags: 2.8.12.1-6ubuntu1
* Resync from Debian, changes that were kept:
  - debian/rules: re-enable mediactrl. This allows libwx_gtk2u_media-2.8 to be
    built, as this is required by some applications (LP: #632984)
  - debian/control: Build-dep on libxt-dev for mediactrl.
  - Patches
    + fix-bashism-in-example
* Add conflict on python-wxgtk2.8 (<< 2.8.12.1-6ubuntu1~) to python-wxversion
  to guarantee upgrade ordering when moving from pycentral to dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
TODO - list of things to do for libpng:
2
 
 
3
 
Final bug fixes.
4
 
Improve API by hiding the png_struct and png_info structs.
5
 
Finish work on the no-floating-point version (including gamma compensation)
6
 
Better C++ wrapper/full C++ implementation?
7
 
Fix problem with C++ and EXTERN "C".
8
 
cHRM transformation.
9
 
Improve setjmp/longjmp usage or remove it in favor of returning error codes.
10
 
Add "grayscale->palette" transformation and "palette->grayscale" detection.
11
 
Improved dithering.
12
 
Multi-lingual error and warning message support.
13
 
Complete sRGB transformation (presently it simply uses gamma=0.45455).
14
 
Man pages for function calls.
15
 
Better documentation.
16
 
Better filter selection
17
 
   (counting huffman bits/precompression?  filter inertia?  filter costs?).
18
 
Histogram creation.
19
 
Text conversion between different code pages (Latin-1 -> Mac and DOS).
20
 
Should we always malloc 2^bit_depth PLTE/tRNS/hIST entries for safety?
21
 
Build gamma tables using fixed point (and do away with floating point entirely).
22
 
Use greater precision when changing to linear gamma for compositing against
23
 
  background and doing rgb-to-gray transformation.
24
 
Investigate pre-incremented loop counters and other loop constructions.