Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2016-03-14 | 1.9 kB | |
libjpeg-turbo_1.1.1_i386.deb | 2011-05-18 | 719.5 kB | |
libjpeg-turbo_1.1.1_amd64.deb | 2011-05-18 | 676.1 kB | |
libjpeg-turbo32_1.1.1_amd64.deb | 2011-05-18 | 545.1 kB | |
libjpeg-turbo-1.1.1.tar.gz | 2011-05-18 | 1.4 MB | |
libjpeg-turbo-1.1.1.dmg | 2011-05-18 | 1.3 MB | |
libjpeg-turbo-1.1.1-vc64.exe | 2011-05-18 | 866.2 kB | |
libjpeg-turbo-1.1.1-vc.exe | 2011-05-18 | 786.0 kB | |
libjpeg-turbo-1.1.1-solaris.pkg.bz2 | 2011-05-18 | 1.1 MB | |
libjpeg-turbo-1.1.1-gcc64.exe | 2011-05-18 | 988.2 kB | |
libjpeg-turbo-1.1.1-gcc.exe | 2011-05-18 | 744.0 kB | |
libjpeg-turbo-1.1.1.i386.rpm | 2011-05-18 | 681.2 kB | |
libjpeg-turbo-1.1.1.x86_64.rpm | 2011-05-18 | 642.6 kB | |
libjpeg-turbo-1.1.1.src.rpm | 2011-05-18 | 1.4 MB | |
libjpeg-turbo-1.1.1.tar.gz.sig | 2011-05-18 | 72 Bytes | |
Totals: 15 Items | 12.0 MB | 0 |
Packaging changes
As of 2014-03-22, Cygwin packages have been moved into a custom repository directory. See http://www.libjpeg-turbo.org/Documentation/Cygwin for more details.
1.1.1
Significant changes relative to 1.1.0:
-
Fixed a 1-pixel error in row 0, column 21 of the luminance plane generated by
tjEncodeYUV()
. -
libjpeg-turbo's accelerated Huffman decoder previously ignored unexpected markers found in the middle of the JPEG data stream during decompression. It will now hand off decoding of a particular block to the unaccelerated Huffman decoder if an unexpected marker is found, so that the unaccelerated Huffman decoder can generate an appropriate warning.
-
Older versions of MinGW64 prefixed symbol names with underscores by default, which differed from the behavior of 64-bit Visual C++. MinGW64 1.0 has adopted the behavior of 64-bit Visual C++ as the default, so to accommodate this, the libjpeg-turbo SIMD function names are no longer prefixed with an underscore when building with MinGW64. This means that, when building libjpeg-turbo with older versions of MinGW64, you will now have to add
-fno-leading-underscore
to theCFLAGS
. -
Fixed a regression bug in the NSIS script that caused the Windows installer build to fail when using the Visual Studio IDE.
-
Fixed a bug in
jpeg_read_coefficients()
whereby it would not initializecinfo->image_width
andcinfo->image_height
if libjpeg v7 or v8 emulation was enabled. This specifically caused the jpegoptim program to fail if it was linked against a version of libjpeg-turbo that was built with libjpeg v7 or v8 emulation. -
Eliminated excessive I/O overhead that occurred when reading BMP files in cjpeg.
-
Eliminated errors in the output of cjpeg on Windows that occurred when the application was invoked using I/O redirection (
cjpeg <inputfile >output.jpg
.)