Change-Id: I180eeca73b7b95c66bbc65d93afbef9ed98e08e5
Signed-off-by: Kwanghoon Son <k.son@samsung.com>
void LandmarkDetectionParser::setTaskType(int type)
{
- LandmarkDetectionTaskType task_type = static_cast<LandmarkDetectionTaskType>(type);
// TODO.
}
media_packet_get_video_stride_width(packet, 0, &stride_w);
media_packet_get_video_plane_data_ptr(packet, 0, (void **) (&plane_data_ptr));
- for (unsigned int h = 0; h < height; h++) {
+ for (int h = 0; h < height; h++) {
memcpy(app->buffer + width * h, plane_data_ptr + stride_w * h, width);
}
mv3dTestsFixture->mIsPointCloudCallbackInvoked = true;
int ret = mv_3d_pointcloud_write_file(mv3dTestsFixture->mDepthHandle, pointcloud, MV_3D_POINTCLOUD_TYPE_PCD_BIN,
- PCD_WRITE_FILENAME);
+ (char *) PCD_WRITE_FILENAME);
if (ret == MEDIA_VISION_ERROR_NONE)
mv3dTestsFixture->mIsPointCloudWriteSuccess = true;
}