DRC
540789427c
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 r960.)
2013-11-25 21:12:23 +00:00
DRC
b767b5e6bb
Deprecate and undocument the FORCE{MMX|SSE|SSE2|SSE3} flags. These were originally introduced in TurboJPEG/IPP as a way to override the automatic CPU selection in the underlying IPP codec, which was closed source. They are not meaningful anymore, since libjpeg-turbo provides environment variables to accomplish the same thing and since it no longer necessarily uses x86 SIMD code behind the scenes.
2013-10-31 07:11:39 +00:00
DRC
a7fa97cda5
Extend the TurboJPEG Java API to support compressing JPEG images from YUV planar images
2013-10-31 05:04:51 +00:00
DRC
ae0631474a
Oops. Forgot to implement access method for the colorspace & extend TJBench
2013-08-23 07:13:59 +00:00
DRC
ff3d754f29
Wordsmithing
2013-08-23 06:38:59 +00:00
DRC
0fb3247f9a
Add CMYK support to the TurboJPEG Java API & clean up a few things in the C API
2013-08-23 04:45:43 +00:00
DRC
45b2cca4c0
Add 4:1:1 subsampling support in the TurboJPEG Java API
2013-08-18 11:04:21 +00:00
DRC
2296d513c1
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
2013-08-18 10:39:30 +00:00
DRC
4fcdeb795d
Extend the TurboJPEG Java API to support generating YUV images with arbitrary padding and to support image scaling when decompressing to YUV
2013-04-28 01:32:52 +00:00
DRC
771fbdeb99
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.)
2013-04-27 23:25:17 +00:00
DRC
7440604f2b
Correct misuse of the word "pitch" + more code formatting tweaks
2013-04-27 20:55:45 +00:00
DRC
aaa5ae742a
Code formatting tweaks
2013-04-27 12:38:20 +00:00
DRC
2f83944e9b
Java doc tweaks
2013-04-27 01:08:55 +00:00
DRC
61130e332a
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.
2013-04-24 06:21:24 +00:00
DRC
3d625746d4
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.)
2013-04-24 05:26:42 +00:00
DRC
2de2cf9e54
Further enhancements/fixes to the packaging system:
...
-- The Mac and Cygwin packages will now be created with the directory structure defined by the configure variables "prefix", "bindir", "libdir", etc., with the exception that the docs are always installed under /usr/share/doc/{package_name}-{version} on Cygwin and /Library/Documentation/{package_name} on Mac.
-- Fixed a duplicate filename warning when generating RPMs with the default prefix of /opt/libjpeg-turbo.
-- Moved the TurboJPEG libraries out of the system directory on Windows and Mac. It is no longer necessary to put them there, since we are not trying to be backward compatible with TurboJPEG/IPP anymore.
-- Fixed an issue whereby building the "installer" target on Windows would not build the Java JAR file, thus causing an error if the JAR had not been previously built.
-- Building the "install" target on Windows will now install libjpeg-turbo into c:\libjpeg-turbo[-gcc][64] (the same directories used by the installers.) This can be overridden by setting CMAKE_INSTALL_PREFIX.
-- The Java classes on all platforms will now look for the JNI library in the directory under which the build/packaging system installs it.
2013-04-23 22:29:00 +00:00
DRC
70d3c1aeec
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.)
2012-09-24 02:27:55 +00:00
DRC
a6c9eaf155
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.
2012-08-24 02:44:39 +00:00
DRC
019d51d4f1
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.
2012-06-29 23:46:38 +00:00
DRC
448d12d298
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.)
2012-06-06 08:41:06 +00:00
DRC
c1e4151607
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.
2011-12-19 02:21:03 +00:00
DRC
51b8cd674a
"which"="that"
2011-12-15 13:12:59 +00:00
DRC
f343d7332a
Implement custom filter callback in Java
2011-09-20 05:02:19 +00:00
DRC
d345306ecc
When decompressing to a 4-byte RGB buffer, set the unused byte to 0xFF so it can be interpreted as an opaque alpha channel.
2011-09-08 23:54:40 +00:00
DRC
489864aefa
Re-work TJBUFSIZE() to take into account the level of chrominance subsampling
2011-07-12 03:17:23 +00:00
DRC
0e72ee1ccc
Oops. Constructor should actually do something.
2011-04-02 03:43:12 +00:00
DRC
90a42bb4d2
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
2011-04-02 02:09:03 +00:00
DRC
d6d704d30d
Fix compiler warning with OpenJDK
2011-04-01 20:31:03 +00:00
DRC
d8cc0513ee
Fix compression from/decompression to TYPE_INT_{RGB|BGR} BufferedImages on big endian platforms
2011-03-17 07:39:25 +00:00
DRC
f90d1d84c7
More Java API cleanup
2011-03-16 00:02:53 +00:00
DRC
22faf366c3
Java code cleanup + Java docs
2011-03-15 20:52:02 +00:00
DRC
5526cf13d0
Oops. Forgot to add TJTransform class
2011-03-04 14:10:29 +00:00
DRC
d5bc5379a4
Add access methods for getting at the JPEG buffer
2011-03-04 13:41:05 +00:00
DRC
696f25e052
Handle 4:4:0 (transposed 4:2:2 subsampling)
2011-03-04 13:04:24 +00:00
DRC
89d167655e
Implement lossless cropping interface in Java
2011-03-04 10:13:59 +00:00
DRC
e3c79837d1
Methods of a final class are automatically final
2011-03-04 09:15:07 +00:00
DRC
e701ed74c0
Use consistent formatting conventions
2011-03-01 20:03:32 +00:00
DRC
be085e08b3
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.
2011-03-01 09:53:07 +00:00
DRC
8755a6805a
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
2011-02-25 06:11:03 +00:00
DRC
4e08a1d3bc
Check for invalid subsampling factor
2011-02-23 20:51:23 +00:00
DRC
a311c1cd21
Support for compressing from/decompressing to a BufferedImage in the Java wrapper
2011-02-23 12:09:56 +00:00
DRC
4802041125
More JNI cleanup + added unit test and fixed bugs uncovered by it
2011-02-23 02:20:49 +00:00
DRC
1a9a4d13c7
Streamline Java wrapper
2011-02-22 10:27:31 +00:00
DRC
38218222cd
Make the scaling API a bit more friendly
2011-02-22 06:41:29 +00:00
DRC
a683760d1c
Expose TurboJPEG scaling features in Java wrapper
2011-02-16 03:26:48 +00:00
DRC
7404770855
Restructure Java classes into their own package
2011-02-08 06:54:36 +00:00