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
|
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
|
7440604f2b
|
Correct misuse of the word "pitch" + more code formatting tweaks
|
2013-04-27 20:55:45 +00:00 |
|
DRC
|
1b9184db5b
|
Fix MinGW build and remove duplication of effort
|
2012-10-02 06:47:37 +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
|
b03457663d
|
Fix array size calculations
|
2012-06-07 09:38:57 +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
|
5bd7a89f6a
|
Compiler warnings
|
2012-01-17 11:48:38 +00:00 |
|
DRC
|
211ab00fc4
|
Oops. Don't try to use custom filter at the C level unless it is defined at the Java level.
|
2011-09-26 18:46:09 +00:00 |
|
DRC
|
f343d7332a
|
Implement custom filter callback in Java
|
2011-09-20 05:02:19 +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
|
cd39e3abc1
|
Need to set TJFLAG_NOREALLOC for tjTransform()
|
2011-05-25 04:52:25 +00:00 |
|
DRC
|
3ec2702bfc
|
Clean up constants so that flags, pixel formats, etc. are clearly differentiated; Update documentation accordingly; Name the enums to make it easier to reference them in the docs and clean up the references accordingly; Set Doxygen option to force a detailed description for the constants to always be generated
|
2011-05-21 15:34:54 +00:00 |
|
DRC
|
aa92628cd4
|
Completely refactored the TurboJPEG C API so that it uses pixel formats instead of the clunky pixel size + flags combination to define the pixel size and component order. tjCompress2() and tjTransform() can also now grow the JPEG buffer as needed, which can allow programs to save memory by not pre-allocating the "worst-case" buffer size calculated by TJBUFSIZE(). Converted API documentation to Doxygen. There is no legacy code remaining, so the refactored version of the library has been re-licensed under a BSD-style license.
|
2011-05-21 14:37:15 +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
|
22faf366c3
|
Java code cleanup + Java docs
|
2011-03-15 20:52:02 +00:00 |
|
DRC
|
d594af38e1
|
On Windows, long is 32-bit, so use jlong instead
|
2011-03-04 15:28:16 +00:00 |
|
DRC
|
89d167655e
|
Implement lossless cropping interface in Java
|
2011-03-04 10:13:59 +00:00 |
|
DRC
|
43f33a4d19
|
Fix compiler warnings in Visual C++
|
2011-03-02 01:30:38 +00:00 |
|
DRC
|
ef842c142c
|
Perform size checks on arrays
|
2011-03-02 01:09:20 +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
|
43577eacf9
|
Unused variables
|
2011-02-28 10:51:55 +00:00 |
|
DRC
|
02156d7c53
|
"tjScaledSize"="tjGetScaledSize"
|
2011-02-26 19:53:58 +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
|
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 |
|
DRC
|
b56211da74
|
Use Java capitalization conventions
|
2011-02-08 02:11:37 +00:00 |
|
DRC
|
c20ba350ad
|
Eliminate compiler warnings in Sun Studio
|
2011-02-04 22:13:14 +00:00 |
|
DRC
|
5cc45fd6df
|
JNI interface changed for TJ class, since it only has static methods now
|
2011-02-04 11:22:15 +00:00 |
|
DRC
|
36adfee700
|
Add JNI wrapper for TurboJPEG/OSS
|
2011-02-04 11:06:36 +00:00 |
|