Home
last modified time | relevance | path

Searched refs:block_y (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmsvideo1.c91 int block_x, block_y; /* block width and height iterators */ in msvideo1_decode_8bit() local
113 for (block_y = blocks_high; block_y > 0; block_y--) { in msvideo1_decode_8bit()
114 block_ptr = ((block_y * 4) - 1) * stride; in msvideo1_decode_8bit()
191 int block_x, block_y; /* block width and height iterators */ in msvideo1_decode_16bit() local
213 for (block_y = blocks_high; block_y > 0; block_y--) { in msvideo1_decode_16bit()
214 block_ptr = ((block_y * 4) - 1) * stride; in msvideo1_decode_16bit()
Dmjpegdec.c1403 int block_x, block_y; in shift_output() local
1406 for (block_y=0; block_y<size; block_y++) in shift_output()
1408 *(uint16_t*)(ptr + 2*block_x + block_y*linesize) <<= 16 - s->bits; in shift_output()
1410 for (block_y=0; block_y<size; block_y++) in shift_output()
1412 *(ptr + block_x + block_y*linesize) <<= 8 - s->bits; in shift_output()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_compute_blit.c533 set_work_size(struct pipe_grid_info *info, unsigned block_x, unsigned block_y, unsigned block_z, in set_work_size() argument
537 info->block[1] = block_y; in set_work_size()
742 int block_x, block_y; in si_compute_copy_image() local
747 block_y = util_next_power_of_two(src_box->height); in si_compute_copy_image()
748 block_x = 64 / block_y; in si_compute_copy_image()
751 block_y = 64 / block_x; in si_compute_copy_image()
754 block_y = 1; in si_compute_copy_image()
757 block_y = 8; in si_compute_copy_image()
764 set_work_size(&info, block_x, block_y, block_z, in si_compute_copy_image()
/third_party/ffmpeg/tests/checkasm/
Dh264dsp.c274 int block_y = (index / 16) * sz; in check_idct_multiple() local
276 int offset = (block_y * 16 + block_x) * SIZEOF_PIXEL; in check_idct_multiple()