Home | History | Annotate | Download | only in SevenZip

Lines Matching refs:Encoder

203 				SevenZip.Compression.LZMA.Encoder encoder = new SevenZip.Compression.LZMA.Encoder();

204 if (!encoder.SetAlgorithm(params.Algorithm))
206 if (!encoder.SetDictionarySize(params.DictionarySize))
208 if (!encoder.SetNumFastBytes(params.Fb))
210 if (!encoder.SetMatchFinder(params.MatchFinder))
212 if (!encoder.SetLcLpPb(params.Lc, params.Lp, params.Pb))
214 encoder.SetEndMarkerMode(eos);
215 encoder.WriteCoderProperties(outStream);
223 encoder.Code(inStream, outStream, -1, -1, null);