Home
last modified time | relevance | path

Searched refs:pDecoder (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/core/fxcodec/jbig2/
DJBig2_SddProc.cpp133 auto pDecoder = pdfium::MakeUnique<CJBig2_TRDProc>(); in DecodeArith() local
134 pDecoder->SBHUFF = SDHUFF; in DecodeArith()
135 pDecoder->SBREFINE = 1; in DecodeArith()
136 pDecoder->SBW = SYMWIDTH; in DecodeArith()
137 pDecoder->SBH = HCHEIGHT; in DecodeArith()
138 pDecoder->SBNUMINSTANCES = REFAGGNINST; in DecodeArith()
139 pDecoder->SBSTRIPS = 1; in DecodeArith()
140 pDecoder->SBNUMSYMS = SDNUMINSYMS + NSYMSDECODED; in DecodeArith()
141 SBNUMSYMS = pDecoder->SBNUMSYMS; in DecodeArith()
147 pDecoder->SBSYMCODELEN = SBSYMCODELEN; in DecodeArith()
[all …]
/external/OpenCSD/decoder/source/c_api/
Docsd_c_api_custom_obj.cpp199 CustomDecoderWrapper *pDecoder = dynamic_cast<CustomDecoderWrapper *>(pComponent); in getDataInputI() local
200 if(pDecoder == 0) in getDataInputI()
203 *ppDataIn = pDecoder; in getDataInputI()
211 CustomDecoderWrapper *pDecoder = dynamic_cast<CustomDecoderWrapper *>(pComponent); in attachErrorLogger() local
212 if (pDecoder == 0) in attachErrorLogger()
214 pDecoder->getErrorLogAttachPt()->replace_first(pIErrorLog); in attachErrorLogger()
221 CustomDecoderWrapper *pDecoder = dynamic_cast<CustomDecoderWrapper *>(pComponent); in attachInstrDecoder() local
222 if(pDecoder == 0) in attachInstrDecoder()
224 pDecoder->attachInstrDecI(pIInstrDec); in attachInstrDecoder()
230 CustomDecoderWrapper *pDecoder = dynamic_cast<CustomDecoderWrapper *>(pComponent); in attachMemAccessor() local
[all …]
/external/oss-fuzz/projects/openh264/
Ddecoder_fuzzer.cpp31 ISVCDecoder *pDecoder; in LLVMFuzzerTestOneInput() local
47 WelsCreateDecoder (&pDecoder); in LLVMFuzzerTestOneInput()
48 pDecoder->Initialize (&sDecParam); in LLVMFuzzerTestOneInput()
49 pDecoder->SetOption (DECODER_OPTION_TRACE_LEVEL, &iLevelSetting); in LLVMFuzzerTestOneInput()
55 pDecoder->SetOption (DECODER_OPTION_END_OF_STREAM, (void*)&iEndOfStreamFlag); in LLVMFuzzerTestOneInput()
75 pDecoder->DecodeFrameNoDelay (pBuf.get() + iBufPos, iSliceSize, pData, &sDstBufInfo); in LLVMFuzzerTestOneInput()
80 pDecoder->Uninitialize (); in LLVMFuzzerTestOneInput()
81 WelsDestroyDecoder (pDecoder); in LLVMFuzzerTestOneInput()
/external/OpenCSD/decoder/tests/source/
Dmem_buff_demo.cpp79 static DecodeTree *pDecoder = 0; variable
217 err = pDecoder->createDecoder(OCSD_BUILTIN_DCD_ETMV4I, /* etm v4 decoder */ in createETMv4StreamDecoder()
238pDecoder = DecodeTree::CreateDecodeTree(OCSD_TRC_SRC_FRAME_FORMATTED, OCSD_DFRMTR_FRAME_MEM_ALIGN); in initialiseDecoder()
239 if (!pDecoder) in initialiseDecoder()
252pDecoder->setAlternateErrorLogger(&err_log); /* pass the error logger to the decoder, do not use t… in initialiseDecoder()
264 ret = pDecoder->createMemAccMapper(); // the mapper is needed to add code images to. in initialiseDecoder()
275 pDecoder->addCallbackMemAcc(program_image_address, program_image_address + program_image_size-1, in initialiseDecoder()
296 ret = pDecoder->addBufferMemAcc(block1_st, OCSD_MEM_SPACE_ANY, p_block1, block1_sz); in initialiseDecoder()
300 ret = pDecoder->addBufferMemAcc(block2_st, OCSD_MEM_SPACE_ANY, p_block2, block2_sz); in initialiseDecoder()
306 pDecoder->setGenTraceElemOutI(&output); in initialiseDecoder()
[all …]
/external/pdfium/core/fpdfapi/page/
Dcpdf_streamparser.cpp46 uint32_t DecodeAllScanlines(std::unique_ptr<ScanlineDecoder> pDecoder) { in DecodeAllScanlines() argument
47 if (!pDecoder) in DecodeAllScanlines()
50 int ncomps = pDecoder->CountComps(); in DecodeAllScanlines()
51 int bpc = pDecoder->GetBPC(); in DecodeAllScanlines()
52 int width = pDecoder->GetWidth(); in DecodeAllScanlines()
53 int height = pDecoder->GetHeight(); in DecodeAllScanlines()
63 if (!pDecoder->GetScanline(row)) in DecodeAllScanlines()
66 return pDecoder->GetSrcOffset(); in DecodeAllScanlines()
95 std::unique_ptr<ScanlineDecoder> pDecoder = in DecodeInlineStream() local
99 return DecodeAllScanlines(std::move(pDecoder)); in DecodeInlineStream()
[all …]
/external/pdfium/core/fpdfapi/parser/
Dfpdf_parser_decode.cpp370 const CPDF_Object* pDecoder = pDict->GetDirectObjectFor("Filter"); in GetDecoderArray() local
371 if (!pDecoder || (!pDecoder->IsArray() && !pDecoder->IsName())) in GetDecoderArray()
378 if (const CPDF_Array* pDecoders = pDecoder->AsArray()) { in GetDecoderArray()
390 {pDecoder->GetString(), pParams ? pParams->GetDict() : nullptr}); in GetDecoderArray()
/external/pdfium/core/fxcodec/basic/
Dbasicmodule.cpp207 auto pDecoder = pdfium::MakeUnique<RLScanlineDecoder>(); in CreateRunLengthDecoder() local
208 if (!pDecoder->Create(src_buf, width, height, nComps, bpc)) in CreateRunLengthDecoder()
211 return std::move(pDecoder); in CreateRunLengthDecoder()
/external/sonivox/arm-wt-22k/lib_src/
Deas_pcmdata.h79 struct s_decoder_interface_tag EAS_CONST * pDecoder; /* pointer to decoder interface */ member
/external/pdfium/core/fxcodec/jpeg/
Djpegmodule.cpp488 auto pDecoder = pdfium::MakeUnique<JpegDecoder>(); in CreateDecoder() local
489 if (!pDecoder->Create(src_span, width, height, nComps, ColorTransform)) in CreateDecoder()
492 return std::move(pDecoder); in CreateDecoder()
/external/pdfium/core/fxcodec/tiff/
Dtiffmodule.cpp488 auto pDecoder = pdfium::MakeUnique<CTiffContext>(); in CreateDecoder() local
489 if (!pDecoder->InitDecoder(file_ptr)) in CreateDecoder()
492 return pDecoder; in CreateDecoder()