Home | History | Annotate | Download | only in libjpeg-turbo

Lines Matching defs:dstBuf

475 	unsigned char *srcBuf=NULL, *dstBuf=NULL;
493 bailif0(dstBuf=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
495 if(tjEncodeYUV2(handle, srcBuf, width, pitch, height, pf, dstBuf, subsamp,
500 if(dstBuf) (*env)->ReleasePrimitiveArrayCritical(env, dst, dstBuf, 0);
637 unsigned char *jpegBuf=NULL, *dstBuf=NULL;
654 bailif0(dstBuf=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
657 &dstBuf[y*actualPitch + x*tjPixelSize[pf]], width, pitch, height, pf,
662 if(dstBuf) (*env)->ReleasePrimitiveArrayCritical(env, dst, dstBuf, 0);
815 unsigned char *jpegBuf=NULL, *dstBuf=NULL;
833 bailif0(dstBuf=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
835 if(tjDecompressToYUV(handle, jpegBuf, (unsigned long)jpegSize, dstBuf,
840 if(dstBuf) (*env)->ReleasePrimitiveArrayCritical(env, dst, dstBuf, 0);
854 unsigned char *dstBuf=NULL;
902 bailif0(dstBuf=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
905 &dstBuf[y*actualPitch + x*tjPixelSize[pf]], width, pitch, height, pf,
910 if(dstBuf) (*env)->ReleasePrimitiveArrayCritical(env, dst, dstBuf, 0);