Searched refs:rgbBuf (Results 1 – 1 of 1) sorted by relevance
/external/libvncserver/common/ |
D | turbojpeg.c | 540 unsigned char *rgbBuf=NULL; in tjCompress2() local 564 rgbBuf=(unsigned char *)malloc(width*height*RGB_PIXELSIZE); in tjCompress2() 565 if(!rgbBuf) _throw("tjCompress2(): Memory allocation failure"); in tjCompress2() 566 srcBuf=toRGB(srcBuf, width, pitch, height, pixelFormat, rgbBuf); in tjCompress2() 604 if(rgbBuf) free(rgbBuf); in tjCompress2() 749 unsigned char *rgbBuf=NULL; in tjDecompress2() local 808 rgbBuf=(unsigned char *)malloc(width*height*3); in tjDecompress2() 809 if(!rgbBuf) _throw("tjDecompress2(): Memory allocation failure"); in tjDecompress2() 811 _dstBuf=dstBuf; dstBuf=rgbBuf; in tjDecompress2() 832 fromRGB(rgbBuf, _dstBuf, width, _pitch, height, pixelFormat); in tjDecompress2() [all …]
|