blob: e1cee84eb7977c7744d09231ef87bc325aee39f4 [file] [log] [blame]
DRCf8e00552011-02-04 11:06:36 +000011.1.90 (1.2 beta1)
2==================
3
4[1] Added a JNI wrapper for TurboJPEG/OSS. See java/README for more details.
5
DRC8ed7b812011-02-15 08:31:34 +00006[2] TurboJPEG/OSS can now scale down images during decompression.
DRCa3c30592011-02-07 08:06:16 +00007
DRC15866ac2011-03-04 13:46:55 +00008[3] Added SIMD routines for RGB-to-grayscale color conversion, which
9significantly improves the performance of grayscale JPEG compression from an
10RGB source image.
11
12[4] Improved performance for non-x86 machines.
13
14[5] Added a function to the TurboJPEG API which performs lossless transforms.
15This function uses the same back end as jpegtran, but it performs transcoding
16entirely in memory and allows multiple transforms and/or crop operations to be
17batched together, so the source coefficients only need to be read once. This
18is useful when generating image tiles from a single source JPEG.
19
20[6] Modified jpgtest to benchmark the new scaled decompression and lossless
21transform features in TurboJPEG/OSS.
22
23[7] Added support for 4:4:0 (transposed 4:2:2) subsampling in TurboJPEG, which
24was necessary in order for it to read 4:2:2 JPEG files that had been losslessly
25transposed or rotated 90 degrees.
26
DRCf89dd1e2011-05-21 14:23:30 +000027[8] jchuff.c and jdhuff.c have been re-factored and re-licensed under the
DRCee269922011-04-26 23:46:38 +000028libjpeg BSD-style license, so the libjpeg-turbo library itself (libjpeg) is no
29longer subject to the terms of the wxWindows Library License (libturbojpeg
30still is-- see README-turbo.txt.)
31
DRCf89dd1e2011-05-21 14:23:30 +000032[9] libjpeg-turbo can now be built with YASM.
DRC56fb2372011-05-03 06:32:41 +000033
DRCf89dd1e2011-05-21 14:23:30 +000034[10] Added SIMD-accelerated fast integer inverse DCT and YCbCr-to-RGB color
DRC321e0682011-05-03 08:47:43 +000035conversion routines to accelerate JPEG decoding on ARM Linux platforms that
36have NEON instructions.
37
DRC9b28def2011-05-21 14:37:15 +000038[11] Refactored the TurboJPEG C API so that it uses pixel formats to define the
39size and component order of the uncompressed source/destination images as well
40as uses the libjpeg memory source and destination managers. The latter allows
41the TurboJPEG compressor to grow the JPEG buffer as necessary.
42
DRCf8e00552011-02-04 11:06:36 +000043
DRC6ee54592011-03-01 08:18:30 +0000441.1.1
45=====
46
47[1] Fixed a 1-pixel error in row 0, column 21 of the luminance plane generated
48by tjEncodeYUV().
49
DRC8071c392011-04-17 15:29:17 +000050[2] libjpeg-turbo's accelerated Huffman decoder previously ignored unexpected
51markers found in the middle of the JPEG data stream during decompression. It
52will now hand off decoding of a particular block to the unaccelerated Huffman
53decoder if an unexpected marker is found, so that the unaccelerated Huffman
54decoder can generate an appropriate warning.
DRC6ee54592011-03-01 08:18:30 +000055
DRC47aaf6f2011-03-22 05:40:39 +000056[3] Older versions of MinGW64 prefixed symbol names with underscores by
DRC1da78582011-03-22 09:34:01 +000057default, which differed from the behavior of 64-bit Visual C++. MinGW64 1.0
58has adopted the behavior of 64-bit Visual C++ as the default, so to accommodate
59this, the libjpeg-turbo SIMD function names are no longer prefixed with an
60underscore when building with MinGW64. This means that, when building
61libjpeg-turbo with older versions of MinGW64, you will now have to add
62-fno-leading-underscore to the CFLAGS.
63
DRCd8840112011-04-25 22:46:25 +000064[4] Fixed a regression bug in the NSIS script that caused the Windows installer
65build to fail when using the Visual Studio IDE.
66
67[5] Fixed a bug in jpeg_read_coefficients() whereby it would not initialize
68cinfo->image_width and cinfo->image_height if libjpeg v7 or v8 emulation was
69enabled. This specifically caused the jpegoptim program to fail if it was
70linked against a version of libjpeg-turbo that was built with libjpeg v7 or v8
71emulation.
72
DRC049aef52011-04-25 22:41:14 +000073[6] Eliminated excessive I/O overhead that occurred when reading BMP files in
74cjpeg.
75
DRC5ee81f42011-05-02 00:35:50 +000076[7] Eliminated errors in the output of cjpeg on Windows that occurred when the
DRC34a8e352011-05-10 22:14:38 +000077application was invoked using I/O redirection (cjpeg <inputfile >output.jpg).
DRC5ee81f42011-05-02 00:35:50 +000078
DRCf5c3bb32011-03-18 05:59:07 +000079
DRC958b2c02011-01-28 08:00:40 +0000801.1.0
81=====
DRCfa1d1832011-01-26 05:35:20 +000082
DRCa49c4e52011-02-18 20:50:08 +000083[1] The algorithm used by the SIMD quantization function cannot produce correct
84results when the JPEG quality is >= 98 and the fast integer forward DCT is
85used. Thus, the non-SIMD quantization function is now used for those cases,
86and libjpeg-turbo should now produce identical output to libjpeg v6b in all
87cases.
DRCe1716b82011-02-18 03:19:43 +000088
DRCa49c4e52011-02-18 20:50:08 +000089[2] Despite the above, the fast integer forward DCT still degrades somewhat for
90JPEG qualities greater than 95, so TurboJPEG/OSS will now automatically use the
91slow integer forward DCT when generating JPEG images of quality 96 or greater.
92This reduces compression performance by as much as 15% for these high-quality
93images but is necessary to ensure that the images are perceptually lossless.
94It also ensures that the library can avoid the performance pitfall created by
95[1].
96
97[3] Ported jpgtest.cxx to pure C to avoid the need for a C++ compiler.
98
99[4] Fixed visual artifacts in grayscale JPEG compression caused by a typo in
DRCd9ee65c2011-04-05 07:01:26 +0000100the RGB-to-luminance lookup tables.
DRC8ed7b812011-02-15 08:31:34 +0000101
DRC240d82f2011-02-19 00:00:34 +0000102[5] The Windows distribution packages now include the libjpeg run-time programs
103(cjpeg, etc.)
104
DRC9cd2c422011-02-19 17:52:45 +0000105[6] All packages now include jpgtest.
DRC240d82f2011-02-19 00:00:34 +0000106
DRCe4d9b5b2011-02-25 06:17:17 +0000107[7] The TurboJPEG dynamic library now uses versioned symbols.
108
109[8] Added two new TurboJPEG API functions, tjEncodeYUV() and
110tjDecompressToYUV(), to replace the somewhat hackish TJ_YUV flag.
111
DRC2d94e262011-01-25 06:52:31 +0000112
DRC958b2c02011-01-28 08:00:40 +00001131.0.90 (1.1 beta1)
114==================
DRC766dc5c2010-10-12 02:50:18 +0000115
DRCf38eee02011-02-18 07:00:38 +0000116[1] Added emulation of the libjpeg v7 and v8 APIs and ABIs. See
DRCefa618e2010-10-18 08:41:11 +0000117README-turbo.txt for more details. This feature was sponsored by CamTrace SAS.
118
119[2] Created a new CMake-based build system for the Visual C++ and MinGW builds.
DRC766dc5c2010-10-12 02:50:18 +0000120
DRC09854f52010-11-04 22:39:59 +0000121[3] TurboJPEG/OSS can now compress from/decompress to grayscale bitmaps.
122
DRC01e69092011-01-06 01:19:43 +0000123[4] jpgtest can now be used to test decompression performance with existing
124JPEG images.
DRCe89bbae2010-11-12 10:18:08 +0000125
DRCd1c281a2010-11-17 22:44:40 +0000126[5] If the default install prefix (/opt/libjpeg-turbo) is used, then
127'make install' now creates /opt/libjpeg-turbo/lib32 and
128/opt/libjpeg-turbo/lib64 sym links to duplicate the behavior of the binary
129packages.
130
DRCec311932010-11-22 19:51:42 +0000131[6] All symbols in the libjpeg-turbo dynamic library are now versioned, even
132when the library is built with libjpeg v6b emulation.
133
DRC01e69092011-01-06 01:19:43 +0000134[7] Added arithmetic encoding and decoding support (can be disabled with
DRC245cfdf2010-11-23 17:11:06 +0000135configure or CMake options)
DRC66f97e62010-11-23 05:49:54 +0000136
DRC9e17f7d2010-12-10 04:59:13 +0000137[8] Added a TJ_YUV flag to TurboJPEG/OSS which causes both the compressor and
138decompressor to output planar YUV images.
DRCfbb67472010-11-24 04:02:37 +0000139
DRC50c657b2010-12-14 01:23:16 +0000140[9] Added an extended version of tjDecompressHeader() to TurboJPEG/OSS which
141allows the caller to determine the type of subsampling used in a JPEG image.
142
DRC958b2c02011-01-28 08:00:40 +0000143[10] Added further protections against invalid Huffman codes.
DRCfa1d1832011-01-26 05:35:20 +0000144
DRC766dc5c2010-10-12 02:50:18 +0000145
DRC958b2c02011-01-28 08:00:40 +00001461.0.1
147=====
DRC0fbb28e2010-07-30 17:15:52 +0000148
149[1] The Huffman decoder will now handle erroneous Huffman codes (for instance,
150from a corrupt JPEG image.) Previously, these would cause libjpeg-turbo to
151crash under certain circumstances.
152
DRC025a2792010-08-07 16:27:56 +0000153[2] Fixed typo in SIMD dispatch routines which was causing 4:2:2 upsampling to
154be used instead of 4:2:0 when decompressing JPEG images using SSE2 code.
DRC30959712010-08-07 16:06:56 +0000155
DRCbdb12882010-08-21 21:14:17 +0000156[3] configure script will now automatically determine whether the
157INCOMPLETE_TYPES_BROKEN macro should be defined.
158
DRC0fbb28e2010-07-30 17:15:52 +0000159
DRC958b2c02011-01-28 08:00:40 +00001601.0.0
161=====
DRC49597872010-05-17 20:47:57 +0000162
DRCc773d102010-06-05 06:58:22 +0000163[1] 2983700: Further FreeBSD build tweaks (no longer necessary to specify
164--host when configuring on a 64-bit system)
DRC49597872010-05-17 20:47:57 +0000165
DRCf12c7db2010-05-18 19:04:47 +0000166[2] Created sym. links in the Unix/Linux packages so that the TurboJPEG
167include file can always be found in /opt/libjpeg-turbo/include, the 32-bit
168static libraries can always be found in /opt/libjpeg-turbo/lib32, and the
16964-bit static libraries can always be found in /opt/libjpeg-turbo/lib64.
170
DRC4bf3b582010-06-05 01:03:23 +0000171[3] The Unix/Linux distribution packages now include the libjpeg run-time
172programs (cjpeg, etc.) and man pages.
173
174[4] Created a 32-bit supplementary package for amd64 Debian systems which
175contains just the 32-bit libjpeg-turbo libraries.
176
177[5] Moved the libraries from */lib32 to */lib in the i386 Debian package.
178
DRCdf3337c2010-07-02 09:13:58 +0000179[6] Include distribution package for Cygwin
DRC4bf3b582010-06-05 01:03:23 +0000180
DRCdf3337c2010-07-02 09:13:58 +0000181[7] No longer necessary to specify --without-simd on non-x86 architectures, and
DRC38ccf852010-06-10 19:49:49 +0000182unit tests now work on those architectures.
183
DRC49597872010-05-17 20:47:57 +0000184
DRC958b2c02011-01-28 08:00:40 +00001850.0.93
186======
DRC0f413b22010-04-06 20:05:39 +0000187
DRCc773d102010-06-05 06:58:22 +0000188[1] 2982659, Fixed x86-64 build on FreeBSD systems
DRC0f413b22010-04-06 20:05:39 +0000189
DRCc773d102010-06-05 06:58:22 +0000190[2] 2988188: Added support for Windows 64-bit systems
DRC1a2219e2010-05-10 20:03:36 +0000191
DRC0f413b22010-04-06 20:05:39 +0000192
DRC958b2c02011-01-28 08:00:40 +00001930.0.91
194======
DRCae19bf62010-03-15 11:40:31 +0000195
196[1] Added documentation to .deb packages
197
198[2] 2968313: Fixed data corruption issues when decompressing large JPEG images
199and/or using buffered I/O with the libjpeg-turbo decompressor
DRC958b2c02011-01-28 08:00:40 +0000200
201
2020.0.90
203======
204
205Initial release