/third_party/ffmpeg/libavcodec/ |
D | flashsvenc.c | 61 int block_width, block_height; member 129 int buf_size, int block_width, int block_height, in encode_bitstream() argument 142 put_bits(&pb, 4, block_height / 16 - 1); in encode_bitstream() 149 v_blocks = s->image_height / block_height; in encode_bitstream() 150 v_part = s->image_height % block_height; in encode_bitstream() 155 int y_pos = j * block_height; // vertical position in frame in encode_bitstream() 156 int cur_blk_height = (j < v_blocks) ? block_height : v_part; in encode_bitstream() 173 unsigned long zsize = 3 * block_width * block_height; in encode_bitstream()
|
D | flashsv2enc.c | 109 int block_width, block_height; member 154 s->block_height : in init_blocks() 155 s->image_height - row * s->block_height; in init_blocks() 178 static int update_block_dimensions(FlashSV2Context *s, int block_width, int block_height) in update_block_dimensions() argument 181 s->block_height = block_height; in update_block_dimensions() 182 s->rows = (s->image_height + s->block_height - 1) / s->block_height; in update_block_dimensions() 196 av_fast_malloc(&s->blockbuffer, &s->blockbuffer_size, block_width * block_height * 6); in update_block_dimensions() 301 put_bits(&pb, 4, (s->block_height >> 4) - 1); in write_header() 623 b = s->frame_blocks + col + rsl / s->block_height * s->cols; in mark_all_blocks() 627 s->key_frame + pos, rsl % s->block_height, keyframe); in mark_all_blocks() [all …]
|
D | flashsv.c | 55 int block_width, block_height; member 274 int last_blockheight= s->block_height; in flashsv_decode_frame() 288 s->block_height = 16 * (get_bits(&gb, 4) + 1); in flashsv_decode_frame() 292 || last_blockheight!= s->block_height) in flashsv_decode_frame() 310 v_blocks = s->image_height / s->block_height; in flashsv_decode_frame() 311 v_part = s->image_height % s->block_height; in flashsv_decode_frame() 315 if (s->block_size < s->block_width * s->block_height) { in flashsv_decode_frame() 316 int tmpblock_size = 3 * s->block_width * s->block_height, err; in flashsv_decode_frame() 338 s->block_size = s->block_width * s->block_height; in flashsv_decode_frame() 368 s->image_width, s->image_height, s->block_width, s->block_height, in flashsv_decode_frame() [all …]
|
D | rpzaenc.c | 76 int block_height; member 129 bi->block_height = bi->image_height % 4; in get_block_info() 131 bi->block_height = 4; in get_block_info() 206 for (y = 0; y < bi->block_height; y++) { in get_max_component_diff() 247 for (y = 0; y < bi->block_height; y++) { in compare_blocks() 273 count = bi->block_height * bi->block_width; in leastsquares() 278 for (i = 0; i < bi->block_height; i++) { in leastsquares() 325 for (i = 0; i < bi->block_height; i++) { in calc_lsq_max_fit_error() 488 total_pixels_blk = *total_pixels + bi->block_height * bi->block_width; in update_block_stats() 493 for (y = 0; y < bi->block_height; y++) { in update_block_stats()
|
D | svq1enc.c | 255 int block_width, block_height; in svq1_encode_plane() local 268 block_height = (height + 15) / 16; in svq1_encode_plane() 282 s->m.mb_height = block_height; in svq1_encode_plane() 301 block_height * 2 + 2) * in svq1_encode_plane() 304 (block_height + 2) + 1) * in svq1_encode_plane() 326 for (y = 0; y < block_height; y++) { in svq1_encode_plane() 336 for (; i < 16 && i + 16 * y < 16 * block_height; i++) in svq1_encode_plane() 355 for (y = 0; y < block_height; y++) { in svq1_encode_plane() 362 for (; i < 16 && i + 16 * y < 16 * block_height; i++) in svq1_encode_plane()
|
D | truemotion1.c | 68 int block_height; member 119 int block_height; // hres member 460 s->block_height = compression_types[header.compression].block_height; in truemotion1_decode_header() 466 s->block_height, s->block_type, in truemotion1_decode_header()
|
/third_party/mesa3d/src/mesa/main/ |
D | format_parser.py | 235 …def __init__(self, name, layout, block_width, block_height, block_depth, channels, swizzle, colors… argument 257 self.block_height = block_height 371 return self.block_width != 1 or self.block_height != 1 or self.block_depth != 1 564 block_height = int(fields[3]) 575 … yield Format(name, layout, block_width, block_height, block_depth, channels, swizzle, colorspace)
|
D | format_info.py | 199 ….BlockHeight = {1}, .BlockDepth = {2},'.format(fmat.block_width, fmat.block_height, fmat.block_dep…
|
/third_party/gstreamer/gstplugins_bad/gst/fieldanalysis/ |
D | gstfieldanalysis.c | 367 filter->block_height = DEFAULT_BLOCK_HEIGHT; in gst_field_analysis_init() 449 filter->block_height = g_value_get_uint64 (value); in gst_field_analysis_set_property() 523 g_value_set_uint64 (value, filter->block_height); in gst_field_analysis_get_property() 1060 const guint64 block_height = filter->block_height; in block_score_for_row_32detect() local 1071 for (j = 0; j < block_height; j++) { in block_score_for_row_32detect() 1147 const guint64 block_height = filter->block_height; in block_score_for_row_iscombed() local 1158 for (j = 0; j < block_height; j++) { in block_score_for_row_iscombed() 1235 const guint64 block_height = filter->block_height; in block_score_for_row_5_tap() local 1249 for (j = 0; j < block_height; j++) { in block_score_for_row_5_tap() 1349 const guint64 block_height = filter->block_height; in opposite_parity_windowed_comb() local [all …]
|
D | gstfieldanalysis.h | 135 guint64 block_width, block_height; /* width/height of window used for comb clusted detection */ member
|
/third_party/mesa3d/src/util/format/ |
D | u_format_parse.py | 117 …def __init__(self, name, layout, block_width, block_height, block_depth, le_channels, le_swizzles,… argument 121 self.block_height = block_height 424 block_width, block_height, block_depth = map(int, fields[2:5]) 440 …format = Format(name, layout, block_width, block_height, block_depth, le_channels, le_swizzles, be…
|
D | u_format_table.py | 205 …print(" {%u, %u, %u, %u},\t/* block */" % (format.block_width, format.block_height, format.bl…
|
D | u_format_pack.py | 649 print(' for(y = 0; y < height; y += %u) {' % (format.block_height,))
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
D | i915_surface.c | 225 int block_height = util_format_get_blockheight(dpt->format); in i915_surface_copy_blitter() local 229 assert(util_format_get_blockheight(spt->format) == block_height); in i915_surface_copy_blitter() 232 dsty /= block_height; in i915_surface_copy_blitter() 234 int srcy = src_box->y / block_height; in i915_surface_copy_blitter() 236 int height = DIV_ROUND_UP(src_box->height, block_height); in i915_surface_copy_blitter()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_fs.c | 123 unsigned block_height, 529 unsigned block_height = key->resource_1d ? 1 : 2; in fs_fb_fetch() local 530 unsigned block_width = block_size / block_height; in fs_fb_fetch() 1609 unsigned block_height, in load_unswizzled_block() argument 1616 const unsigned row_size = dst_count / block_height; in load_unswizzled_block() 1619 assert((block_width * block_height) % dst_count == 0); in load_unswizzled_block() 1653 unsigned block_height, in store_unswizzled_block() argument 1660 const unsigned row_size = src_count / block_height; in store_unswizzled_block() 1663 assert((block_width * block_height) % src_count == 0); in store_unswizzled_block() 2270 const unsigned block_height, in convert_alpha() argument [all …]
|
/third_party/mesa3d/src/freedreno/fdl/ |
D | fd6_view.c | 305 uint32_t block_width, block_height; in fdl6_view_init() local 306 fdl6_get_ubwc_blockwidth(layout, &block_width, &block_height); in fdl6_view_init() 315 A6XX_TEX_CONST_10_FLAG_BUFFER_LOGH(util_logbase2_ceil(DIV_ROUND_UP(height, block_height))); in fdl6_view_init()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_image_view.c | 74 unsigned block_width, block_height, bytes_per_block; in svga_create_uav_image() local 76 svga_format_size(svga_format, &block_width, &block_height, in svga_create_uav_image()
|
D | svga_format.h | 89 unsigned *block_height,
|
D | svga_format.c | 406 unsigned block_width, block_height, block_bytes; member 1755 unsigned *block_height, in svga_format_size() argument 1760 *block_height = format_cap_table[format].block_height; in svga_format_size() 1766 assert(*block_height); in svga_format_size()
|
/third_party/mesa3d/src/panfrost/lib/ |
D | pan_texture.c | 404 … cfg.astc._3d.block_height = panfrost_astc_dim_3d(desc->block.height); in panfrost_emit_plane() 409 … cfg.astc._2d.block_height = panfrost_astc_dim_2d(desc->block.height); in panfrost_emit_plane()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
D | v3dv_image.c | 97 uint32_t block_height = vk_format_get_blockheight(image->vk.format); in v3d_setup_slices() local 133 level_height = DIV_ROUND_UP(level_height, block_height); in v3d_setup_slices()
|
D | v3dv_meta_copy.c | 584 uint32_t block_height = vk_format_get_blockheight(image->vk.format); in copy_image_to_buffer_blit() local 586 buf_height = buf_height / block_height; in copy_image_to_buffer_blit() 698 DIV_ROUND_UP(region->imageOffset.y, block_height), in copy_image_to_buffer_blit() 705 block_height), in copy_image_to_buffer_blit() 719 DIV_ROUND_UP(region->imageExtent.height, block_height), in copy_image_to_buffer_blit() 2376 const uint32_t block_height = vk_format_get_blockheight(image->vk.format); in copy_buffer_to_image_blit() local 2398 buf_height = buf_height / block_height; in copy_buffer_to_image_blit() 2440 .bufferImageHeight = region->bufferImageHeight / block_height, in copy_buffer_to_image_blit() 2492 DIV_ROUND_UP(region->imageOffset.y, block_height), in copy_buffer_to_image_blit() 2499 block_height), in copy_buffer_to_image_blit()
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_resource.c | 549 uint32_t block_height = util_format_get_blockheight(prsc->format); in v3d_setup_slices() local 585 level_height = DIV_ROUND_UP(level_height, block_height); in v3d_setup_slices()
|
/third_party/gstreamer/gstplugins_bad/ext/ttml/ |
D | gstttmlrender.c | 2671 gint block_height; in gst_ttml_render_render_text_region() local 2701 block_height = rendered_block->height + (2 * rendered_block->y); in gst_ttml_render_render_text_region() 2703 block_height, block->style_set->background_color); in gst_ttml_render_render_text_region() 2705 window_width, block_height); in gst_ttml_render_render_text_region()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_gmem.c | 311 uint32_t block_width, block_height; in patch_fb_read_sysmem() local 312 fdl6_get_ubwc_blockwidth(&rsc->layout, &block_width, &block_height); in patch_fb_read_sysmem()
|