Home
last modified time | relevance | path

Searched refs:componentID (Results 1 – 4 of 4) sorted by relevance

/external/libjpeg-turbo/
Dturbojpeg.h969 DLLEXPORT unsigned long tjPlaneSizeYUV(int componentID, int width, int stride,
987 DLLEXPORT int tjPlaneWidth(int componentID, int width, int subsamp);
1004 DLLEXPORT int tjPlaneHeight(int componentID, int height, int subsamp);
Dturbojpeg.c599 DLLEXPORT int tjPlaneWidth(int componentID, int width, int subsamp) in tjPlaneWidth() argument
606 if (componentID < 0 || componentID >= nc) in tjPlaneWidth()
610 if (componentID == 0) in tjPlaneWidth()
620 DLLEXPORT int tjPlaneHeight(int componentID, int height, int subsamp) in tjPlaneHeight() argument
627 if (componentID < 0 || componentID >= nc) in tjPlaneHeight()
631 if (componentID == 0) in tjPlaneHeight()
641 DLLEXPORT unsigned long tjPlaneSizeYUV(int componentID, int width, int stride, in tjPlaneSizeYUV() argument
650 pw = tjPlaneWidth(componentID, width, subsamp); in tjPlaneSizeYUV()
651 ph = tjPlaneHeight(componentID, height, subsamp); in tjPlaneSizeYUV()
Dturbojpeg-jni.c162 (JNIEnv *env, jclass cls, jint componentID, jint width, jint stride, in Java_org_libjpegturbo_turbojpeg_TJ_planeSizeYUV__IIIII() argument
165 jint retval = (jint)tjPlaneSizeYUV(componentID, width, stride, height, in Java_org_libjpegturbo_turbojpeg_TJ_planeSizeYUV__IIIII()
176 (JNIEnv *env, jclass cls, jint componentID, jint width, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeWidth__III() argument
178 jint retval = (jint)tjPlaneWidth(componentID, width, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeWidth__III()
188 (JNIEnv *env, jclass cls, jint componentID, jint height, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeHeight__III() argument
190 jint retval = (jint)tjPlaneHeight(componentID, height, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeHeight__III()
DChangeLog.md1086 instead of -1 if `componentID` was > 0 and `subsamp` was `TJSAMP_GRAY`.