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

  /external/chromium_org/third_party/libjpeg_turbo/
turbojpeg.h 551 * @param jpegSubsamp the level of chrominance subsampling to be used when
563 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags);
579 * @param jpegSubsamp the level of chrominance subsampling to be used when
587 int jpegSubsamp);
673 * @param jpegSubsamp pointer to an integer variable that will receive the
681 int *jpegSubsamp);
    [all...]
turbojpeg.c 516 int jpegSubsamp)
519 if(width<1 || height<1 || jpegSubsamp<0 || jpegSubsamp>=NUMSUBOPT)
525 mcuw=tjMCUWidth[jpegSubsamp];
526 mcuh=tjMCUHeight[jpegSubsamp];
527 chromasf=jpegSubsamp==TJSAMP_GRAY? 0: 4*64/(mcuw*mcuh);
576 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags)
589 || jpegSubsamp<0 || jpegSubsamp>=NUMSUBOPT || jpegQual<0 || jpegQual>100)
620 alloc=0; *jpegSize=tjBufSize(width, height, jpegSubsamp);
    [all...]
turbojpeg-jni.c 61 (JNIEnv *env, jclass cls, jint width, jint height, jint jpegSubsamp)
63 jint retval=(jint)tjBufSize(width, height, jpegSubsamp);
100 jint pitch, jint height, jint pf, jbyteArray dst, jint jpegSubsamp,
120 jpegSize=tjBufSize(width, height, jpegSubsamp);
128 pitch, height, pf, &jpegBuf, &jpegSize, jpegSubsamp, jpegQual,
145 jint height, jint pf, jbyteArray dst, jint jpegSubsamp, jint jpegQual,
149 env, obj, src, 0, 0, width, pitch, height, pf, dst, jpegSubsamp, jpegQual,
155 jint stride, jint height, jint pf, jbyteArray dst, jint jpegSubsamp,
177 jpegSize=tjBufSize(width, height, jpegSubsamp);
185 stride*sizeof(jint), height, pf, &jpegBuf, &jpegSize, jpegSubsamp,
    [all...]

Completed in 66 milliseconds