HomeSort by relevance Sort by last modified time
    Searched defs:jpegBuf (Results 1 - 3 of 3) sorted by null

  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJDecompressor.java 103 jpegBuf = jpegImage;
105 decompressHeader(jpegBuf, jpegBufSize);
130 jpegBuf = null;
207 if (jpegBuf == null)
209 return jpegBuf;
374 if (jpegBuf == null && yuvImage == null)
387 decompress(jpegBuf, jpegBufSize, dstBuf, x, y, desiredWidth, pitch,
390 decompress(jpegBuf, jpegBufSize, dstBuf, desiredWidth, pitch,
467 if (jpegBuf == null)
481 decompressToYUV(jpegBuf, jpegBufSize, dstImage.getPlanes()
    [all...]
  /external/libvncserver/test/
tjunittest.c 224 void writeJPEG(unsigned char *jpegBuf, unsigned long jpegSize, char *filename)
227 if(!file || fwrite(jpegBuf, jpegSize, 1, file)!=1)
272 void _decompTest(tjhandle handle, unsigned char *jpegBuf,
288 _tj(tjDecompressHeader2(handle, jpegBuf, jpegSize, &_hdrw, &_hdrh,
299 _tj(tjDecompress2(handle, jpegBuf, jpegSize, dstBuf, scaledWidth, 0,
313 void decompTest(tjhandle handle, unsigned char *jpegBuf,
324 _decompTest(handle, jpegBuf, jpegSize, w, h, pf, basename, subsamp,
328 _decompTest(handle, jpegBuf, jpegSize, w, h, pf, basename, subsamp, flags,
380 unsigned char *srcBuf=NULL, *jpegBuf=NULL;
397 if((jpegBuf=(unsigned char *)malloc(tjBufSize(w, h, subsamp))
    [all...]
  /external/libjpeg-turbo/
turbojpeg-jni.c 195 unsigned char *srcBuf=NULL, *jpegBuf=NULL;
214 bailif0(jpegBuf=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
219 pitch, height, pf, &jpegBuf, &jpegSize, jpegSubsamp, jpegQual,
224 if(jpegBuf) (*env)->ReleasePrimitiveArrayCritical(env, dst, jpegBuf, 0);
295 unsigned char *jpegBuf=NULL;
340 bailif0(jpegBuf=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
345 subsamp, &jpegBuf, &jpegSize, jpegQual, flags|TJFLAG_NOREALLOC)==-1)
349 if(jpegBuf) (*env)->ReleasePrimitiveArrayCritical(env, dst, jpegBuf, 0)
    [all...]

Completed in 56 milliseconds