1. 2ae7918 Fix an error that occurred when trying to use the lossless transform feature without specifying -quiet; formatting tweak by DRC · 10 years ago
  2. 88f260c Move the garbage collection of the JPEG tiles into the decompression function to increase the chances that tiled decompression of large images will succeed without an OutOfMemoryError. by DRC · 10 years ago
  3. 40a0a02 Update (C) year by DRC · 10 years ago
  4. 695b6e8 Don't use deprecated constructor by DRC · 10 years ago
  5. aa255e2 Doc tweaks by DRC · 10 years ago
  6. bcb5f02 Go ahead and deprecate the old constructor in 1.3.1 instead of in 1.4, since it uses a deprecated method by DRC · 10 years ago
  7. c33347c Add @Deprecated to the deprecated Java methods, so javac will actually print deprecation warnings, as opposed to just listing the methods as deprecated in javadoc; remove the use of the deprecated methods by our own test programs. by DRC · 10 years ago
  8. a15f19f Wordsmithing & formatting tweaks by DRC · 10 years ago
  9. d4b453c Back-port the -subsamp option from 1.4 rather than use the hackish approach of replacing 4:2:2 with 4:4:0. This has the added advantage of allowing the user to test only a specific level of subsampling. by DRC · 10 years ago
  10. db0e279 Oops. This was apparently the victim of an overly aggressive search/replace. by DRC · 10 years ago
  11. d45c549 Fix the build of the Java classes when using MSVC 2010 and later. Something in the recesses of my brain is telling me that I tried this before and it failed under some circumstances, but it must have been a bug in an older CMake implementation. CMake 2.8.8 and later seem to work fine with this patch. This patch also updates the minimum required version to 2.8.8, because 2.8.8 fixed another issue that was preventing the SIMD code from building under MSVC 2010 and later. by DRC · 10 years ago
  12. 2c0c807 Fix an issue that prevented tjEncodeYUV2() and TJCompressor.encodeYUV() from working properly if the source image was very tiny. Basically, jpeg_start_compress() was attempting to write the JPEG headers, which was overrunning the YUV buffer. This patch removes the call to jpeg_start_compress() in tjEncodeYUV2() and replaces it with calls to the individual routines that are necessary to initialize the color converter and downsampler. TJUnitTest has also been modified to test for this condition (the buffer size regression test now works in YUV mode.) by DRC · 10 years ago
  13. b3a028e Per the conventions of the image compression and digital video communities, use "YCbCr" to describe the JPEG colorspace and "YUV" to describe an image format consisting of Y, Cb, and Cr planes (this partially reverts r959.) by DRC · 11 years ago
  14. 5a7e9e5 Per the conventions of the image compression and digital video communities, use "YCbCr" to describe the JPEG colorspace and "YUV" to describe an image format consisting of Y, Cb, and Cr planes (this partially reverts r959.) by DRC · 11 years ago
  15. ae92418 Add note regarding the fact that 4:4:0 lacks full SIMD support; Add an option for benchmarking 4:4:0 subsampling in TJBench; Wordsmithing; Disable timestamp in generated HTML files to make diffing and merging easier by DRC · 11 years ago
  16. 49df783 Clean up the output of tjunittest and TJUnitTest by DRC · 11 years ago
  17. bb9e147 Fix backward compatibility between the Java classes and the 1.2.x JNI library (as long as the 1.3 Java features are not used.) by DRC · 11 years ago
  18. 1d29c5f Correct misuse of the word "pitch" + more code formatting tweaks by DRC · 11 years ago
  19. 67bee86 Code formatting tweaks by DRC · 11 years ago
  20. 65d4a46 Java doc tweaks by DRC · 11 years ago
  21. d7a642b Minor doc tweaks + ChangeLog update by DRC · 11 years ago
  22. 00400a0 In order to avoid a functional regression with previous releases, the JAR file needs to be able to load either the 64-bit or 32-bit JNI library on Un*x systems. by DRC · 11 years ago
  23. 441308c Move the TurboJPEG DLLs back into the system directory on Windows platforms. For Windows, it doesn't really simplify the build system to install these libraries in c:\libjpeg-turbo*, and it introduces potential problems with loading the JNI library. Specifically, if a user linked their Java app against the 64-bit libjpeg-turbo SDK and then used a 32-bit JVM at run time, they would not be able to load the 32-bit turbojpeg.dll without manipulating java.library.path or the PATH environment (and vice versa for building against the 32-bit libjpeg-turbo SDK and using a 64-bit JVM at run time.) by DRC · 11 years ago
  24. 4b357ab Older versions of automake don't support multiple _JAVA primaries, but we don't actually have to specify a "dist" primary, since the Java sources are already included under EXTRA_DIST. by DRC · 11 years ago
  25. 94f7ac9 Fix 'make dist' by DRC · 11 years ago
  26. 7175e51 Further enhancements/fixes to the packaging system: by DRC · 11 years ago
  27. 764e1e2 Overhaul Linux/Unix packaging system, primarily to avoid conflicts with vendor-supplied libjpeg-turbo packages (such as in Fedora and RHEL 6.) This also streamlines the packaging system somewhat, since it is no longer necessary to move the TurboJPEG libraries into the system library directory. Relocating those libraries was originally done to provide backward compatibility with TurboJPEG/IPP, but that package is long obsolete, and the software that formerly used it has been linking statically with libjpeg-turbo for quite some time. by DRC · 11 years ago
  28. 5039d73 Eliminated the awkward and confusing "TurboJPEG/OSS" designation, since there are no other active implementations of the TurboJPEG API anymore; don't refer to the libjpeg API library as "libjpeg-turbo" anymore, since that can be confusing; ARM v7s build instructions by DRC · 12 years ago
  29. 98ca1c3 ImageIO.read() returns null if the input image type is not supported (which occurs when trying to read a PPM file), so output a friendly error instead of letting the next line throw a null pointer exception. by DRC · 12 years ago
  30. fac3bea Add a Java version of TJBench and extend the TurboJPEG Java API to support it (this involved adding a polymorphic method in TJCompressor that accepts x and y offsets into a larger buffer, similar to the previous modification that had been done to TJDecompressor.) by DRC · 12 years ago
  31. 61e1341 If libturbojpeg.jnilib is not found on Mac systems, specifically look for it under /usr/lib, since /usr/lib isn't part of the default java.library.path on that platform. by DRC · 12 years ago
  32. 73d74c1 Add flags to the TurboJPEG API that allow the caller to force the use of either the fast or the accurate DCT/IDCT algorithms in the underlying codec. by DRC · 12 years ago
  33. f659f43 Add x, y parameters to TJDecompressor so that it can be used to decompress to an arbitrary position in the destination image (TurboVNC needs this.) by DRC · 12 years ago
  34. cac1051 Fix the behavior of the alpha-enabled colorspace constants whenever libjpeg-turbo is built without SIMD support and merged upsampling is used. by DRC · 12 years ago
  35. 67ce3b2 Added new alpha channel colorspace constants/pixel formats, so applications can specify that they need the unused byte in a 4-component RGB output buffer set to 0xFF when decompressing. by DRC · 13 years ago
  36. 80803ae "which"="that" by DRC · 13 years ago
  37. 6b968b2 Add TJCustomFilter to Windows build by DRC · 13 years ago
  38. f546711 Implement custom filter callback in Java by DRC · 13 years ago
  39. 835b76f Fix 'make docs' with out-of-tree builds by DRC · 13 years ago
  40. c6fa5ba Fix 'make headers' with out-of-tree builds by DRC · 13 years ago
  41. c08e8c1 When decompressing to a 4-byte RGB buffer, set the unused byte to 0xFF so it can be interpreted as an opaque alpha channel. by DRC · 13 years ago
  42. 724c56b Use random noise to ensure that the JPEG image generated in the buffer size test exceeds the size of the uncompressed source image. by DRC · 13 years ago
  43. 9b49f0e Re-work TJBUFSIZE() to take into account the level of chrominance subsampling by DRC · 13 years ago
  44. 215aa8b Re-factor checkBufYUV() function to more closely resemble re-factored checkBuf() function by DRC · 13 years ago
  45. f962fbb Refactor slightly to match new C code by DRC · 13 years ago
  46. db42506 Allow customization of Java compiler flags by DRC · 13 years ago
  47. 279bd34 Change build instructions and README to reflect the fact that the Java front-end classes are now part of the build and distribution by DRC · 13 years ago
  48. b0428a7 Fix compiler warning by DRC · 13 years ago
  49. 848f225 Oops. Constructor should actually do something. by DRC · 13 years ago
  50. 62c6f98 Distribute TJLoader.java.in by DRC · 13 years ago
  51. b2f9415 Slight refactor to put ScalingFactor into its own class (mainly because the $ in the class name was wreaking havoc on the build scripts, but also to add a few convenience methods to it) and to create a separate loader class so we can provide a .jar file with the MinGW distribution that loads the correct DLL by DRC · 13 years ago
  52. 86e51f2 Fix compiler warning with OpenJDK by DRC · 13 years ago
  53. 957d623 Include TurboJPEG/OSS Java wrapper JAR in Windows distribution packages by DRC · 13 years ago
  54. dffd53d Fix 'make dist' so that it includes only what we need from java/ (it was errantly including java/Makefile) by DRC · 13 years ago
  55. f2602ce Build and package TurboJPEG/OSS Java wrapper into JAR file by DRC · 13 years ago
  56. b6ed7d3 Use a different naming convention, to avoid conflict with jpegut by DRC · 13 years ago
  57. 4f8c295 Clean up compiler warnings by DRC · 13 years ago
  58. 1f014c3 Fix compression from/decompression to TYPE_INT_{RGB|BGR} BufferedImages on big endian platforms by DRC · 13 years ago
  59. 2c74e51 More Java API cleanup by DRC · 13 years ago
  60. 92549de Java code cleanup + Java docs by DRC · 13 years ago
  61. 7c99822 Add notes about performance by DRC · 13 years ago
  62. 16c7077 Add an option to display the output image by DRC · 13 years ago
  63. 1da67e1 If a scaled-down JPEG output image is requested, we must decompress and recompress the transformed image. by DRC · 13 years ago
  64. 6bd084a Oops. Forgot to add TJTransform class by DRC · 13 years ago
  65. 3133441 Add access methods for getting at the JPEG buffer by DRC · 13 years ago
  66. 7d4b001 If transforming and outputting a JPEG file, output the transformed file directly instead of decompressing/recompressing it by DRC · 13 years ago
  67. d0a8136 Handle 4:4:0 (transposed 4:2:2 subsampling) by DRC · 13 years ago
  68. e857301 Implement lossless cropping interface in Java by DRC · 13 years ago
  69. 2e2358e Print stack trace on error by DRC · 13 years ago
  70. ad05754 Methods of a final class are automatically final by DRC · 13 years ago
  71. 5528b55 Use new scaling API by DRC · 13 years ago
  72. f7f3ea4 Use consistent formatting conventions by DRC · 13 years ago
  73. 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 · 13 years ago
  74. 438affe by DRC · 13 years ago
  75. 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 · 13 years ago
  76. 0ad78a6 Add line feed by DRC · 13 years ago
  77. 026f7ce Numerous enhancements, including using the new BufferedImage support to read/write non-JPEG files by DRC · 13 years ago
  78. b605cac Check for invalid subsampling factor by DRC · 13 years ago
  79. 84a1bcc Support for compressing from/decompressing to a BufferedImage in the Java wrapper by DRC · 13 years ago
  80. 3bad53f More JNI cleanup + added unit test and fixed bugs uncovered by it by DRC · 13 years ago
  81. 36336fc Streamline Java wrapper by DRC · 13 years ago
  82. b28fc57 Make the scaling API a bit more friendly by DRC · 13 years ago
  83. e1303ef Expose TurboJPEG scaling features in Java wrapper by DRC · 13 years ago
  84. c5a4199 Restructure Java classes into their own package by DRC · 13 years ago
  85. 2413cb8 Use Java capitalization conventions by DRC · 13 years ago
  86. f2214c2 by DRC · 14 years ago
  87. ed6526f by DRC · 14 years ago
  88. 5ccb982 JNI interface changed for TJ class, since it only has static methods now by DRC · 14 years ago
  89. f8e0055 Add JNI wrapper for TurboJPEG/OSS by DRC · 14 years ago