*handle = pFaceHandle;
- dcm_info("face created. handle=0x%08x", *handle);
+ dcm_info("face created. handle=%p", *handle);
return ret;
}
EXPORT_API int dcm_face_destroy(__in dcm_face_h handle)
{
int ret = MS_MEDIA_ERR_NONE;
- dcm_info("face destroy. handle=0x%08x", handle);
+ dcm_info("face destroy. handle=%p", handle);
dcm_retvm_if(handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid handle");
*handle = _handle;
- dcm_info("dcm_face_engine was created. handle=0x%08x", *handle);
+ dcm_info("dcm_face_engine was created. handle=%p", *handle);
return MS_MEDIA_ERR_NONE;
}
dcm_retvm_if(_handle == NULL, MS_MEDIA_ERR_INVALID_PARAMETER, "invalid handle");
- dcm_info("dcm_face_engine destroy. handle=0x%08x", handle);
+ dcm_info("dcm_face_engine destroy. handle=%p", handle);
if (_handle->cfg != NULL) {
err = mv_destroy_engine_config(_handle->cfg);
__convert_to_mv_colorspace_e(handle->image_info->colorspace, &colorspace);
- dcm_debug("face_detect image: %p, size: %d, width: %d, height: %d, color: %d", handle->image_info->data, handle->image_info->size, handle->image_info->width, handle->image_info->height, colorspace);
+ dcm_debug("face_detect image: %p, size: %llu, width: %d, height: %d, color: %d", handle->image_info->data, handle->image_info->size, handle->image_info->width, handle->image_info->height, colorspace);
err = mv_source_fill_by_buffer(_fengine->source, handle->image_info->data, (unsigned int)(handle->image_info->size), handle->image_info->width, handle->image_info->height, colorspace);
if (err != MEDIA_VISION_ERROR_NONE) {