/external/libvncserver/common/ |
turbojpeg.h | 342 * @param jpegSubsamp the level of chrominance subsampling to be used when 354 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags); 370 * @param jpegSubsamp the level of chrominance subsampling to be used when 378 int jpegSubsamp); 400 * @param jpegSubsamp pointer to an integer variable that will receive the 408 int *jpegSubsamp); 511 unsigned long *compressedSize, int jpegSubsamp, int jpegQual, int flags);
|
turbojpeg.c | 499 int jpegSubsamp) 502 if(width<1 || height<1 || jpegSubsamp<0 || jpegSubsamp>=NUMSUBOPT) 510 mcuw=tjMCUWidth[jpegSubsamp]; 511 mcuh=tjMCUHeight[jpegSubsamp]; 512 chromasf=jpegSubsamp==TJSAMP_GRAY? 0: 4*64/(mcuw*mcuh); 540 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags) 553 || jpegSubsamp<0 || jpegSubsamp>=NUMSUBOPT || jpegQual<0 || jpegQual>100) 582 if(setCompDefaults(cinfo, pixelFormat, jpegSubsamp, jpegQual)==-1 [all...] |
/external/libjpeg-turbo/ |
turbojpeg.h | 663 * @param jpegSubsamp the level of chrominance subsampling to be used when 677 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags); [all...] |
turbojpeg.c | 597 int jpegSubsamp) 600 if(width<1 || height<1 || jpegSubsamp<0 || jpegSubsamp>=NUMSUBOPT) 606 mcuw=tjMCUWidth[jpegSubsamp]; 607 mcuh=tjMCUHeight[jpegSubsamp]; 608 chromasf=jpegSubsamp==TJSAMP_GRAY? 0: 4*64/(mcuw*mcuh); 733 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags) 746 || jpegSubsamp<0 || jpegSubsamp>=NUMSUBOPT || jpegQual<0 || jpegQual>100) 777 alloc=0; *jpegSize=tjBufSize(width, height, jpegSubsamp); [all...] |
turbojpeg-jni.c | 101 (JNIEnv *env, jclass cls, jint width, jint height, jint jpegSubsamp) 103 jint retval=(jint)tjBufSize(width, height, jpegSubsamp); 186 jint jpegSubsamp, jint jpegQual, jint flags) 205 jpegSize=tjBufSize(width, height, jpegSubsamp); 215 pitch, height, pf, &jpegBuf, &jpegSize, jpegSubsamp, jpegQual, 228 jint pitch, jint height, jint pf, jbyteArray dst, jint jpegSubsamp, 232 pf, dst, jpegSubsamp, jpegQual, flags); 238 jint height, jint pf, jbyteArray dst, jint jpegSubsamp, jint jpegQual, 242 pf, dst, jpegSubsamp, jpegQual, flags); 248 jint stride, jint height, jint pf, jbyteArray dst, jint jpegSubsamp, [all...] |
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/ |
TJDecompressor.java | 173 if (jpegSubsamp < 0) 175 if (jpegSubsamp >= TJ.NUMSAMP) 177 return jpegSubsamp; 476 if (jpegSubsamp != dstImage.getSubsamp()) 490 jpegSubsamp); 537 if (jpegWidth < 1 || jpegHeight < 1 || jpegSubsamp < 0) 539 if (jpegSubsamp >= TJ.NUMSAMP) 547 jpegSubsamp); 590 if (jpegWidth < 1 || jpegHeight < 1 || jpegSubsamp < 0) 592 if (jpegSubsamp >= TJ.NUMSAMP [all...] |
TJ.java | 404 * @param jpegSubsamp the level of chrominance subsampling to be used when 410 public static native int bufSize(int width, int height, int jpegSubsamp)
|
TJTransformer.java | 130 dstBufs[i] = new byte[TJ.bufSize(w, h, jpegSubsamp)];
|
TJCompressor.java | 590 int height, int pixelFormat, byte[] dstBuf, int jpegSubsamp, int jpegQual, 594 int pitch, int height, int pixelFormat, byte[] dstBuf, int jpegSubsamp, 598 int height, int pixelFormat, byte[] dstBuf, int jpegSubsamp, int jpegQual, 602 int stride, int height, int pixelFormat, byte[] dstBuf, int jpegSubsamp,
|