blob: 044a99fe7f74c259cd24103631df808feb22cc40 [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
DRC9db6beb2011-04-01 11:26:10 +000027[8] Fixed a regression bug in the NSIS script that caused the Windows installer
28build to fail when using the Visual Studio IDE.
29
DRCdf489452011-04-02 05:37:49 +000030[9] Fixed a bug in jpeg_read_coefficients() whereby it would not initialize
DRC7394e272011-04-03 07:08:18 +000031cinfo->image_width and cinfo->image_height if libjpeg v7 or v8 emulation was
32enabled. This specifically caused the jpegoptim program to fail if it was
33linked against a version of libjpeg-turbo that was built with libjpeg v7 or v8
34emulation.
DRCdf489452011-04-02 05:37:49 +000035
DRCf8e00552011-02-04 11:06:36 +000036
DRC6ee54592011-03-01 08:18:30 +0000371.1.1
38=====
39
40[1] Fixed a 1-pixel error in row 0, column 21 of the luminance plane generated
41by tjEncodeYUV().
42
DRCebf239d2011-03-18 05:44:55 +000043[2] Fixed the accelerated Huffman decoder so that it mimics the behavior of
44the unaccelerated decoder and throws a warning if an unexpected marker is found
45in the middle of the JPEG data stream.
DRC6ee54592011-03-01 08:18:30 +000046
DRC47aaf6f2011-03-22 05:40:39 +000047[3] Older versions of MinGW64 prefixed symbol names with underscores by
DRC1da78582011-03-22 09:34:01 +000048default, which differed from the behavior of 64-bit Visual C++. MinGW64 1.0
49has adopted the behavior of 64-bit Visual C++ as the default, so to accommodate
50this, the libjpeg-turbo SIMD function names are no longer prefixed with an
51underscore when building with MinGW64. This means that, when building
52libjpeg-turbo with older versions of MinGW64, you will now have to add
53-fno-leading-underscore to the CFLAGS.
54
DRCf5c3bb32011-03-18 05:59:07 +000055
DRC958b2c02011-01-28 08:00:40 +0000561.1.0
57=====
DRCfa1d1832011-01-26 05:35:20 +000058
DRCa49c4e52011-02-18 20:50:08 +000059[1] The algorithm used by the SIMD quantization function cannot produce correct
60results when the JPEG quality is >= 98 and the fast integer forward DCT is
61used. Thus, the non-SIMD quantization function is now used for those cases,
62and libjpeg-turbo should now produce identical output to libjpeg v6b in all
63cases.
DRCe1716b82011-02-18 03:19:43 +000064
DRCa49c4e52011-02-18 20:50:08 +000065[2] Despite the above, the fast integer forward DCT still degrades somewhat for
66JPEG qualities greater than 95, so TurboJPEG/OSS will now automatically use the
67slow integer forward DCT when generating JPEG images of quality 96 or greater.
68This reduces compression performance by as much as 15% for these high-quality
69images but is necessary to ensure that the images are perceptually lossless.
70It also ensures that the library can avoid the performance pitfall created by
71[1].
72
73[3] Ported jpgtest.cxx to pure C to avoid the need for a C++ compiler.
74
75[4] Fixed visual artifacts in grayscale JPEG compression caused by a typo in
76the RGB-to-chrominance lookup tables.
DRC8ed7b812011-02-15 08:31:34 +000077
DRC240d82f2011-02-19 00:00:34 +000078[5] The Windows distribution packages now include the libjpeg run-time programs
79(cjpeg, etc.)
80
DRC9cd2c422011-02-19 17:52:45 +000081[6] All packages now include jpgtest.
DRC240d82f2011-02-19 00:00:34 +000082
DRCe4d9b5b2011-02-25 06:17:17 +000083[7] The TurboJPEG dynamic library now uses versioned symbols.
84
85[8] Added two new TurboJPEG API functions, tjEncodeYUV() and
86tjDecompressToYUV(), to replace the somewhat hackish TJ_YUV flag.
87
DRC2d94e262011-01-25 06:52:31 +000088
DRC958b2c02011-01-28 08:00:40 +0000891.0.90 (1.1 beta1)
90==================
DRC766dc5c2010-10-12 02:50:18 +000091
DRCf38eee02011-02-18 07:00:38 +000092[1] Added emulation of the libjpeg v7 and v8 APIs and ABIs. See
DRCefa618e2010-10-18 08:41:11 +000093README-turbo.txt for more details. This feature was sponsored by CamTrace SAS.
94
95[2] Created a new CMake-based build system for the Visual C++ and MinGW builds.
DRC766dc5c2010-10-12 02:50:18 +000096
DRC09854f52010-11-04 22:39:59 +000097[3] TurboJPEG/OSS can now compress from/decompress to grayscale bitmaps.
98
DRC01e69092011-01-06 01:19:43 +000099[4] jpgtest can now be used to test decompression performance with existing
100JPEG images.
DRCe89bbae2010-11-12 10:18:08 +0000101
DRCd1c281a2010-11-17 22:44:40 +0000102[5] If the default install prefix (/opt/libjpeg-turbo) is used, then
103'make install' now creates /opt/libjpeg-turbo/lib32 and
104/opt/libjpeg-turbo/lib64 sym links to duplicate the behavior of the binary
105packages.
106
DRCec311932010-11-22 19:51:42 +0000107[6] All symbols in the libjpeg-turbo dynamic library are now versioned, even
108when the library is built with libjpeg v6b emulation.
109
DRC01e69092011-01-06 01:19:43 +0000110[7] Added arithmetic encoding and decoding support (can be disabled with
DRC245cfdf2010-11-23 17:11:06 +0000111configure or CMake options)
DRC66f97e62010-11-23 05:49:54 +0000112
DRC9e17f7d2010-12-10 04:59:13 +0000113[8] Added a TJ_YUV flag to TurboJPEG/OSS which causes both the compressor and
114decompressor to output planar YUV images.
DRCfbb67472010-11-24 04:02:37 +0000115
DRC50c657b2010-12-14 01:23:16 +0000116[9] Added an extended version of tjDecompressHeader() to TurboJPEG/OSS which
117allows the caller to determine the type of subsampling used in a JPEG image.
118
DRC958b2c02011-01-28 08:00:40 +0000119[10] Added further protections against invalid Huffman codes.
DRCfa1d1832011-01-26 05:35:20 +0000120
DRC766dc5c2010-10-12 02:50:18 +0000121
DRC958b2c02011-01-28 08:00:40 +00001221.0.1
123=====
DRC0fbb28e2010-07-30 17:15:52 +0000124
125[1] The Huffman decoder will now handle erroneous Huffman codes (for instance,
126from a corrupt JPEG image.) Previously, these would cause libjpeg-turbo to
127crash under certain circumstances.
128
DRC025a2792010-08-07 16:27:56 +0000129[2] Fixed typo in SIMD dispatch routines which was causing 4:2:2 upsampling to
130be used instead of 4:2:0 when decompressing JPEG images using SSE2 code.
DRC30959712010-08-07 16:06:56 +0000131
DRCbdb12882010-08-21 21:14:17 +0000132[3] configure script will now automatically determine whether the
133INCOMPLETE_TYPES_BROKEN macro should be defined.
134
DRC0fbb28e2010-07-30 17:15:52 +0000135
DRC958b2c02011-01-28 08:00:40 +00001361.0.0
137=====
DRC49597872010-05-17 20:47:57 +0000138
DRCc773d102010-06-05 06:58:22 +0000139[1] 2983700: Further FreeBSD build tweaks (no longer necessary to specify
140--host when configuring on a 64-bit system)
DRC49597872010-05-17 20:47:57 +0000141
DRCf12c7db2010-05-18 19:04:47 +0000142[2] Created sym. links in the Unix/Linux packages so that the TurboJPEG
143include file can always be found in /opt/libjpeg-turbo/include, the 32-bit
144static libraries can always be found in /opt/libjpeg-turbo/lib32, and the
14564-bit static libraries can always be found in /opt/libjpeg-turbo/lib64.
146
DRC4bf3b582010-06-05 01:03:23 +0000147[3] The Unix/Linux distribution packages now include the libjpeg run-time
148programs (cjpeg, etc.) and man pages.
149
150[4] Created a 32-bit supplementary package for amd64 Debian systems which
151contains just the 32-bit libjpeg-turbo libraries.
152
153[5] Moved the libraries from */lib32 to */lib in the i386 Debian package.
154
DRCdf3337c2010-07-02 09:13:58 +0000155[6] Include distribution package for Cygwin
DRC4bf3b582010-06-05 01:03:23 +0000156
DRCdf3337c2010-07-02 09:13:58 +0000157[7] No longer necessary to specify --without-simd on non-x86 architectures, and
DRC38ccf852010-06-10 19:49:49 +0000158unit tests now work on those architectures.
159
DRC49597872010-05-17 20:47:57 +0000160
DRC958b2c02011-01-28 08:00:40 +00001610.0.93
162======
DRC0f413b22010-04-06 20:05:39 +0000163
DRCc773d102010-06-05 06:58:22 +0000164[1] 2982659, Fixed x86-64 build on FreeBSD systems
DRC0f413b22010-04-06 20:05:39 +0000165
DRCc773d102010-06-05 06:58:22 +0000166[2] 2988188: Added support for Windows 64-bit systems
DRC1a2219e2010-05-10 20:03:36 +0000167
DRC0f413b22010-04-06 20:05:39 +0000168
DRC958b2c02011-01-28 08:00:40 +00001690.0.91
170======
DRCae19bf62010-03-15 11:40:31 +0000171
172[1] Added documentation to .deb packages
173
174[2] 2968313: Fixed data corruption issues when decompressing large JPEG images
175and/or using buffered I/O with the libjpeg-turbo decompressor
DRC958b2c02011-01-28 08:00:40 +0000176
177
1780.0.90
179======
180
181Initial release