Home | History | Annotate | Download | only in turbojpeg

Lines Matching defs:srcWidth

148     srcWidth = width;
200 srcWidth = (width == 0) ? srcImage.getWidth(): width;
345 compressedSize = compress(srcBuf, srcX, srcY, srcWidth, srcPitch,
349 compressedSize = compress(srcBuf, srcWidth, srcPitch, srcHeight,
354 compressedSize = compress(srcBufInt, srcX, srcY, srcWidth, srcStride,
358 compressedSize = compress(srcBufInt, srcWidth, srcStride, srcHeight,
376 if (srcWidth < 1 || srcHeight < 1)
378 byte[] buf = new byte[TJ.bufSize(srcWidth, srcHeight, subsamp)];
429 if (srcWidth != dstImage.getWidth() || srcHeight != dstImage.getHeight())
433 encodeYUV(srcBufInt, srcX, srcY, srcWidth, srcStride, srcHeight,
437 encodeYUV(srcBuf, srcX, srcY, srcWidth, srcPitch, srcHeight,
451 if (srcWidth < 1 || srcHeight < 1)
455 YUVImage yuvImage = new YUVImage(dstBuf, srcWidth, 4, srcHeight, subsamp);
477 if (srcWidth < 1 || srcHeight < 1)
483 YUVImage yuvImage = new YUVImage(srcWidth, pad, srcHeight, subsamp);
510 if (srcWidth < 1 || srcHeight < 1)
514 YUVImage yuvImage = new YUVImage(srcWidth, strides, srcHeight, subsamp);
524 if (srcWidth < 1 || srcHeight < 1)
528 YUVImage yuvImage = new YUVImage(srcWidth, 4, srcHeight, subsamp);
635 private int srcWidth = 0;