Lines Matching full:compose
1480 * __vfe_get_compose - Get pointer to compose selection structure
1485 * Return pointer to TRY or ACTIVE compose rectangle structure
1496 return &line->compose; in __vfe_get_compose()
1580 * vfe_try_compose - Handle try compose selection by pad subdev method
1630 struct v4l2_rect *compose; in vfe_try_crop() local
1632 compose = __vfe_get_compose(line, cfg, which); in vfe_try_crop()
1634 if (rect->width > compose->width) in vfe_try_crop()
1635 rect->width = compose->width; in vfe_try_crop()
1637 if (rect->width + rect->left > compose->width) in vfe_try_crop()
1638 rect->left = compose->width - rect->width; in vfe_try_crop()
1640 if (rect->height > compose->height) in vfe_try_crop()
1641 rect->height = compose->height; in vfe_try_crop()
1643 if (rect->height + rect->top > compose->height) in vfe_try_crop()
1644 rect->top = compose->height - rect->height; in vfe_try_crop()
1798 /* Reset sink pad compose selection */ in vfe_set_format()