Home | History | Annotate | Download | only in libcamera

Lines Matching refs:srcBuf

3396 bool ExynosCameraHWInterface::m_fileDump(char *filename, void *srcBuf, uint32_t size)
3417 memcpy(buffer, srcBuf, size);
3509 bool ExynosCameraHWInterface::m_scaleDownYuv422(char *srcBuf, uint32_t srcWidth, uint32_t srcHeight,
3531 dstBuf[dst_pos++] = srcBuf[src_pos ];
3532 dstBuf[dst_pos++] = srcBuf[src_pos + 1];
3533 dstBuf[dst_pos++] = srcBuf[src_pos + 2];
3534 dstBuf[dst_pos++] = srcBuf[src_pos + 3];
3541 bool ExynosCameraHWInterface::m_YUY2toNV21(void *srcBuf, void *dstBuf, uint32_t srcWidth, uint32_t srcHeight)
3544 unsigned char *srcBufPointer = (unsigned char *)srcBuf;