- ba5ea51 Tile generation did not work with TJXFORM_HFLIP, because the underlying transform code was using an in-place algorithm, which modified the source coefficients after the first tile was generated. Thus, create a new option which allows TurboJPEG to turn off the in-place horizontal flip if there are multiple transforms being performed from the same set of coefficients. by DRC · 14 years ago
- f2cef49 Transform tests; Variable benchmark time; General cleanup by DRC · 14 years ago
- 6a833a8 Add an option to force grayscale->RGB conversion (needed for jpgtest regression test) by DRC · 14 years ago
- 3c2d7f2 Move per-format flag assignments to the actual TurboJPEG function calls by DRC · 14 years ago
- 9977e28 Make the C version work more like the Java version by DRC · 14 years ago
- 45358dd Generate separate JPEG images for the YUV decode tests by DRC · 14 years ago
- 0a07969 Oops. Left out the all-important transform structures by DRC · 14 years ago
- 0a32519 Since lossless transforms have such a high fixed performance cost, implement a mechanism for performing more than one at a time on the same source image. by DRC · 14 years ago
- a81d310 Wordsmithing and general cleanup by DRC · 14 years ago
- da5220a Fix Windows build; Add grayscale tests to Windows build; Add proper implementation of snprintf on Windows and use snprintf() in TurboJPEG library and tests instead of sprintf() by DRC · 14 years ago
- e6ab539 Fix compiler warnings in Visual C++ by DRC · 14 years ago
- 43a29d2 Fix compiler warnings in Visual C++ by DRC · 14 years ago
- 6acf52b Perform size checks on arrays by DRC · 14 years ago
- 5528b55 Use new scaling API by DRC · 14 years ago
- 0f1f60d Make error handling more consistent with other TurboJPEG C code by DRC · 14 years ago
- b15b7df Use "bailout" label to be more consistent with other TurboJPEG C code by DRC · 14 years ago
- f7f3ea4 Use consistent formatting conventions by DRC · 14 years ago
- 20ec358 Add getScalingFactors() method to libturbojpeg version script by DRC · 14 years ago
- 109a578 tjGetScaledSize() would never be able to accommodate scaling factors > 1, so replace it with a function that returns a list of fractional scaling factors that TurboJPEG supports. by DRC · 14 years ago
- 7166bb7 Don't call jpeg_finish_compress() with YUV output, because it tries to insert an EOI marker right in the middle of our image data. by DRC · 14 years ago
- 6ee5459 Don't call jpeg_finish_compress() with YUV output, because it tries to insert an EOI marker right in the middle of our image data. by DRC · 14 years ago
- 438affe by DRC · 14 years ago
- 1a3dbe6 Unused variables by DRC · 14 years ago
- 23f2bba Improve performance a bit for the non-SIMD case by DRC · 14 years ago
- 5a9d6c3 Improve performance a bit for the non-SIMD case by DRC · 14 years ago
- 66df5ec Oops. cconvert is still needed for 12-bit samples by DRC · 14 years ago
- ddb158c Add short names for RGB->grayscale MMX functions by DRC · 14 years ago
- 07122dd Change filename in header by DRC · 14 years ago
- 0244061 Make Visual C++ happy by DRC · 14 years ago
- da58a91 Make Visual C++ happy by DRC · 14 years ago
- 890f1e0 Expose libjpeg lossless transform feature in TurboJPEG/OSS by DRC · 14 years ago
- 17ac372 Fix compiler warnings by DRC · 14 years ago
- 5d1e034 Enable full GCC compiler warnings by default by DRC · 14 years ago
- 0769f50 Fix compiler warnings by DRC · 14 years ago
- b4a50ce Enable full GCC compiler warnings by default by DRC · 14 years ago
- 992611b "tjScaledSize"="tjGetScaledSize" (again) by DRC · 14 years ago
- 98a7bde Remove entry for tjScaledSize() by DRC · 14 years ago
- 89d1164 Include tjGetScaledSize() in version scripts by DRC · 14 years ago
- 1b1e886 "tjScaledSize"="tjGetScaledSize" by DRC · 14 years ago
- 361a637 Fix uninitialized variables by DRC · 14 years ago
- 88534c5 Add RGB --> Grayscale YUV decoding test by DRC · 14 years ago
- 3484e0b Add RGB-->Grayscale YUV decode test by DRC · 14 years ago
- e4d9b5b by DRC · 14 years ago
- 4f1580c Implement YUV encode/decode methods at the Java level; Remove some of the arguments from the Java API and replace with get/set methods; General API cleanup; Fix BufferedImage grayscale tests in TJUnitTest by DRC · 14 years ago
- d5a69af Fix the buffer size regression test so that it generates the intended pixel patterns by DRC · 14 years ago
- 0a192ac Oops. Committed some debugging code by DRC · 14 years ago
- 8424160 Replace the TJ_YUV flag with two new API functions by DRC · 14 years ago
- 0745c0f Correct memory allocation failure messages by DRC · 14 years ago
- 94476c6 Only access TJBUFSIZEYUV symbol if YUV encoding is enabled, and add 1 to the buffer size; This allows jpgtest to be used to benchmark the old TurboJPEG/IPP libraries. by DRC · 14 years ago
- 0cc1279 Use correct size for YUV buffers by DRC · 14 years ago
- 6a1580f Tiling doesn't work with YUV encoding either by DRC · 14 years ago
- f8552fa Fix various CR/LF issues by DRC · 14 years ago
- 9fa9559 Use a proper version script for libturbojpeg by DRC · 14 years ago
- 10e3193 by DRC · 14 years ago
- eeab695 Replace the TJ_YUV flag with two new API functions, and add TJBUFSIZEYUV() from trunk by DRC · 14 years ago
- 5cb1b68 Tiling doesn't work with YUV encoding either by DRC · 14 years ago
- 0b11d1c Fix various CR/LF issues by DRC · 14 years ago
- 582a46a Ensure that libjpeg state is reset if an error occurs by DRC · 14 years ago
- 6e51e19 Use a proper version script for libturbojpeg, since we've added functions to it since 1.0 by DRC · 14 years ago
- 0ad78a6 Add line feed by DRC · 14 years ago
- 026f7ce Numerous enhancements, including using the new BufferedImage support to read/write non-JPEG files by DRC · 14 years ago
- b605cac Check for invalid subsampling factor by DRC · 14 years ago
- 84a1bcc Support for compressing from/decompressing to a BufferedImage in the Java wrapper by DRC · 14 years ago
- 3bad53f More JNI cleanup + added unit test and fixed bugs uncovered by it by DRC · 14 years ago
- 2ca3eb5 Oops. dumpbuf() was displaying only red components. by DRC · 14 years ago
- cce6b43 Oops. dumpbuf() was displaying only red components. by DRC · 14 years ago
- 7ffa0c8 Oops. dumpbuf() was displaying only red components. by DRC · 14 years ago
- 404e82e Test all YUV decode paths by DRC · 14 years ago
- 601a433 Test all YUV decode paths by DRC · 14 years ago
- e0d4d34 by DRC · 14 years ago
- 36336fc Streamline Java wrapper by DRC · 14 years ago
- 4e8ae08 Add new functions to anonymous version script by DRC · 14 years ago
- b28fc57 Make the scaling API a bit more friendly by DRC · 14 years ago
- 45bd1f2 "TurboJPEG/OSS"="TurboJPEG", since the TurboJPEG header is used with other codecs besides libjpeg-turbo by DRC · 14 years ago
- 7d9d434 "TurboJPEG/OSS"="TurboJPEG", since the TurboJPEG header is used with other codecs besides libjpeg-turbo by DRC · 14 years ago
- f3cf973 Add TJBUFSIZEYUV() convenience function by DRC · 14 years ago
- 035aac4 RGBA=RGBX, BGRA=BGRX, ABGR=XBGR, ARGB=XRGB by DRC · 14 years ago
- b67c2dc Implement "ultra quiet mode" for generating output that is easy to copy/paste into a spreadsheet by DRC · 14 years ago
- c4c3049 Wordsmithing by DRC · 14 years ago
- 9cd2c42 Include jpgtest in Unix/Linux distribution packages by DRC · 14 years ago
- c62cc76 Include libjpeg run-time programs and jpgtest in installer; Move documentation in SDK distribution packages into doc\ subdirectory by DRC · 14 years ago
- 52c479d Disable CXX compiler check by DRC · 14 years ago
- b4b3140 RGBA=RGBX, BGRA=BGRX, ABGR=XBGR, ARGB=XRGB by DRC · 14 years ago
- 2a28599 Implement "ultra quiet mode" for generating output that is easy to copy/paste into a spreadsheet by DRC · 14 years ago
- 3e87c8b Wordsmithing by DRC · 14 years ago
- db8df01 by DRC · 14 years ago
- 240d82f Include jpgtest in Unix/Linux distribution packages by DRC · 14 years ago
- 8569c2f Include libjpeg run-time programs and jpgtest in installer; Move documentation in SDK distribution packages into doc\ subdirectory by DRC · 14 years ago
- 5d6f858 Disable CXX compiler check by DRC · 14 years ago
- 0df25a7 Wordsmithed the project description by DRC · 14 years ago
- 2ddcc63 Distribute high-quality and grayscale test images by DRC · 14 years ago
- f3281e8 Oops. We still had the description left over from VirtualGL by DRC · 14 years ago
- 0d2d965 Wordsmithed the project description by DRC · 14 years ago
- 16e761e Include high-quality test image in distribution by DRC · 14 years ago
- 69e1544 1.1.0 by DRC · 14 years ago
- da509e3 New C version of jpgtest needs libm by DRC · 14 years ago
- 9af4077 The API/ABI should be described as "libjpeg v8", not "libjpeg v8b", since there are multiple libjpeg releases with the same interface by DRC · 14 years ago
- 4db36eb Add high-quality JPEG tests to CMake build system by DRC · 14 years ago
- 0700eab Various doc tweaks by DRC · 14 years ago
- a49c4e5 The SIMD quantization algorithm does not produce correct results with the fast forward integer DCT and JPEG qualities >= 98, so for now, use the non-SIMD quantization function under those circumstances. by DRC · 14 years ago