Lines Matching refs:inter_cnts

160 	struct v4l2_vp9_frame_symbol_counts inter_cnts;
896 counts = frame_is_intra ? &vp9_ctx->intra_cnts : &vp9_ctx->inter_cnts;
902 const struct rkvdec_vp9_inter_frame_symbol_counts *inter_cnts;
906 inter_cnts = vp9_ctx->count_tbl.cpu;
908 memcpy(classes[i], inter_cnts->classes[i], sizeof(classes[0]));
930 struct rkvdec_vp9_inter_frame_symbol_counts *inter_cnts = vp9_ctx->count_tbl.cpu;
933 vp9_ctx->inter_cnts.partition = &inter_cnts->partition;
934 vp9_ctx->inter_cnts.skip = &inter_cnts->skip;
935 vp9_ctx->inter_cnts.intra_inter = &inter_cnts->inter;
936 vp9_ctx->inter_cnts.tx32p = &inter_cnts->tx32p;
937 vp9_ctx->inter_cnts.tx16p = &inter_cnts->tx16p;
938 vp9_ctx->inter_cnts.tx8p = &inter_cnts->tx8p;
947 vp9_ctx->inter_cnts.y_mode = &inter_cnts->y_mode;
948 vp9_ctx->inter_cnts.uv_mode = &inter_cnts->uv_mode;
949 vp9_ctx->inter_cnts.comp = &inter_cnts->comp;
950 vp9_ctx->inter_cnts.comp_ref = &inter_cnts->comp_ref;
951 vp9_ctx->inter_cnts.single_ref = &inter_cnts->single_ref;
952 vp9_ctx->inter_cnts.mv_mode = &inter_cnts->mv_mode;
953 vp9_ctx->inter_cnts.filter = &inter_cnts->filter;
954 vp9_ctx->inter_cnts.mv_joint = &inter_cnts->mv_joint;
955 vp9_ctx->inter_cnts.sign = &inter_cnts->sign;
962 vp9_ctx->inter_cnts.class0 = &inter_cnts->class0;
963 vp9_ctx->inter_cnts.bits = &inter_cnts->bits;
964 vp9_ctx->inter_cnts.class0_fp = &inter_cnts->class0_fp;
965 vp9_ctx->inter_cnts.fp = &inter_cnts->fp;
966 vp9_ctx->inter_cnts.class0_hp = &inter_cnts->class0_hp;
967 vp9_ctx->inter_cnts.hp = &inter_cnts->hp;
971 for (m = 0; m < ARRAY_SIZE(vp9_ctx->inter_cnts.coeff[0][0][0][0]); ++m) {\
972 vp9_ctx->inter_cnts.coeff[i][j][k][l][m] = \
973 &inter_cnts->ref_cnt[k][i][j][l][m].coeff; \
974 vp9_ctx->inter_cnts.eob[i][j][k][l][m][0] = \
975 &inter_cnts->ref_cnt[k][i][j][l][m].eob[0]; \
976 vp9_ctx->inter_cnts.eob[i][j][k][l][m][1] = \
977 &inter_cnts->ref_cnt[k][i][j][l][m].eob[1]; \
988 for (i = 0; i < ARRAY_SIZE(vp9_ctx->inter_cnts.coeff); ++i)
989 for (j = 0; j < ARRAY_SIZE(vp9_ctx->inter_cnts.coeff[0]); ++j)
990 for (k = 0; k < ARRAY_SIZE(vp9_ctx->inter_cnts.coeff[0][0]); ++k)
991 for (l = 0; l < ARRAY_SIZE(vp9_ctx->inter_cnts.coeff[0][0][0]); ++l)