Searched refs:jpegColorspace (Results 1 - 4 of 4) sorted by relevance

/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
H A DTJDecompressor.java194 if (jpegColorspace < 0)
196 if (jpegColorspace >= TJ.NUMCS)
198 return jpegColorspace;
907 protected int jpegColorspace = -1; field in class:TJDecompressor
/external/libjpeg-turbo/
H A Dturbojpeg.c1296 int *height, int *jpegSubsamp, int *jpegColorspace)
1305 || jpegSubsamp==NULL || jpegColorspace==NULL)
1322 case JCS_GRAYSCALE: *jpegColorspace=TJCS_GRAY; break;
1323 case JCS_RGB: *jpegColorspace=TJCS_RGB; break;
1324 case JCS_YCbCr: *jpegColorspace=TJCS_YCbCr; break;
1325 case JCS_CMYK: *jpegColorspace=TJCS_CMYK; break;
1326 case JCS_YCCK: *jpegColorspace=TJCS_YCCK; break;
1327 default: *jpegColorspace=-1; break;
1334 if(*jpegColorspace<0)
1348 int jpegColorspace; local
1294 tjDecompressHeader3(tjhandle handle, const unsigned char *jpegBuf, unsigned long jpegSize, int *width, int *height, int *jpegSubsamp, int *jpegColorspace) argument
[all...]
H A Dturbojpeg.h1060 * @param jpegColorspace pointer to an integer variable that will receive one
1068 int *height, int *jpegSubsamp, int *jpegColorspace);
H A Dturbojpeg-jni.c599 int width=0, height=0, jpegSubsamp=-1, jpegColorspace=-1; local
609 &width, &height, &jpegSubsamp, &jpegColorspace)==-1)
616 if((_fid=(*env)->GetFieldID(env, _cls, "jpegColorspace", "I"))==0)
619 (*env)->SetIntField(env, obj, _fid, jpegColorspace);

Completed in 170 milliseconds