Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_zscan.c147 ureg_imm1f(shader, 1.0f / zscan->blocks_per_line)); in create_vert_shader()
154 ureg_imm1f(shader, 1.0f / (zscan->blocks_per_line * VL_BLOCK_WIDTH) in create_vert_shader()
158 ureg_imm1f(shader, 1.0f / zscan->blocks_per_line), ureg_src(tmp)); in create_vert_shader()
162 ureg_imm1f(shader, (float)zscan->blocks_per_line / zscan->blocks_total)); in create_vert_shader()
350 vl_zscan_layout(struct pipe_context *pipe, const int layout[64], unsigned blocks_per_line) in vl_zscan_layout() argument
352 const unsigned total_size = blocks_per_line * VL_BLOCK_WIDTH * VL_BLOCK_HEIGHT; in vl_zscan_layout()
365 VL_BLOCK_WIDTH * blocks_per_line, in vl_zscan_layout()
370 assert(pipe && layout && blocks_per_line); in vl_zscan_layout()
378 res_tmpl.width0 = VL_BLOCK_WIDTH * blocks_per_line; in vl_zscan_layout()
397 for (i = 0; i < blocks_per_line; ++i) in vl_zscan_layout()
[all …]
Dvl_zscan.h47 unsigned blocks_per_line; member
73 vl_zscan_layout(struct pipe_context *pipe, const int layout[64], unsigned blocks_per_line);
78 unsigned blocks_per_line, unsigned blocks_total,
Dvl_mpeg12_decoder.c178 res_tmpl.width0 = dec->blocks_per_line * VL_BLOCK_WIDTH * VL_BLOCK_HEIGHT; in init_zscan_buffer()
179 res_tmpl.height0 = align(dec->num_blocks, dec->blocks_per_line) / dec->blocks_per_line; in init_zscan_buffer()
941 dec->zscan_linear = vl_zscan_layout(dec->context, vl_zscan_linear, dec->blocks_per_line); in init_zscan()
942 dec->zscan_normal = vl_zscan_layout(dec->context, vl_zscan_normal, dec->blocks_per_line); in init_zscan()
943 dec->zscan_alternate = vl_zscan_layout(dec->context, vl_zscan_alternate, dec->blocks_per_line); in init_zscan()
948 dec->blocks_per_line, dec->num_blocks, num_channels)) in init_zscan()
952 dec->blocks_per_line, dec->num_blocks, num_channels)) in init_zscan()
1132 dec->blocks_per_line = MAX2(util_next_power_of_two(dec->base.width) / block_size_pixels, 4); in vl_create_mpeg12_decoder()
Dvl_mpeg12_decoder.h53 unsigned blocks_per_line; member