Home
last modified time | relevance | path

Searched refs:counts (Results 1 – 9 of 9) sorted by relevance

/rockchip-linux_mpp/mpp/codec/dec/vp9/
H A Dvp9d_parser.c1110 memset(s->counts.coef, 0, sizeof(s->counts.coef)); in decode_parser_header()
1111 memset(s->counts.eob, 0, sizeof(s->counts.eob)); in decode_parser_header()
1113 memset(&s->counts, 0, sizeof(s->counts)); in decode_parser_header()
1415 RK_U32 *e = s->counts.eob[i][j][k][l][m]; in adapt_probs()
1416 RK_U32 *c = s->counts.coef[i][j][k][l][m]; in adapt_probs()
1433 fwrite(&s->counts, 1, sizeof(s->counts), vp9_p_fp); in adapt_probs()
1447 adapt_prob(&p->skip[i], s->counts.skip[i][0], s->counts.skip[i][1], 20, 128); in adapt_probs()
1451 adapt_prob(&p->intra[i], s->counts.intra[i][0], s->counts.intra[i][1], 20, 128); in adapt_probs()
1456 adapt_prob(&p->comp[i], s->counts.comp[i][0], s->counts.comp[i][1], 20, 128); in adapt_probs()
1462 adapt_prob(&p->comp_ref[i], s->counts.comp_ref[i][0], in adapt_probs()
[all …]
H A Dvp9d_parser2_syntax.c186 memcpy(&ctx->pic_params.counts, &s->counts, sizeof(s->counts)); in vp9d_fill_counts()
H A Dvp9d_parser.h228 } counts; member
/rockchip-linux_mpp/mpp/hal/rkdec/vp9d/
H A Dhal_vp9d_com.c1986 com_len = sizeof(s->counts.partition) + sizeof(s->counts.skip) + sizeof(s->counts.intra) in hal_vp9d_update_counts()
1987 + sizeof(s->counts.tx32p) + sizeof(s->counts.tx16p) + sizeof(s->counts.tx8p); in hal_vp9d_update_counts()
1989 com_len = sizeof(s->counts) - sizeof(s->counts.coef) - sizeof(s->counts.eob); in hal_vp9d_update_counts()
1992 memcpy(&s->counts, buf, com_len); in hal_vp9d_update_counts()
1995 memset(s->counts.eob, 0, sizeof(s->counts.eob)); in hal_vp9d_update_counts()
1996 memset(s->counts.coef, 0, sizeof(s->counts.coef)); in hal_vp9d_update_counts()
2003 s->counts.eob[j][m][i][n][k][0] = eob_coef[1]; in hal_vp9d_update_counts()
2005 s->counts.eob[j][m][i][n][k][1] = eob_coef[0] - eob_coef[1]; in hal_vp9d_update_counts()
2006 s->counts.coef[j][m][i][n][k][0] = eob_coef[2]; in hal_vp9d_update_counts()
2007 s->counts.coef[j][m][i][n][k][1] = eob_coef[3]; in hal_vp9d_update_counts()
[all …]
H A Dhal_vp9d_rkv.c622 mpp_callback(p_hal->dec_cb, &pic_param->counts); in hal_vp9d_rkv_wait()
H A Dhal_vp9d_vdpu34x.c1016 mpp_callback(p_hal->dec_cb, &pic_param->counts); in hal_vp9d_vdpu34x_wait()
H A Dhal_vp9d_vdpu382.c1048 mpp_callback(p_hal->dec_cb, &pic_param->counts); in hal_vp9d_vdpu382_wait()
H A Dhal_vp9d_vdpu383.c1287 mpp_callback(p_hal->dec_cb, &pic_param->counts); in hal_vp9d_vdpu383_wait()
/rockchip-linux_mpp/mpp/common/
H A Dvp9d_syntax.h199 } counts; member