Home
last modified time | relevance | path

Searched refs:image_width (Results 1 – 21 of 21) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/media/v4l2-core/
H A Dv4l2-dv-timings.c499 int frame_width, image_height, image_width; in v4l2_detect_cvt() local
562 image_width = (image_height * 4) / 3; in v4l2_detect_cvt()
565 image_width = (image_height * 16) / 9; in v4l2_detect_cvt()
568 image_width = (image_height * 16) / 10; in v4l2_detect_cvt()
573 image_width = (image_height * 5) / 4; in v4l2_detect_cvt()
575 image_width = (image_height * 15) / 9; in v4l2_detect_cvt()
580 image_width = active_width; in v4l2_detect_cvt()
587 image_width = image_width & ~7; in v4l2_detect_cvt()
597 pix_clk = (image_width + h_blank) * hfreq; in v4l2_detect_cvt()
604 frame_width = image_width + h_blank; in v4l2_detect_cvt()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/
H A DCVE-2021-3695-video-readers-png-Drop-greyscale-support-to-fix-heap.patch9 for (i = 0; i < (data->image_width * data->image_height);
53 unsigned image_width, image_height;
115 for (j = 0; j < data->image_height; j++, d1c += data->image_width * 3,
126 - for (i = 0; i < (data->image_width * data->image_height);
139 - for (i = 0; i < (data->image_width * data->image_height);
150 - for (i = 0; i < (data->image_width * data->image_height);
162 - for (i = 0; i < (data->image_width * data->image_height);
H A Dvideo-readers-jpeg-Refuse-to-handle-multiple-start-o.patch37 if (grub_video_bitmap_create (data->bitmap, data->image_width,
41 nc1 = (data->image_width + hb - 1) >> (3 + data->log_hs);
50 data->r1++, data->bitmap_ptr += (vb * data->image_width - hb * nc1) * 3)
H A DCVE-2021-3697-video-readers-jpeg-Block-int-underflow-wild-pointer.patch11 data->r1++, data->bitmap_ptr += (vb * data->image_width - hb * nc1) * 3)
70 + if (grub_mul(vb, data->image_width, &stride_a) ||
77 - data->r1++, data->bitmap_ptr += (vb * data->image_width - hb * nc1) * 3)
H A Dvideo-readers-jpeg-Abort-sooner-if-a-read-operation-.patch260 nc2 = (c1 == nc1 - 1) ? (data->image_width - c1 * hb) : hb;
/OK3568_Linux_fs/kernel/drivers/media/platform/omap/
H A Domap_vout_vrfb.c97 int image_width, image_height; in omap_vout_setup_vrfb_bufs() local
117 image_width = VID_MAX_WIDTH / TILE_SIZE; in omap_vout_setup_vrfb_bufs()
119 image_width++; in omap_vout_setup_vrfb_bufs()
121 image_width = image_width * TILE_SIZE; in omap_vout_setup_vrfb_bufs()
128 vout->smsshado_size = PAGE_ALIGN(image_width * image_height * 2 * 2); in omap_vout_setup_vrfb_bufs()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/object_tracker/
H A Dobjects_tracker.cc50 void ObjectsTracker::predict_loctation(TrackedObject& curObject, int image_width,int image_height, … in predict_loctation() argument
66 if(x + prevRect.width >= image_width) in predict_loctation()
67 x -= (x + prevRect.width -image_width +1); in predict_loctation()
95 … , const std::vector<float> objects_score, int maxTrackLifetime, int image_width,int image_height) in updateTrackedObjects() argument
123 predict_loctation(curObject, image_width, image_height, pre_x, pre_y, vx, vy); in updateTrackedObjects()
H A Dobjects_tracker.h68 …ass, const std::vector<float> objects_score, int maxTrackLifetime, int image_width, int image_heig…
106 …void predict_loctation(TrackedObject& curObject, int image_width,int image_height, float& pre_x, f…
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aeis/
H A Deis_loader.h32 using getMeshSize = void (*)(int image_height, int image_width, int* mesh_size);
33 using getOriginalMeshXY = void (*)(int image_width, int image_height, double clip_ratio_x, double …
H A Ddvs_app.h180 void getMeshSize(int image_height, int image_width, int* mesh_size);
198 void getOriginalMeshXY(int image_width, int image_height, double clip_ratio_x, double clip_ratio_y,
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0101-video-readers-jpeg-Don-t-decode-data-before-start-of.patch29 nc1 = (data->image_width + hb - 1) >> (3 + data->log_hs);
36 data->r1++, data->bitmap_ptr += (vb * data->image_width - hb * nc1) * 3)
H A D0006-malloc-Use-overflow-checking-primitives-where-we-do-.patch1308 - data->row_bytes = data->image_width * data->bpp;
1310 + if (grub_mul (data->image_width, data->bpp, &data->row_bytes))
1314 - data->row_bytes = (data->image_width * data->color_bits + 7) / 8;
1316 + if (grub_mul (data->image_width, data->color_bits + 7, &data->row_bytes))
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/fbida/files/
H A Dsupport-jpeg-turbo.patch35 +#define _jpeg_width image_width
174 - MCU_cols = dstinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
400 - MCU_cols = dstinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
536 - MCU_cols = dstinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
684 - MCU_cols = dstinfo->image_width / (dstinfo->max_h_samp_factor * DCTSIZE);
935 + srcinfo->output_width = srcinfo->image_width;
1190 - dtemp = dstinfo->image_width;
1192 + jtemp = dstinfo->image_width;
1193 dstinfo->image_width = dstinfo->image_height;
1268 - MCU_cols = dstinfo->image_width / (max_h_samp_factor * DCTSIZE);
[all …]
/OK3568_Linux_fs/external/xserver/hw/xfree86/modes/
H A Dxf86Cursors.c611 int image_width = cursor_info->MaxWidth; in xf86_crtc_load_cursor_argb() local
616 for (x = 0; x < image_width; x++) { in xf86_crtc_load_cursor_argb()
617 xf86_crtc_rotate_coord(rotation, image_width, image_height, x, y, in xf86_crtc_load_cursor_argb()
623 cursor_image[y * image_width + x] = bits; in xf86_crtc_load_cursor_argb()
/OK3568_Linux_fs/device/rockchip/common/images/oem/oem_cvr/etc/rkadk/8M/
H A Drkadk_setting_sensor_0.ini111 image_width = 3840 key
/OK3568_Linux_fs/device/rockchip/common/images/oem/oem_cvr/etc/rkadk/5M/
H A Drkadk_setting_sensor_0.ini111 image_width = 2592 key
/OK3568_Linux_fs/external/libmali/include/CL/
H A Dcl_ext.h275 size_t image_width,
H A Dcl.h104 size_t image_width; member
/OK3568_Linux_fs/external/xserver/hw/kdrive/ephyr/
H A Dephyrvideo.c59 int image_width, image_height; member
1029 port_priv->image_width = a_width; in ephyrPutImage()
1073 port_priv->image_width, port_priv->image_height, in ephyrReputImage()
/OK3568_Linux_fs/debian/packages-patches/mpv/0.29.1/
H A D0002-HACK-vo_xv-Support-dma-buffer-rendering.patch69 uint32_t image_width;
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86DGA.c1380 info.image_width = mode[i].imageWidth; in ProcXDGAQueryModes()
1506 info.image_width = mode.imageWidth; in ProcXDGASetMode()