Home | History | Annotate | Download | only in libcsc

Lines Matching refs:dst_format

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