All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.io.compress.xz.ARMOptions Maven / Gradle / Ivy

The newest version!
package org.xbib.io.compress.xz;

import org.xbib.io.compress.xz.simple.ARM;

import java.io.InputStream;

/**
 * BCJ filter for little endian ARM instructions.
 */
public class ARMOptions extends BCJOptions {
    private static final int ALIGNMENT = 4;

    public ARMOptions() {
        super(ALIGNMENT);
    }

    public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
        return new SimpleOutputStream(out, new ARM(true, startOffset));
    }

    public InputStream getInputStream(InputStream in) {
        return new SimpleInputStream(in, new ARM(false, startOffset));
    }

    FilterEncoder getFilterEncoder() {
        return new BCJEncoder(this, BCJCoder.ARM_FILTER_ID);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy