Home | History | Annotate | Download | only in libopenjpeg20

Lines Matching full:l_image

673 	opj_image_t *l_image = 00;
698 l_image = p_tcd->image;
706 l_tx0 = l_cp->tx0 + p * l_cp->tdx; /* can't be greater than l_image->x1 so won't overflow */
707 l_tile->x0 = (OPJ_INT32)opj_uint_max(l_tx0, l_image->x0);
708 l_tile->x1 = (OPJ_INT32)opj_uint_min(opj_uint_adds(l_tx0, l_cp->tdx), l_image->x1);
709 l_ty0 = l_cp->ty0 + q * l_cp->tdy; /* can't be greater than l_image->y1 so won't overflow */
710 l_tile->y0 = (OPJ_INT32)opj_uint_max(l_ty0, l_image->y0);
711 l_tile->y1 = (OPJ_INT32)opj_uint_min(opj_uint_adds(l_ty0, l_cp->tdy), l_image->y1);