• Home
  • Raw
  • Download

Lines Matching refs:rect

39 	struct v4l2_rect rect;  member
762 decoder->rect.height = TVP5150_V_MAX_525_60; in tvp5150_s_std()
764 decoder->rect.height = TVP5150_V_MAX_OTHERS; in tvp5150_s_std()
856 f->width = decoder->rect.width; in tvp5150_mbus_fmt()
857 f->height = decoder->rect.height; in tvp5150_mbus_fmt()
870 struct v4l2_rect rect = a->c; in tvp5150_s_crop() local
876 __func__, rect.left, rect.top, rect.width, rect.height); in tvp5150_s_crop()
882 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT); in tvp5150_s_crop()
883 rect.width = clamp(rect.width, in tvp5150_s_crop()
884 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left, in tvp5150_s_crop()
885 TVP5150_H_MAX - rect.left); in tvp5150_s_crop()
886 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP); in tvp5150_s_crop()
899 rect.height = clamp(rect.height, in tvp5150_s_crop()
900 hmax - TVP5150_MAX_CROP_TOP - rect.top, in tvp5150_s_crop()
901 hmax - rect.top); in tvp5150_s_crop()
903 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, rect.top); in tvp5150_s_crop()
905 rect.top + rect.height - hmax); in tvp5150_s_crop()
907 rect.left >> TVP5150_CROP_SHIFT); in tvp5150_s_crop()
909 rect.left | (1 << TVP5150_CROP_SHIFT)); in tvp5150_s_crop()
911 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >> in tvp5150_s_crop()
914 rect.left + rect.width - TVP5150_MAX_CROP_LEFT); in tvp5150_s_crop()
916 decoder->rect = rect; in tvp5150_s_crop()
925 a->c = decoder->rect; in tvp5150_g_crop()
1217 core->rect.top = 0; in tvp5150_probe()
1219 core->rect.height = TVP5150_V_MAX_525_60; in tvp5150_probe()
1221 core->rect.height = TVP5150_V_MAX_OTHERS; in tvp5150_probe()
1222 core->rect.left = 0; in tvp5150_probe()
1223 core->rect.width = TVP5150_H_MAX; in tvp5150_probe()