DRC | 6ee5459 | 2011-03-01 08:18:30 +0000 | [diff] [blame] | 1 | 1.1.1 |
| 2 | ===== |
| 3 | |
| 4 | [1] Fixed a 1-pixel error in row 0, column 21 of the luminance plane generated |
| 5 | by tjEncodeYUV(). |
| 6 | |
DRC | df1c38d | 2011-03-18 05:40:33 +0000 | [diff] [blame] | 7 | [2] Fixed the accelerated Huffman decoder so that it mimics the behavior of |
| 8 | the unaccelerated decoder and throws a warning if an unexpected marker is found |
| 9 | in the middle of the JPEG data stream. |
DRC | 6ee5459 | 2011-03-01 08:18:30 +0000 | [diff] [blame] | 10 | |
DRC | 47aaf6f | 2011-03-22 05:40:39 +0000 | [diff] [blame] | 11 | [3] Older versions of MinGW64 prefixed symbol names with underscores by |
DRC | 1da7858 | 2011-03-22 09:34:01 +0000 | [diff] [blame] | 12 | default, which differed from the behavior of 64-bit Visual C++. MinGW64 1.0 |
| 13 | has adopted the behavior of 64-bit Visual C++ as the default, so to accommodate |
| 14 | this, the libjpeg-turbo SIMD function names are no longer prefixed with an |
| 15 | underscore when building with MinGW64. This means that, when building |
| 16 | libjpeg-turbo with older versions of MinGW64, you will now have to add |
| 17 | -fno-leading-underscore to the CFLAGS. |
| 18 | |
DRC | 9e50fa7 | 2011-04-01 11:24:31 +0000 | [diff] [blame] | 19 | [4] Fixed a regression bug in the NSIS script that caused the Windows installer |
| 20 | build to fail when using the Visual Studio IDE. |
| 21 | |
DRC | 59a5834 | 2011-04-02 05:40:16 +0000 | [diff] [blame] | 22 | [5] Fixed a bug in jpeg_read_coefficients() whereby it would not initialize |
DRC | e7fde87 | 2011-04-03 07:09:49 +0000 | [diff] [blame^] | 23 | cinfo->image_width and cinfo->image_height if libjpeg v7 or v8 emulation was |
| 24 | enabled. This specifically caused the jpegoptim program to fail if it was |
| 25 | linked against a version of libjpeg-turbo that was built with libjpeg v7 or v8 |
| 26 | emulation. |
DRC | 59a5834 | 2011-04-02 05:40:16 +0000 | [diff] [blame] | 27 | |
DRC | a6471c3 | 2011-03-18 05:59:21 +0000 | [diff] [blame] | 28 | |
DRC | 4a1c2d9 | 2011-01-28 08:00:10 +0000 | [diff] [blame] | 29 | 1.1.0 |
| 30 | ===== |
DRC | fa1d183 | 2011-01-26 05:35:20 +0000 | [diff] [blame] | 31 | |
DRC | 72abc29 | 2011-02-18 01:45:24 +0000 | [diff] [blame] | 32 | [1] The algorithm used by the SIMD quantization function cannot produce correct |
| 33 | results when the JPEG quality is >= 98 and the fast integer forward DCT is |
DRC | bb4465f | 2011-02-18 02:41:03 +0000 | [diff] [blame] | 34 | used. Thus, the non-SIMD quantization function is now used for those cases, |
| 35 | and libjpeg-turbo should now produce identical output to libjpeg v6b in all |
| 36 | cases. |
DRC | e1716b8 | 2011-02-18 03:19:43 +0000 | [diff] [blame] | 37 | |
DRC | 72abc29 | 2011-02-18 01:45:24 +0000 | [diff] [blame] | 38 | [2] Despite the above, the fast integer forward DCT still degrades somewhat for |
| 39 | JPEG qualities greater than 95, so TurboJPEG/OSS will now automatically use the |
| 40 | slow integer forward DCT when generating JPEG images of quality 96 or greater. |
| 41 | This reduces compression performance by as much as 15% for these high-quality |
| 42 | images but is necessary to ensure that the images are perceptually lossless. |
DRC | bb4465f | 2011-02-18 02:41:03 +0000 | [diff] [blame] | 43 | It also ensures that the library can avoid the performance pitfall created by |
| 44 | [1]. |
DRC | 2e4d044 | 2011-02-08 01:18:37 +0000 | [diff] [blame] | 45 | |
DRC | 72abc29 | 2011-02-18 01:45:24 +0000 | [diff] [blame] | 46 | [3] Ported jpgtest.cxx to pure C to avoid the need for a C++ compiler. |
| 47 | |
| 48 | [4] Fixed visual artifacts in grayscale JPEG compression caused by a typo in |
DRC | e2f3718 | 2011-02-17 07:53:46 +0000 | [diff] [blame] | 49 | the RGB-to-chrominance lookup tables. |
| 50 | |
DRC | 240d82f | 2011-02-19 00:00:34 +0000 | [diff] [blame] | 51 | [5] The Windows distribution packages now include the libjpeg run-time programs |
| 52 | (cjpeg, etc.) |
| 53 | |
DRC | db8df01 | 2011-02-19 00:01:11 +0000 | [diff] [blame] | 54 | [6] All packages now include jpgtest. |
DRC | 240d82f | 2011-02-19 00:00:34 +0000 | [diff] [blame] | 55 | |
DRC | 10e3193 | 2011-02-25 00:14:12 +0000 | [diff] [blame] | 56 | [7] The TurboJPEG dynamic library now uses versioned symbols. |
| 57 | |
| 58 | [8] Added two new TurboJPEG API functions, tjEncodeYUV() and |
| 59 | tjDecompressToYUV(), to replace the somewhat hackish TJ_YUV flag. |
| 60 | |
DRC | 2d94e26 | 2011-01-25 06:52:31 +0000 | [diff] [blame] | 61 | |
DRC | 4a1c2d9 | 2011-01-28 08:00:10 +0000 | [diff] [blame] | 62 | 1.0.90 (1.1 beta1) |
| 63 | ================== |
DRC | 766dc5c | 2010-10-12 02:50:18 +0000 | [diff] [blame] | 64 | |
DRC | f38eee0 | 2011-02-18 07:00:38 +0000 | [diff] [blame] | 65 | [1] Added emulation of the libjpeg v7 and v8 APIs and ABIs. See |
DRC | efa618e | 2010-10-18 08:41:11 +0000 | [diff] [blame] | 66 | README-turbo.txt for more details. This feature was sponsored by CamTrace SAS. |
| 67 | |
| 68 | [2] Created a new CMake-based build system for the Visual C++ and MinGW builds. |
DRC | 766dc5c | 2010-10-12 02:50:18 +0000 | [diff] [blame] | 69 | |
DRC | 09854f5 | 2010-11-04 22:39:59 +0000 | [diff] [blame] | 70 | [3] TurboJPEG/OSS can now compress from/decompress to grayscale bitmaps. |
| 71 | |
DRC | 01e6909 | 2011-01-06 01:19:43 +0000 | [diff] [blame] | 72 | [4] jpgtest can now be used to test decompression performance with existing |
| 73 | JPEG images. |
DRC | e89bbae | 2010-11-12 10:18:08 +0000 | [diff] [blame] | 74 | |
DRC | d1c281a | 2010-11-17 22:44:40 +0000 | [diff] [blame] | 75 | [5] If the default install prefix (/opt/libjpeg-turbo) is used, then |
| 76 | 'make install' now creates /opt/libjpeg-turbo/lib32 and |
| 77 | /opt/libjpeg-turbo/lib64 sym links to duplicate the behavior of the binary |
| 78 | packages. |
| 79 | |
DRC | ec31193 | 2010-11-22 19:51:42 +0000 | [diff] [blame] | 80 | [6] All symbols in the libjpeg-turbo dynamic library are now versioned, even |
| 81 | when the library is built with libjpeg v6b emulation. |
| 82 | |
DRC | 01e6909 | 2011-01-06 01:19:43 +0000 | [diff] [blame] | 83 | [7] Added arithmetic encoding and decoding support (can be disabled with |
DRC | 245cfdf | 2010-11-23 17:11:06 +0000 | [diff] [blame] | 84 | configure or CMake options) |
DRC | 66f97e6 | 2010-11-23 05:49:54 +0000 | [diff] [blame] | 85 | |
DRC | 9e17f7d | 2010-12-10 04:59:13 +0000 | [diff] [blame] | 86 | [8] Added a TJ_YUV flag to TurboJPEG/OSS which causes both the compressor and |
| 87 | decompressor to output planar YUV images. |
DRC | fbb6747 | 2010-11-24 04:02:37 +0000 | [diff] [blame] | 88 | |
DRC | 50c657b | 2010-12-14 01:23:16 +0000 | [diff] [blame] | 89 | [9] Added an extended version of tjDecompressHeader() to TurboJPEG/OSS which |
| 90 | allows the caller to determine the type of subsampling used in a JPEG image. |
| 91 | |
DRC | 4a1c2d9 | 2011-01-28 08:00:10 +0000 | [diff] [blame] | 92 | [10] Added further protections against invalid Huffman codes. |
DRC | fa1d183 | 2011-01-26 05:35:20 +0000 | [diff] [blame] | 93 | |
DRC | 766dc5c | 2010-10-12 02:50:18 +0000 | [diff] [blame] | 94 | |
DRC | 4a1c2d9 | 2011-01-28 08:00:10 +0000 | [diff] [blame] | 95 | 1.0.1 |
| 96 | ===== |
DRC | 0fbb28e | 2010-07-30 17:15:52 +0000 | [diff] [blame] | 97 | |
| 98 | [1] The Huffman decoder will now handle erroneous Huffman codes (for instance, |
| 99 | from a corrupt JPEG image.) Previously, these would cause libjpeg-turbo to |
| 100 | crash under certain circumstances. |
| 101 | |
DRC | 025a279 | 2010-08-07 16:27:56 +0000 | [diff] [blame] | 102 | [2] Fixed typo in SIMD dispatch routines which was causing 4:2:2 upsampling to |
| 103 | be used instead of 4:2:0 when decompressing JPEG images using SSE2 code. |
DRC | 3095971 | 2010-08-07 16:06:56 +0000 | [diff] [blame] | 104 | |
DRC | bdb1288 | 2010-08-21 21:14:17 +0000 | [diff] [blame] | 105 | [3] configure script will now automatically determine whether the |
| 106 | INCOMPLETE_TYPES_BROKEN macro should be defined. |
| 107 | |
DRC | 0fbb28e | 2010-07-30 17:15:52 +0000 | [diff] [blame] | 108 | |
DRC | 4a1c2d9 | 2011-01-28 08:00:10 +0000 | [diff] [blame] | 109 | 1.0.0 |
| 110 | ===== |
DRC | 4959787 | 2010-05-17 20:47:57 +0000 | [diff] [blame] | 111 | |
DRC | c773d10 | 2010-06-05 06:58:22 +0000 | [diff] [blame] | 112 | [1] 2983700: Further FreeBSD build tweaks (no longer necessary to specify |
| 113 | --host when configuring on a 64-bit system) |
DRC | 4959787 | 2010-05-17 20:47:57 +0000 | [diff] [blame] | 114 | |
DRC | f12c7db | 2010-05-18 19:04:47 +0000 | [diff] [blame] | 115 | [2] Created sym. links in the Unix/Linux packages so that the TurboJPEG |
| 116 | include file can always be found in /opt/libjpeg-turbo/include, the 32-bit |
| 117 | static libraries can always be found in /opt/libjpeg-turbo/lib32, and the |
| 118 | 64-bit static libraries can always be found in /opt/libjpeg-turbo/lib64. |
| 119 | |
DRC | 4bf3b58 | 2010-06-05 01:03:23 +0000 | [diff] [blame] | 120 | [3] The Unix/Linux distribution packages now include the libjpeg run-time |
| 121 | programs (cjpeg, etc.) and man pages. |
| 122 | |
| 123 | [4] Created a 32-bit supplementary package for amd64 Debian systems which |
| 124 | contains just the 32-bit libjpeg-turbo libraries. |
| 125 | |
| 126 | [5] Moved the libraries from */lib32 to */lib in the i386 Debian package. |
| 127 | |
DRC | df3337c | 2010-07-02 09:13:58 +0000 | [diff] [blame] | 128 | [6] Include distribution package for Cygwin |
DRC | 4bf3b58 | 2010-06-05 01:03:23 +0000 | [diff] [blame] | 129 | |
DRC | df3337c | 2010-07-02 09:13:58 +0000 | [diff] [blame] | 130 | [7] No longer necessary to specify --without-simd on non-x86 architectures, and |
DRC | 38ccf85 | 2010-06-10 19:49:49 +0000 | [diff] [blame] | 131 | unit tests now work on those architectures. |
| 132 | |
DRC | 4959787 | 2010-05-17 20:47:57 +0000 | [diff] [blame] | 133 | |
DRC | 4a1c2d9 | 2011-01-28 08:00:10 +0000 | [diff] [blame] | 134 | 0.0.93 |
| 135 | ====== |
DRC | 0f413b2 | 2010-04-06 20:05:39 +0000 | [diff] [blame] | 136 | |
DRC | c773d10 | 2010-06-05 06:58:22 +0000 | [diff] [blame] | 137 | [1] 2982659, Fixed x86-64 build on FreeBSD systems |
DRC | 0f413b2 | 2010-04-06 20:05:39 +0000 | [diff] [blame] | 138 | |
DRC | c773d10 | 2010-06-05 06:58:22 +0000 | [diff] [blame] | 139 | [2] 2988188: Added support for Windows 64-bit systems |
DRC | 1a2219e | 2010-05-10 20:03:36 +0000 | [diff] [blame] | 140 | |
DRC | 0f413b2 | 2010-04-06 20:05:39 +0000 | [diff] [blame] | 141 | |
DRC | 4a1c2d9 | 2011-01-28 08:00:10 +0000 | [diff] [blame] | 142 | 0.0.91 |
| 143 | ====== |
DRC | ae19bf6 | 2010-03-15 11:40:31 +0000 | [diff] [blame] | 144 | |
| 145 | [1] Added documentation to .deb packages |
| 146 | |
| 147 | [2] 2968313: Fixed data corruption issues when decompressing large JPEG images |
| 148 | and/or using buffered I/O with the libjpeg-turbo decompressor |
DRC | 4a1c2d9 | 2011-01-28 08:00:10 +0000 | [diff] [blame] | 149 | |
| 150 | |
| 151 | 0.0.90 |
| 152 | ====== |
| 153 | |
| 154 | Initial release |