gendx/lzma-rs

How to set dictSize on lzma2_decompress

Aperta

#12 aperta il 24 ott 2019

 (7 commenti) (0 reazioni) (0 assegnatari)Rust (37 fork)auto 404
enhancementhelp wanted

Metriche repository

Star
 (151 stelle)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

In https://mvnrepository.com/artifact/com.github.veithen.cosmos.bootstrap/org.tukaani.xz I see

package org.tukaani.xz;

public class LZMA2InputStream extends InputStream {
   
   ...
    public LZMA2InputStream(InputStream in, int dictSize) {
        this(in, dictSize, (byte[])null);
    }

dictSize is a param to construct LZMA2InputStream

Guida contributor