HomeSort by relevance Sort by last modified time
    Searched refs:tjd (Results 1 - 4 of 4) sorted by null

  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJTransformer.java 133 TJDecompressor[] tjd = new TJDecompressor[transforms.length]; local
136 tjd[i] = new TJDecompressor(dstBufs[i], transformedSizes[i]);
137 return tjd;
  /external/libjpeg-turbo/java/
TJExample.java 256 TJDecompressor tjd; local
264 tjd = tjdx[0];
266 tjd = new TJDecompressor(inputBuf);
268 width = tjd.getWidth();
269 height = tjd.getHeight();
270 int inSubsamp = tjd.getSubsamp();
281 fos.write(tjd.getJPEGBuf(), 0, tjd.getJPEGSize());
290 img = tjd.decompress(width, height, BufferedImage.TYPE_INT_RGB,
293 bmpBuf = tjd.decompress(width, 0, height, TJ.PF_BGRX, flags)
    [all...]
TJUnitTest.java 696 private static void decompTest(TJDecompressor tjd, byte[] jpegBuf,
718 tjd.setSourceImage(jpegBuf, jpegSize);
719 if (tjd.getWidth() != w || tjd.getHeight() != h ||
720 tjd.getSubsamp() != subsamp)
725 temp1 = tjd.getScaledWidth(temp1, temp2);
726 temp2 = tjd.getScaledHeight(temp1, temp2);
735 YUVImage yuvImage = tjd.decompressToYUV(scaledWidth, pad, scaledHeight,
746 tjd.setSourceImage(yuvImage);
754 img = tjd.decompress(scaledWidth, scaledHeight, imgType, flags)
800 TJDecompressor tjd = null; local
    [all...]
TJBench.java 137 TJDecompressor tjd; local
148 tjd = new TJDecompressor();
174 tjd.setSourceImage(jpegBuf[tile], jpegSize[tile]);
177 tjd.decompressToYUV(yuvImage, flags);
179 tjd.setSourceImage(yuvImage);
180 tjd.decompress(dstBuf, x, y, width, pitch, height, pf, flags);
184 tjd.decompress(dstBuf, x, y, width, pitch, height, pf, flags);
200 tjd = null;
    [all...]

Completed in 148 milliseconds