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

  /device/samsung/crespo/libs3cjpeg/
JpegEncoder.cpp 638 char *srcBuf, *dstBuf;
646 dstBuf = mArgs.in_buf;
648 dstBuf = mArgs.in_thumb_buf;
650 memcpy(srcBuf, dstBuf, size);
651 bool ret = pad(srcBuf, width, height, dstBuf, expectedWidth, expectedHeight);
659 char *dstBuf, uint32_t dstWidth, uint32_t dstHight)
664 if (srcBuf == NULL || dstBuf == NULL) {
665 LOGE("srcBuf or dstBuf is NULL");
677 memset(dstBuf, 0, dstWidth*dstHight * 2);
680 memcpy(dstBuf + i * dstWidth * 2, srcBuf + i * srcWidth * 2, srcWidth * 2)
    [all...]
JpegEncoder.h 205 char *dstBuf, uint32_t dstWidth, uint32_t dstHight);
207 char *dstBuf, uint32_t dstWidth, uint32_t dstHight);
  /device/samsung/crespo/libcamera/
SecCameraHWInterface.h 150 bool YUY2toNV21(void *srcBuf, void *dstBuf, uint32_t srcWidth, uint32_t srcHeight);
152 uint32_t srcHight, char *dstBuf,
SecCameraHWInterface.cpp 967 char *dstBuf, uint32_t dstWidth, uint32_t dstHeight)
988 dstBuf[dst_pos++] = srcBuf[src_pos ];
989 dstBuf[dst_pos++] = srcBuf[src_pos + 1];
990 dstBuf[dst_pos++] = srcBuf[src_pos + 2];
991 dstBuf[dst_pos++] = srcBuf[src_pos + 3];
998 bool CameraHardwareSec::YUY2toNV21(void *srcBuf, void *dstBuf, uint32_t srcWidth, uint32_t srcHeight)
1002 unsigned char *dstBufPointer = (unsigned char *)dstBuf;
    [all...]

Completed in 16 milliseconds