Skip to content

Commit

Permalink
JXLOptions: change default compression from 0 to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Traneptora committed Oct 9, 2024
1 parent 64bec83 commit 52b08d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion java/com/traneptora/jxlatte/JXLOptions.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.traneptora.jxlatte;

import java.util.zip.Deflater;

import com.traneptora.jxlatte.io.Loggers;

public class JXLOptions {
Expand All @@ -21,7 +23,7 @@ public class JXLOptions {
public int verbosity = Loggers.LOG_BASE;
public int hdr = HDR_AUTO;
public int outputDepth = -1;
public int outputCompression = 0;
public int outputCompression = Deflater.BEST_SPEED;
public boolean renderVarblocks = false;
public int peakDetect = PEAK_DETECT_AUTO;
public int threads = 0;
Expand Down

0 comments on commit 52b08d2

Please sign in to comment.