Home | History | Annotate | Download | only in codec

Lines Matching refs:spp

60                         uint16_t spp);

65 uint16_t spp);
70 uint16_t spp);
330 void _TiffBGRA2RGBA(uint8_t* pBuf, int32_t pixel, int32_t spp) {
335 pBuf += spp;
394 uint16_t spp) {
395 if (pDIBitmap->GetBPP() != 1 || spp != 1 || bps != 1 ||
421 uint16_t spp) {
422 if (pDIBitmap->GetBPP() != 8 || spp != 1 || (bps != 4 && bps != 8) ||
456 uint16_t spp) {
502 uint16_t spp, bps;
503 TIFFGetField(tif_ctx, TIFFTAG_SAMPLESPERPIXEL, &spp);
505 FX_DWORD bpp = bps * spp;
507 return Decode1bppRGB(pDIBitmap, height, width, bps, spp);
509 return Decode8bppRGB(pDIBitmap, height, width, bps, spp);
511 return Decode24bppRGB(pDIBitmap, height, width, bps, spp);