Home
last modified time | relevance | path

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

/dports/graphics/freeimage/FreeImage/Source/LibJXR/image/decode/
H A DJXRTranscode.c596 …if(pSCDec->pIndexTable[i] == 0 && i + 1 != pSCDec->cNumBitIO * (pSCDec->WMISCP.cNumOfSliceMinus1H … in WMPhotoTranscode()
597 pSCDec->pIndexTable[i] = pSCDec->pIndexTable[i + 1]; in WMPhotoTranscode()
598 …if(pSCDec->pIndexTable[i] != 0 && pSCDec->pIndexTable[i] < pSCDec->pIndexTable[i - 1]) // out of o… in WMPhotoTranscode()
696 …pSCEnc->pIndexTable = (size_t *)malloc(sizeof(size_t) * (pSCEnc->WMISCP.cNumOfSliceMinus1H + 1) * … in WMPhotoTranscode()
698 if(pSCEnc->pIndexTable == NULL || cfEnc > cfDec) in WMPhotoTranscode()
708 …pSCEnc->pIndexTable[l] = pSCDec->pIndexTable[(j * (pSCDec->WMISCP.cNumOfSliceMinus1V + 1) + i) * c… in WMPhotoTranscode()
727 …pSCDec->WMISCP.pWStream->SetPos(pSCDec->WMISCP.pWStream, pSCDec->pIndexTable[(j * (pSCDec->WMISCP.… in WMPhotoTranscode()
728 … copyTo(pSCDec->WMISCP.pWStream, pSCEnc->WMISCP.pWStream, pSCEnc->pIndexTable[l++]); in WMPhotoTranscode()
733 free(pSCEnc->pIndexTable); in WMPhotoTranscode()
H A Dstrdec.c234 …pSC->WMISCP.pWStream->SetPos(pSC->WMISCP.pWStream, pSC->pIndexTable[pSC->cNumBitIO * pSC->cTileRow… in readPackets()
2469 size_t *pTable = pSC->pIndexTable; in readIndexTable()
2527 size_t * p = &pSC->pIndexTable[j * (pSC->WMISCP.cNumOfSliceMinus1V + 1) + i]; in StrIODecInit()
2540 … size_t * p = &pSC->pIndexTable[(j * (pSC->WMISCP.cNumOfSliceMinus1V + 1) + i) * 4]; in StrIODecInit()
2562 free(pSC->pIndexTable); in StrIODecTerm()
/dports/graphics/freeimage/FreeImage/Source/LibJXR/image/encode/
H A Dstrenc.c267 …pSC->pIndexTable[pSC->cNumBitIO * pSC->cTileRow + k] = l + getSizeWrite(pSC->m_ppBitIO[k]); // off… in encodeMB()
557 size_t *pTable = pSC->pIndexTable, iSize[4] = { 0 }; in writeIndexTable()
568 … pTable[pSC->cNumBitIO * i + k] -= pSC->pIndexTable[pSC->cNumBitIO * (i - 1) + k]; // packet length in writeIndexTable()
648 …printf("bitstream size for tile (%d, %d): %d.\n", j, i, (int) pSC->pIndexTable[j * (pSC->WMISCP.cN… in StrIOEncTerm()
655 … size_t * p = &pSC->pIndexTable[(j * (pSC->WMISCP.cNumOfSliceMinus1V + 1) + i) * 4]; in StrIOEncTerm()
670 size_t * pTable = pSC->pIndexTable; in StrIOEncTerm()
739 free(pSC->pIndexTable); in StrIOEncTerm()
1079 pSC->pIndexTable = pSC->m_pNextSC->pIndexTable; in StrEncInit()
/dports/graphics/freeimage/FreeImage/Source/LibJXR/image/sys/
H A Dstrcodec.c754 … pSC->pIndexTable = malloc(cNumBitIO * (pSC->WMISCP.cNumOfSliceMinus1H + 1) * sizeof(size_t)); in allocateBitIOInfo()
755 if(NULL == pSC->pIndexTable) return ICERR_ERROR; in allocateBitIOInfo()
H A Dstrcodec.h354 size_t *pIndexTable; member