Home
last modified time | relevance | path

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

/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DTJ.java454 public static native int planeSizeYUV(int componentID, int width, int stride, in planeSizeYUV() argument
471 public static native int planeWidth(int componentID, int width, int subsamp); in planeWidth() argument
487 public static native int planeHeight(int componentID, int height, in planeHeight() argument
DTJCustomFilter.java73 Rectangle planeRegion, int componentID, int transformID, in customFilter() argument
/external/libjpeg-turbo/
Dturbojpeg.h883 DLLEXPORT unsigned long DLLCALL tjPlaneSizeYUV(int componentID, int width,
901 DLLEXPORT int tjPlaneWidth(int componentID, int width, int subsamp);
918 DLLEXPORT int tjPlaneHeight(int componentID, int height, int subsamp);
Dturbojpeg.c699 DLLEXPORT int tjPlaneWidth(int componentID, int width, int subsamp) in tjPlaneWidth() argument
706 if(componentID<0 || componentID>=nc) in tjPlaneWidth()
710 if(componentID==0) in tjPlaneWidth()
720 DLLEXPORT int tjPlaneHeight(int componentID, int height, int subsamp) in tjPlaneHeight() argument
727 if(componentID<0 || componentID>=nc) in tjPlaneHeight()
731 if(componentID==0) in tjPlaneHeight()
741 DLLEXPORT unsigned long DLLCALL tjPlaneSizeYUV(int componentID, int width, in tjPlaneSizeYUV() argument
750 pw=tjPlaneWidth(componentID, width, subsamp); in tjPlaneSizeYUV()
751 ph=tjPlaneHeight(componentID, height, subsamp); in tjPlaneSizeYUV()
Dturbojpeg-jni.c135 (JNIEnv *env, jclass cls, jint componentID, jint width, jint stride, in Java_org_libjpegturbo_turbojpeg_TJ_planeSizeYUV__IIIII() argument
138 jint retval=(jint)tjPlaneSizeYUV(componentID, width, stride, height, in Java_org_libjpegturbo_turbojpeg_TJ_planeSizeYUV__IIIII()
148 (JNIEnv *env, jclass cls, jint componentID, jint width, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeWidth__III() argument
150 jint retval=(jint)tjPlaneWidth(componentID, width, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeWidth__III()
159 (JNIEnv *env, jclass cls, jint componentID, jint height, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeHeight__III() argument
161 jint retval=(jint)tjPlaneHeight(componentID, height, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeHeight__III()
DChangeLog.md369 instead of -1 if `componentID` was > 0 and `subsamp` was `TJSAMP_GRAY`.