Lines Matching full:compose
987 * __vfe_get_compose - Get pointer to compose selection structure
992 * Return pointer to TRY or ACTIVE compose rectangle structure
1003 return &line->compose; in __vfe_get_compose()
1087 * vfe_try_compose - Handle try compose selection by pad subdev method
1137 struct v4l2_rect *compose; in vfe_try_crop() local
1139 compose = __vfe_get_compose(line, sd_state, which); in vfe_try_crop()
1141 if (rect->width > compose->width) in vfe_try_crop()
1142 rect->width = compose->width; in vfe_try_crop()
1144 if (rect->width + rect->left > compose->width) in vfe_try_crop()
1145 rect->left = compose->width - rect->width; in vfe_try_crop()
1147 if (rect->height > compose->height) in vfe_try_crop()
1148 rect->height = compose->height; in vfe_try_crop()
1150 if (rect->height + rect->top > compose->height) in vfe_try_crop()
1151 rect->top = compose->height - rect->height; in vfe_try_crop()
1305 /* Reset sink pad compose selection */ in vfe_set_format()