org.xbib.io.compress.xz.SPARCOptions Maven / Gradle / Ivy
package org.xbib.io.compress.xz;
import org.xbib.io.compress.xz.simple.SPARC;
import java.io.InputStream;
/**
* BCJ filter for SPARC.
*/
public class SPARCOptions extends BCJOptions {
private static final int ALIGNMENT = 4;
public SPARCOptions() {
super(ALIGNMENT);
}
public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
return new SimpleOutputStream(out, new SPARC(true, startOffset));
}
public InputStream getInputStream(InputStream in) {
return new SimpleInputStream(in, new SPARC(false, startOffset));
}
FilterEncoder getFilterEncoder() {
return new BCJEncoder(this, BCJCoder.SPARC_FILTER_ID);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy