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

  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJDecompressor.java 176 if (jpegSubsamp < 0)
178 if (jpegSubsamp >= TJ.NUMSAMP)
180 return jpegSubsamp;
478 if (jpegSubsamp != dstImage.getSubsamp())
492 jpegSubsamp);
539 if (jpegWidth < 1 || jpegHeight < 1 || jpegSubsamp < 0)
541 if (jpegSubsamp >= TJ.NUMSAMP)
549 jpegSubsamp);
592 if (jpegWidth < 1 || jpegHeight < 1 || jpegSubsamp < 0)
594 if (jpegSubsamp >= TJ.NUMSAMP
    [all...]
  /external/libvncserver/common/
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-jni.c 105 (JNIEnv *env, jclass cls, jint width, jint height, jint jpegSubsamp)
107 jint retval=(jint)tjBufSize(width, height, jpegSubsamp);
190 jint jpegSubsamp, jint jpegQual, jint flags)
209 jpegSize=tjBufSize(width, height, jpegSubsamp);
219 pitch, height, pf, &jpegBuf, &jpegSize, jpegSubsamp, jpegQual,
232 jint pitch, jint height, jint pf, jbyteArray dst, jint jpegSubsamp,
236 pf, dst, jpegSubsamp, jpegQual, flags);
242 jint height, jint pf, jbyteArray dst, jint jpegSubsamp, jint jpegQual,
246 pf, dst, jpegSubsamp, jpegQual, flags);
252 jint stride, jint height, jint pf, jbyteArray dst, jint jpegSubsamp,
    [all...]
turbojpeg.c 623 int jpegSubsamp)
626 if(width<1 || height<1 || jpegSubsamp<0 || jpegSubsamp>=NUMSUBOPT)
632 mcuw=tjMCUWidth[jpegSubsamp];
633 mcuh=tjMCUHeight[jpegSubsamp];
634 chromasf=jpegSubsamp==TJSAMP_GRAY? 0: 4*64/(mcuw*mcuh);
759 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags)
772 || jpegSubsamp<0 || jpegSubsamp>=NUMSUBOPT || jpegQual<0 || jpegQual>100)
803 alloc=0; *jpegSize=tjBufSize(width, height, jpegSubsamp);
    [all...]

Completed in 69 milliseconds