blob: 1f9928a0fe4dde27476409fd18fe0465023ffa29 [file] [log] [blame]
DRC6ee54592011-03-01 08:18:30 +000011.1.1
2=====
3
4[1] Fixed a 1-pixel error in row 0, column 21 of the luminance plane generated
5by tjEncodeYUV().
6
DRCe43d21d2011-04-17 15:28:32 +00007[2] libjpeg-turbo's accelerated Huffman decoder previously ignored unexpected
8markers found in the middle of the JPEG data stream during decompression. It
9will now hand off decoding of a particular block to the unaccelerated Huffman
10decoder if an unexpected marker is found, so that the unaccelerated Huffman
11decoder can generate an appropriate warning.
DRC6ee54592011-03-01 08:18:30 +000012
DRC47aaf6f2011-03-22 05:40:39 +000013[3] Older versions of MinGW64 prefixed symbol names with underscores by
DRC1da78582011-03-22 09:34:01 +000014default, which differed from the behavior of 64-bit Visual C++. MinGW64 1.0
15has adopted the behavior of 64-bit Visual C++ as the default, so to accommodate
16this, the libjpeg-turbo SIMD function names are no longer prefixed with an
17underscore when building with MinGW64. This means that, when building
18libjpeg-turbo with older versions of MinGW64, you will now have to add
19-fno-leading-underscore to the CFLAGS.
20
DRC9e50fa72011-04-01 11:24:31 +000021[4] Fixed a regression bug in the NSIS script that caused the Windows installer
22build to fail when using the Visual Studio IDE.
23
DRC59a58342011-04-02 05:40:16 +000024[5] Fixed a bug in jpeg_read_coefficients() whereby it would not initialize
DRCe7fde872011-04-03 07:09:49 +000025cinfo->image_width and cinfo->image_height if libjpeg v7 or v8 emulation was
26enabled. This specifically caused the jpegoptim program to fail if it was
27linked against a version of libjpeg-turbo that was built with libjpeg v7 or v8
28emulation.
DRC59a58342011-04-02 05:40:16 +000029
DRCa6471c32011-03-18 05:59:21 +000030
DRC4a1c2d92011-01-28 08:00:10 +0000311.1.0
32=====
DRCfa1d1832011-01-26 05:35:20 +000033
DRC72abc292011-02-18 01:45:24 +000034[1] The algorithm used by the SIMD quantization function cannot produce correct
35results when the JPEG quality is >= 98 and the fast integer forward DCT is
DRCbb4465f2011-02-18 02:41:03 +000036used. Thus, the non-SIMD quantization function is now used for those cases,
37and libjpeg-turbo should now produce identical output to libjpeg v6b in all
38cases.
DRCe1716b82011-02-18 03:19:43 +000039
DRC72abc292011-02-18 01:45:24 +000040[2] Despite the above, the fast integer forward DCT still degrades somewhat for
41JPEG qualities greater than 95, so TurboJPEG/OSS will now automatically use the
42slow integer forward DCT when generating JPEG images of quality 96 or greater.
43This reduces compression performance by as much as 15% for these high-quality
44images but is necessary to ensure that the images are perceptually lossless.
DRCbb4465f2011-02-18 02:41:03 +000045It also ensures that the library can avoid the performance pitfall created by
46[1].
DRC2e4d0442011-02-08 01:18:37 +000047
DRC72abc292011-02-18 01:45:24 +000048[3] Ported jpgtest.cxx to pure C to avoid the need for a C++ compiler.
49
50[4] Fixed visual artifacts in grayscale JPEG compression caused by a typo in
DRC2a33dfc2011-04-05 06:51:59 +000051the RGB-to-luminance lookup tables.
DRCe2f37182011-02-17 07:53:46 +000052
DRC240d82f2011-02-19 00:00:34 +000053[5] The Windows distribution packages now include the libjpeg run-time programs
54(cjpeg, etc.)
55
DRCdb8df012011-02-19 00:01:11 +000056[6] All packages now include jpgtest.
DRC240d82f2011-02-19 00:00:34 +000057
DRC10e31932011-02-25 00:14:12 +000058[7] The TurboJPEG dynamic library now uses versioned symbols.
59
60[8] Added two new TurboJPEG API functions, tjEncodeYUV() and
61tjDecompressToYUV(), to replace the somewhat hackish TJ_YUV flag.
62
DRC2d94e262011-01-25 06:52:31 +000063
DRC4a1c2d92011-01-28 08:00:10 +0000641.0.90 (1.1 beta1)
65==================
DRC766dc5c2010-10-12 02:50:18 +000066
DRCf38eee02011-02-18 07:00:38 +000067[1] Added emulation of the libjpeg v7 and v8 APIs and ABIs. See
DRCefa618e2010-10-18 08:41:11 +000068README-turbo.txt for more details. This feature was sponsored by CamTrace SAS.
69
70[2] Created a new CMake-based build system for the Visual C++ and MinGW builds.
DRC766dc5c2010-10-12 02:50:18 +000071
DRC09854f52010-11-04 22:39:59 +000072[3] TurboJPEG/OSS can now compress from/decompress to grayscale bitmaps.
73
DRC01e69092011-01-06 01:19:43 +000074[4] jpgtest can now be used to test decompression performance with existing
75JPEG images.
DRCe89bbae2010-11-12 10:18:08 +000076
DRCd1c281a2010-11-17 22:44:40 +000077[5] If the default install prefix (/opt/libjpeg-turbo) is used, then
78'make install' now creates /opt/libjpeg-turbo/lib32 and
79/opt/libjpeg-turbo/lib64 sym links to duplicate the behavior of the binary
80packages.
81
DRCec311932010-11-22 19:51:42 +000082[6] All symbols in the libjpeg-turbo dynamic library are now versioned, even
83when the library is built with libjpeg v6b emulation.
84
DRC01e69092011-01-06 01:19:43 +000085[7] Added arithmetic encoding and decoding support (can be disabled with
DRC245cfdf2010-11-23 17:11:06 +000086configure or CMake options)
DRC66f97e62010-11-23 05:49:54 +000087
DRC9e17f7d2010-12-10 04:59:13 +000088[8] Added a TJ_YUV flag to TurboJPEG/OSS which causes both the compressor and
89decompressor to output planar YUV images.
DRCfbb67472010-11-24 04:02:37 +000090
DRC50c657b2010-12-14 01:23:16 +000091[9] Added an extended version of tjDecompressHeader() to TurboJPEG/OSS which
92allows the caller to determine the type of subsampling used in a JPEG image.
93
DRC4a1c2d92011-01-28 08:00:10 +000094[10] Added further protections against invalid Huffman codes.
DRCfa1d1832011-01-26 05:35:20 +000095
DRC766dc5c2010-10-12 02:50:18 +000096
DRC4a1c2d92011-01-28 08:00:10 +0000971.0.1
98=====
DRC0fbb28e2010-07-30 17:15:52 +000099
100[1] The Huffman decoder will now handle erroneous Huffman codes (for instance,
101from a corrupt JPEG image.) Previously, these would cause libjpeg-turbo to
102crash under certain circumstances.
103
DRC025a2792010-08-07 16:27:56 +0000104[2] Fixed typo in SIMD dispatch routines which was causing 4:2:2 upsampling to
105be used instead of 4:2:0 when decompressing JPEG images using SSE2 code.
DRC30959712010-08-07 16:06:56 +0000106
DRCbdb12882010-08-21 21:14:17 +0000107[3] configure script will now automatically determine whether the
108INCOMPLETE_TYPES_BROKEN macro should be defined.
109
DRC0fbb28e2010-07-30 17:15:52 +0000110
DRC4a1c2d92011-01-28 08:00:10 +00001111.0.0
112=====
DRC49597872010-05-17 20:47:57 +0000113
DRCc773d102010-06-05 06:58:22 +0000114[1] 2983700: Further FreeBSD build tweaks (no longer necessary to specify
115--host when configuring on a 64-bit system)
DRC49597872010-05-17 20:47:57 +0000116
DRCf12c7db2010-05-18 19:04:47 +0000117[2] Created sym. links in the Unix/Linux packages so that the TurboJPEG
118include file can always be found in /opt/libjpeg-turbo/include, the 32-bit
119static libraries can always be found in /opt/libjpeg-turbo/lib32, and the
12064-bit static libraries can always be found in /opt/libjpeg-turbo/lib64.
121
DRC4bf3b582010-06-05 01:03:23 +0000122[3] The Unix/Linux distribution packages now include the libjpeg run-time
123programs (cjpeg, etc.) and man pages.
124
125[4] Created a 32-bit supplementary package for amd64 Debian systems which
126contains just the 32-bit libjpeg-turbo libraries.
127
128[5] Moved the libraries from */lib32 to */lib in the i386 Debian package.
129
DRCdf3337c2010-07-02 09:13:58 +0000130[6] Include distribution package for Cygwin
DRC4bf3b582010-06-05 01:03:23 +0000131
DRCdf3337c2010-07-02 09:13:58 +0000132[7] No longer necessary to specify --without-simd on non-x86 architectures, and
DRC38ccf852010-06-10 19:49:49 +0000133unit tests now work on those architectures.
134
DRC49597872010-05-17 20:47:57 +0000135
DRC4a1c2d92011-01-28 08:00:10 +00001360.0.93
137======
DRC0f413b22010-04-06 20:05:39 +0000138
DRCc773d102010-06-05 06:58:22 +0000139[1] 2982659, Fixed x86-64 build on FreeBSD systems
DRC0f413b22010-04-06 20:05:39 +0000140
DRCc773d102010-06-05 06:58:22 +0000141[2] 2988188: Added support for Windows 64-bit systems
DRC1a2219e2010-05-10 20:03:36 +0000142
DRC0f413b22010-04-06 20:05:39 +0000143
DRC4a1c2d92011-01-28 08:00:10 +00001440.0.91
145======
DRCae19bf62010-03-15 11:40:31 +0000146
147[1] Added documentation to .deb packages
148
149[2] 2968313: Fixed data corruption issues when decompressing large JPEG images
150and/or using buffered I/O with the libjpeg-turbo decompressor
DRC4a1c2d92011-01-28 08:00:10 +0000151
152
1530.0.90
154======
155
156Initial release