Searched refs:jpegHeight (Results 1 – 3 of 3) sorted by relevance
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/ |
D | TJDecompressor.java | 162 if (jpegHeight < 1) in getHeight() 164 return jpegHeight; in getHeight() 247 if (jpegWidth < 1 || jpegHeight < 1) in getScaledWidth() 255 desiredHeight = jpegHeight; in getScaledWidth() 256 int scaledWidth = jpegWidth, scaledHeight = jpegHeight; in getScaledWidth() 259 scaledHeight = sf[i].getScaled(jpegHeight); in getScaledWidth() 288 if (jpegWidth < 1 || jpegHeight < 1) in getScaledHeight() 296 desiredHeight = jpegHeight; in getScaledHeight() 297 int scaledWidth = jpegWidth, scaledHeight = jpegHeight; in getScaledHeight() 300 scaledHeight = sf[i].getScaled(jpegHeight); in getScaledHeight() [all …]
|
D | TJTransformer.java | 123 if (jpegWidth < 1 || jpegHeight < 1) in transform() 126 int w = jpegWidth, h = jpegHeight; in transform()
|
/external/libjpeg-turbo/ |
D | turbojpeg-jni.c | 756 int jpegSubsamp = -1, jpegWidth = 0, jpegHeight = 0; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3_3B_3II_3III() local 769 jpegHeight = (int)(*env)->GetIntField(env, obj, _fid); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3_3B_3II_3III() 776 if (height == 0) height = jpegHeight; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3_3B_3II_3III() 782 scaledHeight = TJSCALED(jpegHeight, sf[i]); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3_3B_3II_3III() 839 int jpegSubsamp = -1, jpegWidth = 0, jpegHeight = 0; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3BI() local 850 jpegHeight = (int)(*env)->GetIntField(env, obj, _fid); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3BI() 852 (jsize)tjBufSizeYUV(jpegWidth, jpegHeight, jpegSubsamp)) in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressToYUV___3BI_3BI() 1068 int i, jpegWidth = 0, jpegHeight = 0, jpegSubsamp; in Java_org_libjpegturbo_turbojpeg_TJTransformer_transform() local 1080 jpegHeight = (int)(*env)->GetIntField(env, obj, _fid); in Java_org_libjpegturbo_turbojpeg_TJTransformer_transform() 1137 int w = jpegWidth, h = jpegHeight; in Java_org_libjpegturbo_turbojpeg_TJTransformer_transform()
|