Lines Matching refs:rgbBuf
544 unsigned char *rgbBuf=NULL; in tjCompress2() local
568 rgbBuf=(unsigned char *)malloc(width*height*RGB_PIXELSIZE); in tjCompress2()
569 if(!rgbBuf) _throw("tjCompress2(): Memory allocation failure"); in tjCompress2()
570 srcBuf=toRGB(srcBuf, width, pitch, height, pixelFormat, rgbBuf); in tjCompress2()
608 if(rgbBuf) free(rgbBuf); in tjCompress2()
753 unsigned char *rgbBuf=NULL; in tjDecompress2() local
812 rgbBuf=(unsigned char *)malloc(width*height*3); in tjDecompress2()
813 if(!rgbBuf) _throw("tjDecompress2(): Memory allocation failure"); in tjDecompress2()
815 _dstBuf=dstBuf; dstBuf=rgbBuf; in tjDecompress2()
836 fromRGB(rgbBuf, _dstBuf, width, _pitch, height, pixelFormat); in tjDecompress2()
842 if(rgbBuf) free(rgbBuf); in tjDecompress2()