Blame gtkmm-osx/jpeg-6b/change.log

darco 56a656
CHANGE LOG for Independent JPEG Group's JPEG software
darco 56a656
darco 56a656
darco 56a656
Version 6b  27-Mar-1998
darco 56a656
-----------------------
darco 56a656
darco 56a656
jpegtran has new features for lossless image transformations (rotation
darco 56a656
and flipping) as well as "lossless" reduction to grayscale.
darco 56a656
darco 56a656
jpegtran now copies comments by default; it has a -copy switch to enable
darco 56a656
copying all APPn blocks as well, or to suppress comments.  (Formerly it
darco 56a656
always suppressed comments and APPn blocks.)  jpegtran now also preserves
darco 56a656
JFIF version and resolution information.
darco 56a656
darco 56a656
New decompressor library feature: COM and APPn markers found in the input
darco 56a656
file can be saved in memory for later use by the application.  (Before,
darco 56a656
you had to code this up yourself with a custom marker processor.)
darco 56a656
darco 56a656
There is an unused field "void * client_data" now in compress and decompress
darco 56a656
parameter structs; this may be useful in some applications.
darco 56a656
darco 56a656
JFIF version number information is now saved by the decoder and accepted by
darco 56a656
the encoder.  jpegtran uses this to copy the source file's version number,
darco 56a656
to ensure "jpegtran -copy all" won't create bogus files that contain JFXX
darco 56a656
extensions but claim to be version 1.01.  Applications that generate their
darco 56a656
own JFXX extension markers also (finally) have a supported way to cause the
darco 56a656
encoder to emit JFIF version number 1.02.
darco 56a656
darco 56a656
djpeg's trace mode reports JFIF 1.02 thumbnail images as such, rather
darco 56a656
than as unknown APP0 markers.
darco 56a656
darco 56a656
In -verbose mode, djpeg and rdjpgcom will try to print the contents of
darco 56a656
APP12 markers as text.  Some digital cameras store useful text information
darco 56a656
in APP12 markers.
darco 56a656
darco 56a656
Handling of truncated data streams is more robust: blocks beyond the one in
darco 56a656
which the error occurs will be output as uniform gray, or left unchanged
darco 56a656
if decoding a progressive JPEG.  The appearance no longer depends on the
darco 56a656
Huffman tables being used.
darco 56a656
darco 56a656
Huffman tables are checked for validity much more carefully than before.
darco 56a656
darco 56a656
To avoid the Unisys LZW patent, djpeg's GIF output capability has been
darco 56a656
changed to produce "uncompressed GIFs", and cjpeg's GIF input capability
darco 56a656
has been removed altogether.  We're not happy about it either, but there
darco 56a656
seems to be no good alternative.
darco 56a656
darco 56a656
The configure script now supports building libjpeg as a shared library
darco 56a656
on many flavors of Unix (all the ones that GNU libtool knows how to
darco 56a656
build shared libraries for).  Use "./configure --enable-shared" to
darco 56a656
try this out.
darco 56a656
darco 56a656
New jconfig file and makefiles for Microsoft Visual C++ and Developer Studio.
darco 56a656
Also, a jconfig file and a build script for Metrowerks CodeWarrior
darco 56a656
on Apple Macintosh.  makefile.dj has been updated for DJGPP v2, and there
darco 56a656
are miscellaneous other minor improvements in the makefiles.
darco 56a656
darco 56a656
jmemmac.c now knows how to create temporary files following Mac System 7
darco 56a656
conventions.
darco 56a656
darco 56a656
djpeg's -map switch is now able to read raw-format PPM files reliably.
darco 56a656
darco 56a656
cjpeg -progressive -restart no longer generates any unnecessary DRI markers.
darco 56a656
darco 56a656
Multiple calls to jpeg_simple_progression for a single JPEG object
darco 56a656
no longer leak memory.
darco 56a656
darco 56a656
darco 56a656
Version 6a  7-Feb-96
darco 56a656
--------------------
darco 56a656
darco 56a656
Library initialization sequence modified to detect version mismatches
darco 56a656
and struct field packing mismatches between library and calling application.
darco 56a656
This change requires applications to be recompiled, but does not require
darco 56a656
any application source code change.
darco 56a656
darco 56a656
All routine declarations changed to the style "GLOBAL(type) name ...",
darco 56a656
that is, GLOBAL, LOCAL, METHODDEF, EXTERN are now macros taking the
darco 56a656
routine's return type as an argument.  This makes it possible to add
darco 56a656
Microsoft-style linkage keywords to all the routines by changing just
darco 56a656
these macros.  Note that any application code that was using these macros
darco 56a656
will have to be changed.
darco 56a656
darco 56a656
DCT coefficient quantization tables are now stored in normal array order
darco 56a656
rather than zigzag order.  Application code that calls jpeg_add_quant_table,
darco 56a656
or otherwise manipulates quantization tables directly, will need to be
darco 56a656
changed.  If you need to make such code work with either older or newer
darco 56a656
versions of the library, a test like "#if JPEG_LIB_VERSION >= 61" is
darco 56a656
recommended.
darco 56a656
darco 56a656
djpeg's trace capability now dumps DQT tables in natural order, not zigzag
darco 56a656
order.  This allows the trace output to be made into a "-qtables" file
darco 56a656
more easily.
darco 56a656
darco 56a656
New system-dependent memory manager module for use on Apple Macintosh.
darco 56a656
darco 56a656
Fix bug in cjpeg's -smooth option: last one or two scanlines would be
darco 56a656
duplicates of the prior line unless the image height mod 16 was 1 or 2.
darco 56a656
darco 56a656
Repair minor problems in VMS, BCC, MC6 makefiles.
darco 56a656
darco 56a656
New configure script based on latest GNU Autoconf.
darco 56a656
darco 56a656
Correct the list of include files needed by MetroWerks C for ccommand().
darco 56a656
darco 56a656
Numerous small documentation updates.
darco 56a656
darco 56a656
darco 56a656
Version 6  2-Aug-95
darco 56a656
-------------------
darco 56a656
darco 56a656
Progressive JPEG support: library can read and write full progressive JPEG
darco 56a656
files.  A "buffered image" mode supports incremental decoding for on-the-fly
darco 56a656
display of progressive images.  Simply recompiling an existing IJG-v5-based
darco 56a656
decoder with v6 should allow it to read progressive files, though of course
darco 56a656
without any special progressive display.
darco 56a656
darco 56a656
New "jpegtran" application performs lossless transcoding between different
darco 56a656
JPEG formats; primarily, it can be used to convert baseline to progressive
darco 56a656
JPEG and vice versa.  In support of jpegtran, the library now allows lossless
darco 56a656
reading and writing of JPEG files as DCT coefficient arrays.  This ability
darco 56a656
may be of use in other applications.
darco 56a656
darco 56a656
Notes for programmers:
darco 56a656
* We changed jpeg_start_decompress() to be able to suspend; this makes all
darco 56a656
decoding modes available to suspending-input applications.  However,
darco 56a656
existing applications that use suspending input will need to be changed
darco 56a656
to check the return value from jpeg_start_decompress().  You don't need to
darco 56a656
do anything if you don't use a suspending data source.
darco 56a656
* We changed the interface to the virtual array routines: access_virt_array
darco 56a656
routines now take a count of the number of rows to access this time.  The
darco 56a656
last parameter to request_virt_array routines is now interpreted as the
darco 56a656
maximum number of rows that may be accessed at once, but not necessarily
darco 56a656
the height of every access.
darco 56a656
darco 56a656
darco 56a656
Version 5b  15-Mar-95
darco 56a656
---------------------
darco 56a656
darco 56a656
Correct bugs with grayscale images having v_samp_factor > 1.
darco 56a656
darco 56a656
jpeg_write_raw_data() now supports output suspension.
darco 56a656
darco 56a656
Correct bugs in "configure" script for case of compiling in
darco 56a656
a directory other than the one containing the source files.
darco 56a656
darco 56a656
Repair bug in jquant1.c: sometimes didn't use as many colors as it could.
darco 56a656
darco 56a656
Borland C makefile and jconfig file work under either MS-DOS or OS/2.
darco 56a656
darco 56a656
Miscellaneous improvements to documentation.
darco 56a656
darco 56a656
darco 56a656
Version 5a  7-Dec-94
darco 56a656
--------------------
darco 56a656
darco 56a656
Changed color conversion roundoff behavior so that grayscale values are
darco 56a656
represented exactly.  (This causes test image files to change.)
darco 56a656
darco 56a656
Make ordered dither use 16x16 instead of 4x4 pattern for a small quality
darco 56a656
improvement.
darco 56a656
darco 56a656
New configure script based on latest GNU Autoconf.
darco 56a656
Fix configure script to handle CFLAGS correctly.
darco 56a656
Rename *.auto files to *.cfg, so that configure script still works if
darco 56a656
file names have been truncated for DOS.
darco 56a656
darco 56a656
Fix bug in rdbmp.c: didn't allow for extra data between header and image.
darco 56a656
darco 56a656
Modify rdppm.c/wrppm.c to handle 2-byte raw PPM/PGM formats for 12-bit data.
darco 56a656
darco 56a656
Fix several bugs in rdrle.c.
darco 56a656
darco 56a656
NEED_SHORT_EXTERNAL_NAMES option was broken.
darco 56a656
darco 56a656
Revise jerror.h/jerror.c for more flexibility in message table.
darco 56a656
darco 56a656
Repair oversight in jmemname.c NO_MKTEMP case: file could be there
darco 56a656
but unreadable.
darco 56a656
darco 56a656
darco 56a656
Version 5  24-Sep-94
darco 56a656
--------------------
darco 56a656
darco 56a656
Version 5 represents a nearly complete redesign and rewrite of the IJG
darco 56a656
software.  Major user-visible changes include:
darco 56a656
  * Automatic configuration simplifies installation for most Unix systems.
