aboutsummaryrefslogtreecommitdiff
path: root/turbojpeg.c
AgeCommit message (Expand)Author
2015-08-26Eliminate cppcheck false positive in turbojpeg.cDRC
2015-06-08Now that the TurboJPEG API is reporting libjpeg warnings as errors, an "Inval...DRC
2015-06-01If a warning (such as "Premature end of JPEG file") is triggered in the under...DRC
2015-05-17Back out r1555 and r1548. Using setenv() didn't fix the iOS simulator issue....DRC
2015-05-16Fix the Windows build. I remember now why I used putenv() originally-- becau...DRC
2015-05-15Unless you define _ANSI_SOURCE, then putenv() on Mac is renamed to putenv$UNI...DRC
2015-02-23Surround the usage of getenv() in the TurboJPEG API with #ifndef NO_GETENV so...DRC
2014-11-19Sometimes the sampling factors in grayscale images can be > 1 (for instance, ...DRC
2014-10-23Another oops. tjBufSizeYUV2() should return -1 if width < 1.DRC
2014-10-23Oops. tjPlaneSizeYUV() should return -1 if componentID > 0 and subsamp==TJSA...DRC
2014-08-22Add a set of undocumented environment variables and Java system properties th...DRC
2014-08-17Refactored YUVImage Java class so that it supports both unified YUV image buf...DRC
2014-08-11Extend the TurboJPEG C API to support handling YUV images stored in separate ...DRC
2014-05-18libjpeg-turbo has never supported non-ANSI compilers, so get rid of the cruft...DRC
2014-05-16Get rid of the HAVE_PROTOTYPES configuration option, as well as the related J...DRC
2014-05-06Phrasing. Boom.DRC
2014-04-20Fix crashes and bogus output in the CMYK and decode-to-YUV features that occu...DRC
2014-04-16Fix warnings about unused variables when building with GCC 4.8.xDRC
2014-03-10For now, punt on trying to support fancy upsampling in tjDecodeYUV(). Fancy ...DRC
2014-03-10Fix additional uninitialized values reported by valgrindDRC
2014-03-10When tjDecodeYUV() is used with a "fresh" decompressor instance (one that has...DRC
2014-03-07Go ahead and call jinit_master_decompress() rather than trying to reproduce i...DRC
2014-03-06Oops. We need to call start_pass() on the color converter in order to alloca...DRC
2014-03-06Oops. We need to call start_pass() on the color converter in order to alloca...DRC
2014-03-06Oops. We need to call start_pass() on the color converter in order to alloca...DRC
2014-02-28Fix unitialized value reported by valgrind (the upsampling routine used by 4:...DRC
2014-02-28Implement a YUV decode function in the TurboJPEG API, to be symmetric with tj...DRC
2014-02-28Remove unused code (the destination manager is not used during YUV encoding, ...DRC
2014-02-28Remove unused code (the destination manager is not used during YUV encoding, ...DRC
2014-02-28Use C-style commentsDRC
2014-02-28Remove unused code (the destination manager is not used during YUV encoding, ...DRC
2014-02-27Use C-style commentsDRC
2014-02-11Fix an issue that prevented tjEncodeYUV2() and TJCompressor.encodeYUV() from ...DRC
2014-02-11Fix an issue that prevented tjEncodeYUV2() and TJCompressor.encodeYUV() from ...DRC
2014-02-11Fix an issue that prevented tjEncodeYUV3() and TJCompressor.encodeYUV() from ...DRC
2013-10-31r1065 broke the build on Windows, because getinstance() defines a variable. ...DRC
2013-10-30Extend the TurboJPEG C API to support compressing JPEG images from YUV planar...DRC
2013-10-30OopsDRC
2013-10-30Fix a really subtle issue whereby an invalid free() could occur if a program ...DRC
2013-10-30Fix a really subtle issue whereby an invalid free() could occur if a program ...DRC
2013-08-23Add CMYK support to the TurboJPEG C APIDRC
2013-08-18Add 4:1:1 subsampling support in the TurboJPEG C APIDRC
2013-05-07Fix incorrect data output and buffer overruns in the new tjDecompressToYUV2()...DRC
2013-04-26Extend the TurboJPEG C API to support generating YUV images with arbitrary pa...DRC
2013-01-22Actually, turbojpeg.c works with libjpeg as wellDRC
2013-01-21Eliminated the awkward and confusing "TurboJPEG/OSS" designation, since there...DRC
2012-07-03Oops. Add support for TJFLAG_FASTDCT to tjDecompressToYUV() as well.DRC
2012-07-03Oops. Add support for TJFLAG_FASTDCT to tjDecompressToYUV() as well.DRC
2012-06-29Add flags to the TurboJPEG API that allow the caller to force the use of eith...DRC
2012-06-29Added flags to the TurboJPEG API that allow the caller to force the use of ei...DRC