Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2016-09-23 | 2.7 kB | |
libjpeg-turbo-1.5.0.tar.gz.sig | 2016-09-23 | 72 Bytes | |
libjpeg-turbo-official_1.5.0_i386.deb | 2016-06-07 | 1.0 MB | |
libjpeg-turbo-official_1.5.0_amd64.deb | 2016-06-07 | 944.5 kB | |
libjpeg-turbo-official32_1.5.0_amd64.deb | 2016-06-07 | 754.3 kB | |
libjpeg-turbo-official-1.5.0.x86_64.rpm | 2016-06-07 | 907.5 kB | |
libjpeg-turbo-official-1.5.0.src.rpm | 2016-06-07 | 1.7 MB | |
libjpeg-turbo-official-1.5.0.i386.rpm | 2016-06-07 | 1.0 MB | |
libjpeg-turbo-1.5.0.tar.gz | 2016-06-07 | 1.7 MB | |
libjpeg-turbo-1.5.0.dmg | 2016-06-07 | 4.5 MB | |
libjpeg-turbo-1.5.0-vc64.exe | 2016-06-07 | 1.2 MB | |
libjpeg-turbo-1.5.0-vc.exe | 2016-06-07 | 1.1 MB | |
libjpeg-turbo-1.5.0-jws.zip | 2016-06-07 | 1.2 MB | |
libjpeg-turbo-1.5.0-gcc64.exe | 2016-06-07 | 1.2 MB | |
libjpeg-turbo-1.5.0-gcc.exe | 2016-06-07 | 1.1 MB | |
Totals: 15 Items | 18.2 MB | 90 |
Package signatures
To ensure the integrity of the libjpeg-turbo binary packages, the RPM and DEB
files and the source tarball are signed using the following key:
http://www.libjpeg-turbo.org/key/LJT-GPG-KEY-1024
http://pgp.mit.edu/pks/lookup?op=get&search=0x85C7044E033FDE16
and the Windows installers are signed using a code signing certificate.
Cygwin
Cygwin packages are no longer provided with this release, since both Cygwin and Cygwin64 are now supplying their own libjpeg-turbo packages.
1.5.0
Significant changes relative to 1.5 beta1:
-
Fixed an issue whereby a malformed motion-JPEG frame could cause the "fast path" of libjpeg-turbo's Huffman decoder to read from uninitialized memory.
-
Added libjpeg-turbo version and build information to the global string table of the libjpeg and TurboJPEG API libraries. This is a common practice in other infrastructure libraries, such as OpenSSL and libpng, because it makes it easy to examine an application binary and determine which version of the library the application was linked against.
-
Fixed a couple of issues in the PPM reader that would cause buffer overruns in cjpeg if one of the values in a binary PPM/PGM input file exceeded the maximum value defined in the file's header. libjpeg-turbo 1.4.2 already included a similar fix for ASCII PPM/PGM files. Note that these issues were not security bugs, since they were confined to the cjpeg program and did not affect any of the libjpeg-turbo libraries.
-
Fixed an issue whereby attempting to decompress a JPEG file with a corrupt header using the
tjDecompressToYUV2()
function would cause the function to abort without returning an error and, under certain circumstances, corrupt the stack. This only occurred iftjDecompressToYUV2()
was called prior to callingtjDecompressHeader3()
, or if the return value fromtjDecompressHeader3()
was ignored (both cases represent incorrect usage of the TurboJPEG API.) -
Fixed an issue in the ARM 32-bit SIMD-accelerated Huffman encoder that prevented the code from assembling properly with clang.
-
The
jpeg_stdio_src()
,jpeg_mem_src()
,jpeg_stdio_dest()
, andjpeg_mem_dest()
functions in the libjpeg API will now throw an error if a source/destination manager has already been assigned to the compress or decompress object by a different function or by the calling program. This prevents these functions from attempting to reuse a source/destination manager structure that was allocated elsewhere, because there is no way to ensure that it would be big enough to accommodate the new source/destination manager.