darco 56a656
  * A range of speed vs. image quality tradeoffs are supported.
darco 56a656
    This includes resizing of an image during decompression: scaling down
darco 56a656
    by a factor of 1/2, 1/4, or 1/8 is handled very efficiently.
darco 56a656
  * New programs rdjpgcom and wrjpgcom allow insertion and extraction
darco 56a656
    of text comments in a JPEG file.
darco 56a656
darco 56a656
The application programmer's interface to the library has changed completely.
darco 56a656
Notable improvements include:
darco 56a656
  * We have eliminated the use of callback routines for handling the
darco 56a656
    uncompressed image data.  The application now sees the library as a
darco 56a656
    set of routines that it calls to read or write image data on a
darco 56a656
    scanline-by-scanline basis.
darco 56a656
  * The application image data is represented in a conventional interleaved-
darco 56a656
    pixel format, rather than as a separate array for each color channel.
darco 56a656
    This can save a copying step in many programs.
darco 56a656
  * The handling of compressed data has been cleaned up: the application can
darco 56a656
    supply routines to source or sink the compressed data.  It is possible to
darco 56a656
    suspend processing on source/sink buffer overrun, although this is not
darco 56a656
    supported in all operating modes.
darco 56a656
  * All static state has been eliminated from the library, so that multiple
darco 56a656
    instances of compression or decompression can be active concurrently.
darco 56a656
  * JPEG abbreviated datastream formats are supported, ie, quantization and
darco 56a656
    Huffman tables can be stored separately from the image data.
darco 56a656
  * And not only that, but the documentation of the library has improved
darco 56a656
    considerably!
darco 56a656
darco 56a656
darco 56a656
The last widely used release before the version 5 rewrite was version 4A of
darco 56a656
18-Feb-93.  Change logs before that point have been discarded, since they
darco 56a656
are not of much interest after the rewrite.