Home
last modified time | relevance | path

Searched refs:row_height (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/external/mpp/mpp/hal/rkdec/h265d/
H A Dhal_h265d_rkv.c395 RK_U16 row_height[22]; in hal_h265d_v345_output_pps_packet() local
398 memset(row_height, 0, sizeof(row_height)); in hal_h265d_v345_output_pps_packet()
417 row_height[i] = dxva_cxt->pp.row_height_minus1[i] + 1; in hal_h265d_v345_output_pps_packet()
418 sum += row_height[i]; in hal_h265d_v345_output_pps_packet()
420 row_height[i] = ctu_height_in_pic - sum; in hal_h265d_v345_output_pps_packet()
440row_height[i] = ((i + 1) * pic_in_cts_height) / (dxva_cxt->pp.num_tile_rows_minus1 + 1) - in hal_h265d_v345_output_pps_packet()
447 row_height[0] = (height + MaxCUWidth - 1) / MaxCUWidth; in hal_h265d_v345_output_pps_packet()
457 if (row_height[j] > 0) in hal_h265d_v345_output_pps_packet()
458 row_height[j]--; in hal_h265d_v345_output_pps_packet()
459 mpp_put_bits(&bp, row_height[j], 8); in hal_h265d_v345_output_pps_packet()
[all …]
H A Dhal_h265d_vdpu34x.c345 RK_U16 row_height[22]; in hal_h265d_v345_output_pps_packet() local
348 memset(row_height, 0, sizeof(row_height)); in hal_h265d_v345_output_pps_packet()
367 row_height[i] = dxva_cxt->pp.row_height_minus1[i] + 1; in hal_h265d_v345_output_pps_packet()
368 sum += row_height[i]; in hal_h265d_v345_output_pps_packet()
370 row_height[i] = ctu_height_in_pic - sum; in hal_h265d_v345_output_pps_packet()
390row_height[i] = ((i + 1) * pic_in_cts_height) / (dxva_cxt->pp.num_tile_rows_minus1 + 1) - in hal_h265d_v345_output_pps_packet()
397 row_height[0] = (height + MaxCUWidth - 1) / MaxCUWidth; in hal_h265d_v345_output_pps_packet()
407 if (row_height[j] > 0) in hal_h265d_v345_output_pps_packet()
408 row_height[j]--; in hal_h265d_v345_output_pps_packet()
409 mpp_put_bits(&bp, row_height[j], 12); in hal_h265d_v345_output_pps_packet()
[all …]
H A Dhal_h265d_vdpu382.c349 RK_U16 row_height[22]; in hal_h265d_v382_output_pps_packet() local
352 memset(row_height, 0, sizeof(row_height)); in hal_h265d_v382_output_pps_packet()
371 row_height[i] = dxva_cxt->pp.row_height_minus1[i] + 1; in hal_h265d_v382_output_pps_packet()
372 sum += row_height[i]; in hal_h265d_v382_output_pps_packet()
374 row_height[i] = ctu_height_in_pic - sum; in hal_h265d_v382_output_pps_packet()
394row_height[i] = ((i + 1) * pic_in_cts_height) / (dxva_cxt->pp.num_tile_rows_minus1 + 1) - in hal_h265d_v382_output_pps_packet()
401 row_height[0] = (height + MaxCUWidth - 1) / MaxCUWidth; in hal_h265d_v382_output_pps_packet()
411 if (row_height[j] > 0) in hal_h265d_v382_output_pps_packet()
412 row_height[j]--; in hal_h265d_v382_output_pps_packet()
413 mpp_put_bits(&bp, row_height[j], 12); in hal_h265d_v382_output_pps_packet()
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_composite_glyphs.c45 int row_height; member
136 atlas->row_height = 0; in glamor_glyph_atlas_init()
148 atlas->y += atlas->row_height; in glamor_glyph_can_add()
149 atlas->row_height = 0; in glamor_glyph_can_add()
172 if (atlas->row_height < glyph_draw->height) in glamor_glyph_add()
173 atlas->row_height = glyph_draw->height; in glamor_glyph_add()
/OK3568_Linux_fs/external/mpp/mpp/codec/dec/h265/
H A Dh265d_ps.c1881 MPP_FREE(pps->bufs.row_height); in mpp_hevc_pps_free()
2052 bufs->row_height = mpp_malloc_size(RK_U32, buf_size); in mpp_hevc_decode_nal_pps()
2056 if (!bufs->column_width || !bufs->row_height) { in mpp_hevc_decode_nal_pps()
2078 READ_UE(gb, &bufs->row_height[i]); in mpp_hevc_decode_nal_pps()
2079 bufs->row_height[i] += 1; in mpp_hevc_decode_nal_pps()
2080 sum += bufs->row_height[i]; in mpp_hevc_decode_nal_pps()
2087 bufs->row_height[pps->num_tile_rows - 1] = sps->ctb_height - sum; in mpp_hevc_decode_nal_pps()
2172 bufs->row_height = mpp_malloc_size(RK_U32, buf_size); in mpp_hevc_decode_nal_pps()
2175 if (!bufs->column_width || !bufs->row_height) { in mpp_hevc_decode_nal_pps()
2186 bufs->row_height[i] = ((i + 1) * sps->ctb_height) / pps->num_tile_rows - in mpp_hevc_decode_nal_pps()
H A Dh265d_parser.h284 RK_U32 *row_height; ///< RowHeight member
H A Dh265d_parser2_syntax.c158 pp->row_height_minus1[i] = pps->bufs.row_height[i] - 1; in fill_picture_parameters()