Lines Matching refs:compose
1498 return &line->compose; in __vfe_get_compose()
1632 struct v4l2_rect *compose; in vfe_try_crop() local
1634 compose = __vfe_get_compose(line, cfg, which); in vfe_try_crop()
1636 if (rect->width > compose->width) in vfe_try_crop()
1637 rect->width = compose->width; in vfe_try_crop()
1639 if (rect->width + rect->left > compose->width) in vfe_try_crop()
1640 rect->left = compose->width - rect->width; in vfe_try_crop()
1642 if (rect->height > compose->height) in vfe_try_crop()
1643 rect->height = compose->height; in vfe_try_crop()
1645 if (rect->height + rect->top > compose->height) in vfe_try_crop()
1646 rect->top = compose->height - rect->height; in vfe_try_crop()