Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_Context.cpp367 std::unique_ptr<JBig2PageInfo> pPageInfo(new JBig2PageInfo); in ProcessingParseSegmentData() local
368 if (m_pStream->readInteger(&pPageInfo->m_dwWidth) != 0 || in ProcessingParseSegmentData()
369 m_pStream->readInteger(&pPageInfo->m_dwHeight) != 0 || in ProcessingParseSegmentData()
370 m_pStream->readInteger(&pPageInfo->m_dwResolutionX) != 0 || in ProcessingParseSegmentData()
371 m_pStream->readInteger(&pPageInfo->m_dwResolutionY) != 0 || in ProcessingParseSegmentData()
372 m_pStream->read1Byte(&pPageInfo->m_cFlags) != 0 || in ProcessingParseSegmentData()
376 pPageInfo->m_bIsStriped = !!(wTemp & 0x8000); in ProcessingParseSegmentData()
377 pPageInfo->m_wMaxStripeSize = wTemp & 0x7fff; in ProcessingParseSegmentData()
378 bool bMaxHeight = (pPageInfo->m_dwHeight == 0xffffffff); in ProcessingParseSegmentData()
379 if (bMaxHeight && pPageInfo->m_bIsStriped != true) in ProcessingParseSegmentData()
[all …]