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.java462 public static native int planeSizeYUV(int componentID, int width, int stride, in planeSizeYUV() argument
480 public static native int planeWidth(int componentID, int width, int subsamp) in planeWidth() argument
497 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.h882 DLLEXPORT unsigned long DLLCALL tjPlaneSizeYUV(int componentID, int width,
900 DLLEXPORT int tjPlaneWidth(int componentID, int width, int subsamp);
917 DLLEXPORT int tjPlaneHeight(int componentID, int height, int subsamp);
Dturbojpeg.c666 DLLEXPORT int tjPlaneWidth(int componentID, int width, int subsamp) in tjPlaneWidth() argument
673 if(componentID<0 || componentID>=nc) in tjPlaneWidth()
677 if(componentID==0) in tjPlaneWidth()
687 DLLEXPORT int tjPlaneHeight(int componentID, int height, int subsamp) in tjPlaneHeight() argument
694 if(componentID<0 || componentID>=nc) in tjPlaneHeight()
698 if(componentID==0) in tjPlaneHeight()
708 DLLEXPORT unsigned long DLLCALL tjPlaneSizeYUV(int componentID, int width, in tjPlaneSizeYUV() argument
717 pw=tjPlaneWidth(componentID, width, subsamp); in tjPlaneSizeYUV()
718 ph=tjPlaneHeight(componentID, height, subsamp); in tjPlaneSizeYUV()
Dturbojpeg-jni.c131 (JNIEnv *env, jclass cls, jint componentID, jint width, jint stride, in Java_org_libjpegturbo_turbojpeg_TJ_planeSizeYUV__IIIII() argument
134 jint retval=(jint)tjPlaneSizeYUV(componentID, width, stride, height, in Java_org_libjpegturbo_turbojpeg_TJ_planeSizeYUV__IIIII()
144 (JNIEnv *env, jclass cls, jint componentID, jint width, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeWidth__III() argument
146 jint retval=(jint)tjPlaneWidth(componentID, width, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeWidth__III()
155 (JNIEnv *env, jclass cls, jint componentID, jint height, jint subsamp) in Java_org_libjpegturbo_turbojpeg_TJ_planeHeight__III() argument
157 jint retval=(jint)tjPlaneHeight(componentID, height, subsamp); in Java_org_libjpegturbo_turbojpeg_TJ_planeHeight__III()
DChangeLog.txt138 instead of -1 if componentID was > 0 and subsamp was TJSAMP_GRAY.