• Home
  • Raw
  • Download

Lines Matching refs:dst_format

102     CSC_FORMAT      dst_format;  member
118 switch (handle->dst_format.color_format) { in conv_sw_src_argb888()
152 switch (handle->dst_format.color_format) { in conv_sw_src_nv12t()
194 switch (handle->dst_format.color_format) { in conv_sw_src_yuv420p()
232 switch (handle->dst_format.color_format) { in conv_sw_src_yuv420sp()
305 dst_omx_format = hal_2_omx_pixel_format(handle->dst_format.color_format); in conv_hw()
310 handle->dst_format.width, in conv_hw()
311 handle->dst_format.height, in conv_hw()
448 ALIGN(csc_handle->dst_format.width, GSCALER_IMG_ALIGN), in csc_set_format()
449 ALIGN(csc_handle->dst_format.height, GSCALER_IMG_ALIGN), in csc_set_format()
450 csc_handle->dst_format.crop_left, in csc_set_format()
451 csc_handle->dst_format.crop_top, in csc_set_format()
452 csc_handle->dst_format.crop_width, in csc_set_format()
453 csc_handle->dst_format.crop_height, in csc_set_format()
454 HAL_PIXEL_FORMAT_2_V4L2_PIX(csc_handle->dst_format.color_format), in csc_set_format()
455 csc_handle->dst_format.cacheable, in csc_set_format()
479 g2d->dst.width = ALIGN(csc_handle->dst_format.width, in csc_set_format()
481 g2d->dst.height = csc_handle->dst_format.height; in csc_set_format()
483 hal_2_g2d_bpp(csc_handle->dst_format.color_format) >> 3; in csc_set_format()
484 g2d->dst.order = hal_2_g2d_pixel_order(csc_handle->dst_format.color_format); in csc_set_format()
485 g2d->dst.fmt = hal_2_g2d_color_format(csc_handle->dst_format.color_format); in csc_set_format()
486 g2d->dst.rect.x1 = csc_handle->dst_format.crop_left; in csc_set_format()
487 g2d->dst.rect.y1 = csc_handle->dst_format.crop_top; in csc_set_format()
488 g2d->dst.rect.x2 = csc_handle->dst_format.crop_left + in csc_set_format()
489 csc_handle->dst_format.crop_width; in csc_set_format()
490 g2d->dst.rect.y2 = csc_handle->dst_format.crop_top + in csc_set_format()
491 csc_handle->dst_format.crop_height; in csc_set_format()
754 *width = csc_handle->dst_format.width; in csc_get_dst_format()
755 *height = csc_handle->dst_format.height; in csc_get_dst_format()
756 *crop_left = csc_handle->dst_format.crop_left; in csc_get_dst_format()
757 *crop_top = csc_handle->dst_format.crop_top; in csc_get_dst_format()
758 *crop_width = csc_handle->dst_format.crop_width; in csc_get_dst_format()
759 *crop_height = csc_handle->dst_format.crop_height; in csc_get_dst_format()
760 *color_format = csc_handle->dst_format.color_format; in csc_get_dst_format()
761 *cacheable = csc_handle->dst_format.cacheable; in csc_get_dst_format()
784 csc_handle->dst_format.width = width; in csc_set_dst_format()
785 csc_handle->dst_format.height = height; in csc_set_dst_format()
786 csc_handle->dst_format.crop_left = crop_left; in csc_set_dst_format()
787 csc_handle->dst_format.crop_top = crop_top; in csc_set_dst_format()
788 csc_handle->dst_format.crop_width = crop_width; in csc_set_dst_format()
789 csc_handle->dst_format.crop_height = crop_height; in csc_set_dst_format()
790 csc_handle->dst_format.color_format = color_format; in csc_set_dst_format()
791 csc_handle->dst_format.cacheable = cacheable; in csc_set_dst_format()