Lines Matching refs:compose
794 return &line->compose; in __vfe_get_compose()
929 struct v4l2_rect *compose; in vfe_try_crop() local
931 compose = __vfe_get_compose(line, sd_state, which); in vfe_try_crop()
933 if (rect->width > compose->width) in vfe_try_crop()
934 rect->width = compose->width; in vfe_try_crop()
936 if (rect->width + rect->left > compose->width) in vfe_try_crop()
937 rect->left = compose->width - rect->width; in vfe_try_crop()
939 if (rect->height > compose->height) in vfe_try_crop()
940 rect->height = compose->height; in vfe_try_crop()
942 if (rect->height + rect->top > compose->height) in vfe_try_crop()
943 rect->top = compose->height - rect->height; in vfe_try_crop()