Lines Matching refs:decoded_area
38 const lv_area_t * full_area, lv_area_t * decoded_area);
208 const lv_area_t * full_area, lv_area_t * decoded_area) in decoder_get_area() argument
219 if(decoded_area->y1 == LV_COORD_MIN) { in decoder_get_area()
220 decoded_area->y1 = 0; in decoder_get_area()
221 decoded_area->y2 = my - 1; in decoder_get_area()
222 decoded_area->x1 = -((int32_t)mx); in decoder_get_area()
223 decoded_area->x2 = -1; in decoder_get_area()
241 decoded_area->x1 += mx; in decoder_get_area()
242 decoded_area->x2 += mx; in decoder_get_area()
244 if(decoded_area->x1 >= jd->width) { in decoder_get_area()
245 decoded_area->x1 = 0; in decoder_get_area()
246 decoded_area->x2 = mx - 1; in decoder_get_area()
247 decoded_area->y1 += my; in decoder_get_area()
248 decoded_area->y2 += my; in decoder_get_area()
251 if(decoded_area->x2 >= jd->width) decoded_area->x2 = jd->width - 1; in decoder_get_area()
252 if(decoded_area->y2 >= jd->height) decoded_area->y2 = jd->height - 1; in decoder_get_area()
254 decoded->header.w = lv_area_get_width(decoded_area); in decoder_get_area()
255 decoded->header.h = lv_area_get_height(decoded_area); in decoder_get_area()
272 rc = jd_mcu_output(jd, NULL, decoded_area->x1, decoded_area->y1); in decoder_get_area()