Merge branch 'main' into dev

This commit is contained in:
DRC
2023-01-20 14:09:25 -06:00
13 changed files with 144 additions and 137 deletions

View File

@@ -131,8 +131,8 @@ public class TJTransform extends Rectangle {
* This option will enable progressive entropy coding in the JPEG image
* generated by this particular transform. Progressive entropy coding will
* generally improve compression relative to baseline entropy coding (the
* default), but it will reduce compression and decompression performance
* considerably. Can be combined with {@link #OPT_ARITHMETIC}.
* default), but it will reduce decompression performance considerably. Can
* be combined with {@link #OPT_ARITHMETIC}.
*/
public static final int OPT_PROGRESSIVE = (1 << 5);
/**
@@ -145,8 +145,8 @@ public class TJTransform extends Rectangle {
* This option will enable arithmetic entropy coding in the JPEG image
* generated by this particular transform. Arithmetic entropy coding will
* generally improve compression relative to Huffman entropy coding (the
* default), but it will reduce compression and decompression performance
* considerably. Can be combined with {@link #OPT_PROGRESSIVE}.
* default), but it will reduce decompression performance considerably. Can
* be combined with {@link #OPT_PROGRESSIVE}.
*/
public static final int OPT_ARITHMETIC = (1 << 7);