Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_Context.cpp322 auto pPageInfo = pdfium::MakeUnique<JBig2PageInfo>(); in ProcessingParseSegmentData() local
323 if (m_pStream->readInteger(&pPageInfo->m_dwWidth) != 0 || in ProcessingParseSegmentData()
324 m_pStream->readInteger(&pPageInfo->m_dwHeight) != 0 || in ProcessingParseSegmentData()
325 m_pStream->readInteger(&pPageInfo->m_dwResolutionX) != 0 || in ProcessingParseSegmentData()
326 m_pStream->readInteger(&pPageInfo->m_dwResolutionY) != 0 || in ProcessingParseSegmentData()
327 m_pStream->read1Byte(&pPageInfo->m_cFlags) != 0 || in ProcessingParseSegmentData()
331 pPageInfo->m_bIsStriped = !!(wTemp & 0x8000); in ProcessingParseSegmentData()
332 pPageInfo->m_wMaxStripeSize = wTemp & 0x7fff; in ProcessingParseSegmentData()
333 bool bMaxHeight = (pPageInfo->m_dwHeight == 0xffffffff); in ProcessingParseSegmentData()
334 if (bMaxHeight && !pPageInfo->m_bIsStriped) in ProcessingParseSegmentData()
[all …]