Lines Matching refs:vp9
112 buf->vp9.width = dec_params->frame_width_minus_1 + 1; in update_dec_buf_info()
113 buf->vp9.height = dec_params->frame_height_minus_1 + 1; in update_dec_buf_info()
114 buf->vp9.bit_depth = dec_params->bit_depth; in update_dec_buf_info()
143 dst->vp9.chroma_offset = hantro_g2_chroma_offset(ctx); in config_output()
147 dst->vp9.mv_offset = hantro_g2_motion_vectors_offset(ctx); in config_output()
170 refw = buf->vp9.width; in config_ref()
171 refh = buf->vp9.height; in config_ref()
176 hantro_reg_write(ctx->dev, &ref_reg->hor_scale, (refw << 14) / dst->vp9.width); in config_ref()
177 hantro_reg_write(ctx->dev, &ref_reg->ver_scale, (refh << 14) / dst->vp9.height); in config_ref()
182 chroma_addr = luma_addr + buf->vp9.chroma_offset; in config_ref()
225 mv_ref->vp9.mv_offset; in config_ref_registers()
324 unsigned int sbs_r = hantro_vp9_num_sbs(dst->vp9.height); in config_tiles()
325 unsigned int sbs_c = hantro_vp9_num_sbs(dst->vp9.width); in config_tiles()
337 tile_mem[0] = hantro_vp9_num_sbs(dst->vp9.width); in config_tiles()
338 tile_mem[1] = hantro_vp9_num_sbs(dst->vp9.height); in config_tiles()
490 hantro_reg_write(ctx->dev, &g2_pic_width_in_cbs, (dst->vp9.width + 7) / 8); in config_picture_dimensions()
491 hantro_reg_write(ctx->dev, &g2_pic_height_in_cbs, (dst->vp9.height + 7) / 8); in config_picture_dimensions()
492 pic_w_4x4 = roundup(dst->vp9.width, 8) >> 2; in config_picture_dimensions()
493 pic_h_4x4 = roundup(dst->vp9.height, 8) >> 2; in config_picture_dimensions()
840 resolution_change = dst->vp9.width != last->vp9.width || in config_registers()
841 dst->vp9.height != last->vp9.height; in config_registers()