• Home
  • Raw
  • Download

Lines Matching refs:xsize

136     int ysize, xsize;  member
645 wav_decode(ptr + j, td->xsize, pixel_half_size, td->ysize, in piz_uncompress()
646 td->xsize * pixel_half_size, maxval); in piz_uncompress()
647 ptr += td->xsize * td->ysize * pixel_half_size; in piz_uncompress()
662 in = tmp + tmp_offset * td->xsize * td->ysize + i * td->xsize * pixel_half_size; in piz_uncompress()
666 s->bbdsp.bswap16_buf(out, in, td->xsize * pixel_half_size); in piz_uncompress()
668 memcpy(out, in, td->xsize * 2 * pixel_half_size); in piz_uncompress()
670 out += td->xsize * pixel_half_size; in piz_uncompress()
688 … expected_len += (td->xsize * td->ysize * 3);/* PRX 24 store float in 24 bit instead of 32 */ in pxr24_uncompress()
690 expected_len += (td->xsize * td->ysize * 2); in pxr24_uncompress()
692 expected_len += (td->xsize * td->ysize * 4); in pxr24_uncompress()
714 ptr[1] = ptr[0] + td->xsize; in pxr24_uncompress()
715 ptr[2] = ptr[1] + td->xsize; in pxr24_uncompress()
716 in = ptr[2] + td->xsize; in pxr24_uncompress()
718 for (j = 0; j < td->xsize; ++j) { in pxr24_uncompress()
728 ptr[1] = ptr[0] + td->xsize; in pxr24_uncompress()
729 in = ptr[1] + td->xsize; in pxr24_uncompress()
730 for (j = 0; j < td->xsize; j++) { in pxr24_uncompress()
823 nb_b44_block_w = td->xsize / 4; in b44_uncompress()
824 if ((td->xsize % 4) != 0) in b44_uncompress()
859 for (x = index_tl_x; x < FFMIN(index_tl_x + 4, td->xsize); x++) { in b44_uncompress()
860 … index_out = target_channel_offset * td->xsize + y * td->channel_line_size + 2 * x; in b44_uncompress()
870 if (stay_to_uncompress < td->ysize * td->xsize * 4) { in b44_uncompress()
876 index_out = target_channel_offset * td->xsize + y * td->channel_line_size; in b44_uncompress()
877 memcpy(&td->uncompressed_data[index_out], sr, td->xsize * 4); in b44_uncompress()
878 sr += td->xsize * 4; in b44_uncompress()
882 stay_to_uncompress -= td->ysize * td->xsize * 4; in b44_uncompress()
995 const int dc_w = td->xsize >> 3; in dwa_uncompress()
1040 if (ac_count > 3LL * td->xsize * s->scan_lines_per_block) in dwa_uncompress()
1114 for (int x = 0; x < td->xsize; x += 8) { in dwa_uncompress()
1135 y * td->xsize * s->nb_channels + td->xsize * (o + 0) + x; in dwa_uncompress()
1137 y * td->xsize * s->nb_channels + td->xsize * (o + 1) + x; in dwa_uncompress()
1139 y * td->xsize * s->nb_channels + td->xsize * (o + 2) + x; in dwa_uncompress()
1155 bo += td->xsize * s->nb_channels; in dwa_uncompress()
1156 go += td->xsize * s->nb_channels; in dwa_uncompress()
1157 ro += td->xsize * s->nb_channels; in dwa_uncompress()
1167 uint32_t *ao = ((uint32_t *)td->uncompressed_data) + y * td->xsize * s->nb_channels; in dwa_uncompress()
1168 uint8_t *ai0 = td->rle_raw_data + y * td->xsize; in dwa_uncompress()
1169 uint8_t *ai1 = td->rle_raw_data + y * td->xsize + rle_raw_size / 2; in dwa_uncompress()
1171 for (int x = 0; x < td->xsize; x++) { in dwa_uncompress()
1198 int data_xoffset, data_yoffset, data_window_offset, xsize, ysize; in decode_block() local
1242 td->xsize = FFMIN(s->tile_attr.xSize, s->xdelta - tile_x * s->tile_attr.xSize); in decode_block()
1244 if (td->xsize * (uint64_t)s->current_channel_offset > INT_MAX || in decode_block()
1245 …av_image_check_size2(td->xsize, td->ysize, s->avctx->max_pixels, AV_PIX_FMT_NONE, 0, s->avctx) < 0) in decode_block()
1248 … td->channel_line_size = td->xsize * s->current_channel_offset;/* uncompress size of one line */ in decode_block()
1267 td->xsize = s->xdelta; in decode_block()
1269 if (td->xsize * (uint64_t)s->current_channel_offset > INT_MAX || in decode_block()
1270 …av_image_check_size2(td->xsize, td->ysize, s->avctx->max_pixels, AV_PIX_FMT_NONE, 0, s->avctx) < 0) in decode_block()
1273 … td->channel_line_size = td->xsize * s->current_channel_offset;/* uncompress size of one line */ in decode_block()
1285 window_xmax = FFMIN(avctx->width, FFMAX(0, s->xmin + col + td->xsize)); in decode_block()
1288 xsize = window_xmax - window_xmin; in decode_block()
1292 if (xsize <= 0 || ysize <= 0) in decode_block()
1305 if(col + td->xsize == s->xdelta) { in decode_block()
1364 channel_buffer[0] = src + (td->xsize * s->channel_offsets[0]) + data_window_offset; in decode_block()
1365 channel_buffer[1] = src + (td->xsize * s->channel_offsets[1]) + data_window_offset; in decode_block()
1366 channel_buffer[2] = src + (td->xsize * s->channel_offsets[2]) + data_window_offset; in decode_block()
1369 channel_buffer[0] = src + (td->xsize * s->channel_offsets[1]) + data_window_offset; in decode_block()
1373 channel_buffer[3] = src + (td->xsize * s->channel_offsets[3]) + data_window_offset; in decode_block()
1404 for (x = 0; x < xsize; x++) { in decode_block()
1410 for (x = 0; x < xsize; x++) { in decode_block()
1417 for (x = 0; x < xsize; x++) { in decode_block()
1425 for (x = 0; x < xsize; x++) { in decode_block()
1429 for (x = 0; x < xsize; x++) { in decode_block()
1468 for (x = 0; x < xsize; x++) { in decode_block()