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 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...]
  /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 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...]
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...]

Completed in 281 milliseconds