Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_Context.cpp380 std::unique_ptr<JBig2PageInfo> pPageInfo(new JBig2PageInfo); in ProcessingParseSegmentData() local
381 if (m_pStream->readInteger(&pPageInfo->m_dwWidth) != 0 || in ProcessingParseSegmentData()
382 m_pStream->readInteger(&pPageInfo->m_dwHeight) != 0 || in ProcessingParseSegmentData()
383 m_pStream->readInteger(&pPageInfo->m_dwResolutionX) != 0 || in ProcessingParseSegmentData()
384 m_pStream->readInteger(&pPageInfo->m_dwResolutionY) != 0 || in ProcessingParseSegmentData()
385 m_pStream->read1Byte(&pPageInfo->m_cFlags) != 0 || in ProcessingParseSegmentData()
389 pPageInfo->m_bIsStriped = !!(wTemp & 0x8000); in ProcessingParseSegmentData()
390 pPageInfo->m_wMaxStripeSize = wTemp & 0x7fff; in ProcessingParseSegmentData()
391 bool bMaxHeight = (pPageInfo->m_dwHeight == 0xffffffff); in ProcessingParseSegmentData()
392 if (bMaxHeight && pPageInfo->m_bIsStriped != TRUE) in ProcessingParseSegmentData()
[all …]