rgb_addr_offset

pull/2765/head
deanlee 5 years ago
parent df9123129e
commit 428a8f247d
  1. 4
      selfdrive/camerad/cameras/camera_qcom.cc

@ -2071,9 +2071,9 @@ void camera_process_frame(MultiCameraState *s, CameraState *c, int cnt) {
const size_t width = b->rgb_width / NUM_SEGMENTS_X;
const size_t height = b->rgb_height / NUM_SEGMENTS_Y;
const size_t offset = (ROI_Y_MIN + roi_y_offset) * height * FULL_STRIDE_X * 3 + (ROI_X_MIN + roi_x_offset) * width * 3;
const uint8_t *rgb_addr_offset = rgb_addr + (ROI_Y_MIN + roi_y_offset) * height * FULL_STRIDE_X * 3 + (ROI_X_MIN + roi_x_offset) * width * 3;
for (int r = 0; r < height; ++r) {
memcpy(s->rgb_roi_buf.get() + r * width * 3, rgb_addr + offset + r * FULL_STRIDE_X * 3, width * 3);
memcpy(s->rgb_roi_buf.get() + r * width * 3, rgb_addr_offset + r * FULL_STRIDE_X * 3, width * 3);
}
CL_CHECK(clEnqueueWriteBuffer(b->q, s->rgb_conv_roi_cl, true, 0, width * height * 3 * sizeof(uint8_t), s->rgb_roi_buf.get(), 0, 0, 0));

Loading…
Cancel
Save