Home | History | Annotate | Download | only in libopenjpeg20

Lines Matching refs:y1

1902         opj_write_bytes(l_current_ptr, l_image->y1, 4); /* Ysiz */
1998 opj_read_bytes(p_header_data, (OPJ_UINT32*) &l_image->y1, 4); /* Ysiz */
2028 if ((l_image->x0 >= l_image->x1) || (l_image->y0 >= l_image->y1)) {
2029 opj_event_msg(p_manager, EVT_ERROR, "Error with SIZ marker: negative or zero image size (%d x %d)\n", l_image->x1 - l_image->x0, l_image->y1 - l_image->y0);
2039 if (((OPJ_UINT64)l_image->x1) * ((OPJ_UINT64)l_image->y1) != (l_image->x1 * l_image->y1)) {
2040 opj_event_msg(p_manager, EVT_ERROR, "Prevent buffer overflow (x1: %d, y1: %d)\n", l_image->x1, l_image->y1);
2056 if (!(l_image->x1 * l_image->y1)) {
2059 l_image->x1, l_image->y1);
2159 l_cp->th = (OPJ_UINT32)opj_int_ceildiv((OPJ_INT32)(l_image->y1 - l_cp->ty0), (OPJ_INT32)l_cp->tdy);
4651 l_y1 = opj_int_min((OPJ_INT32)(l_cp->ty0 + (i + 1) * l_cp->tdy), (OPJ_INT32)l_image->y1);
6354 cp->th = (OPJ_UINT32)opj_int_ceildiv((OPJ_INT32)(image->y1 - cp->ty0), (OPJ_INT32)cp->tdy);
6357 cp->tdy = image->y1 - cp->ty0;
8034 *p_tile_y1 = p_j2k->m_tcd->tcd_image->tiles->y1;
8188 l_res->x0, l_res->x1, l_res->y0, l_res->y1);
8192 l_height_src = (OPJ_UINT32)(l_res->y1 - l_res->y0);
8245 if ( l_y1_dest >= (OPJ_UINT32)l_res->y1 ) {
8258 if ( l_y1_dest >= (OPJ_UINT32)l_res->y1 ) {
8264 l_offset_y1_src = l_res->y1 - (OPJ_INT32)l_y1_dest;
8448 if ((OPJ_UINT32)p_start_y > l_image->y1){
8451 p_start_y, l_image->y1);
8494 if ((OPJ_UINT32)p_end_y > l_image->y1){
8497 p_end_y, l_image->y1);
8499 p_image->y1 = l_image->y1;
8503 p_image->y1 = (OPJ_UINT32)p_end_y;
8517 l_comp_y1 = opj_int_ceildiv((OPJ_INT32)p_image->y1, (OPJ_INT32)l_img_comp->dy);
8543 p_image->x0, p_image->y0, p_image->x1, p_image->y1);
9317 fprintf(out_stream, "%s x1=%d, y1=%d\n", tab, img_header->x1, img_header->y1);
9857 p_image->y1 = (l_tile_y + 1) * p_j2k->m_cp.tdy + p_j2k->m_cp.ty0;
9858 if (p_image->y1 > p_j2k->m_private_image->y1)
9859 p_image->y1 = p_j2k->m_private_image->y1;
9871 l_comp_y1 = opj_int_ceildiv((OPJ_INT32)p_image->y1, (OPJ_INT32)l_img_comp->dy);
10149 *l_height = (OPJ_UINT32)(l_tilec->y1 - l_tilec->y0);
10711 l_cstr_info->image_h = p_j2k->m_image->y1 - p_j2k->m_image->y0;