Searched refs:rgbBuf (Results 1 – 2 of 2) sorted by relevance
/external/libvncserver/common/ |
D | turbojpeg.c | 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() [all …]
|
/external/libjpeg-turbo/ |
D | turbojpeg.c | 772 unsigned char *rgbBuf=NULL; in tjCompress2() local 796 rgbBuf=(unsigned char *)malloc(width*height*RGB_PIXELSIZE); in tjCompress2() 797 if(!rgbBuf) _throw("tjCompress2(): Memory allocation failure"); in tjCompress2() 798 srcBuf=toRGB(srcBuf, width, pitch, height, pixelFormat, rgbBuf); in tjCompress2() 837 if(rgbBuf) free(rgbBuf); in tjCompress2() 879 unsigned char *rgbBuf=NULL; in tjEncodeYUVPlanes() local 915 rgbBuf=(unsigned char *)malloc(width*height*RGB_PIXELSIZE); in tjEncodeYUVPlanes() 916 if(!rgbBuf) _throw("tjEncodeYUVPlanes(): Memory allocation failure"); in tjEncodeYUVPlanes() 917 srcBuf=toRGB(srcBuf, width, pitch, height, pixelFormat, rgbBuf); in tjEncodeYUVPlanes() 1014 if(rgbBuf) free(rgbBuf); in tjEncodeYUVPlanes() [all …]
|