Home | History | Annotate | Download | only in C

Lines Matching refs:coder

66 static SRes SzDecodePpmd(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream,

80 if (coder->Props.size != 5)
84 unsigned order = coder->Props.data[0];
85 UInt32 memSize = GetUi32(coder->Props.data + 1);
127 static SRes SzDecodeLzma(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream,
134 RINOK(LzmaDec_AllocateProbs(&state, coder->Props.data, (unsigned)coder->Props.size, allocMain));
175 static SRes SzDecodeLzma2(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream,
182 if (coder->Props.size != 1)
184 RINOK(Lzma2Dec_AllocateProbs(&state, coder->Props.data[0], allocMain));
349 CSzCoderInfo *coder = &folder->Coders[ci];
351 if (IS_MAIN_METHOD((UInt32)coder->MethodID))
389 if (coder->MethodID == k_Copy)
395 else if (coder->MethodID == k_LZMA)
397 RINOK(SzDecodeLzma(coder, inSize, inStream, outBufCur, outSizeCur, allocMain));
399 else if (coder->MethodID == k_LZMA2)
401 RINOK(SzDecodeLzma2(coder, inSize, inStream, outBufCur, outSizeCur, allocMain));
406 RINOK(SzDecodePpmd(coder, inSize, inStream, outBufCur, outSizeCur, allocMain));
412 else if (coder->MethodID == k_BCJ2)
441 switch(coder->MethodID)