Lines Matching refs:compose
796 return &line->compose; in __vfe_get_compose()
931 struct v4l2_rect *compose; in vfe_try_crop() local
933 compose = __vfe_get_compose(line, sd_state, which); in vfe_try_crop()
935 if (rect->width > compose->width) in vfe_try_crop()
936 rect->width = compose->width; in vfe_try_crop()
938 if (rect->width + rect->left > compose->width) in vfe_try_crop()
939 rect->left = compose->width - rect->width; in vfe_try_crop()
941 if (rect->height > compose->height) in vfe_try_crop()
942 rect->height = compose->height; in vfe_try_crop()
944 if (rect->height + rect->top > compose->height) in vfe_try_crop()
945 rect->top = compose->height - rect->height; in vfe_try_crop()