Home
last modified time | relevance | path

Searched refs:eob_pt (Results 1 – 3 of 3) sorted by relevance

/external/libaom/libaom/av1/decoder/
Ddecodetxb.c169 int eob_pt = 1; in av1_read_coeffs_txb() local
175 eob_pt = in av1_read_coeffs_txb()
181 eob_pt = in av1_read_coeffs_txb()
187 eob_pt = in av1_read_coeffs_txb()
193 eob_pt = in av1_read_coeffs_txb()
199 eob_pt = in av1_read_coeffs_txb()
205 eob_pt = in av1_read_coeffs_txb()
212 eob_pt = aom_read_symbol( in av1_read_coeffs_txb()
219 const int eob_offset_bits = av1_eob_offset_bits[eob_pt]; in av1_read_coeffs_txb()
221 const int eob_ctx = eob_pt - 3; in av1_read_coeffs_txb()
[all …]
/external/libaom/libaom/av1/encoder/
Dencodetxb.c170 const int eob_pt = get_eob_pos_token(eob, &eob_extra); local
179 ++counts->eob_multi16[cdf_idx][plane][eob_multi_ctx][eob_pt - 1];
182 update_cdf(ec_ctx->eob_flag_cdf16[plane][eob_multi_ctx], eob_pt - 1, 5);
186 ++counts->eob_multi32[cdf_idx][plane][eob_multi_ctx][eob_pt - 1];
189 update_cdf(ec_ctx->eob_flag_cdf32[plane][eob_multi_ctx], eob_pt - 1, 6);
193 ++counts->eob_multi64[cdf_idx][plane][eob_multi_ctx][eob_pt - 1];
196 update_cdf(ec_ctx->eob_flag_cdf64[plane][eob_multi_ctx], eob_pt - 1, 7);
200 ++counts->eob_multi128[cdf_idx][plane][eob_multi_ctx][eob_pt - 1];
203 update_cdf(ec_ctx->eob_flag_cdf128[plane][eob_multi_ctx], eob_pt - 1,
209 ++counts->eob_multi256[cdf_idx][plane][eob_multi_ctx][eob_pt - 1];
[all …]
/external/libgav1/libgav1/src/tile/
Dtile.cc1480 const int eob_pt = in ReadTransformCoefficients() local
1482 int eob = (eob_pt < 2) ? eob_pt : ((1 << (eob_pt - 2)) + 1); in ReadTransformCoefficients()
1483 if (eob_pt >= 3) { in ReadTransformCoefficients()
1484 context = eob_pt - 3; in ReadTransformCoefficients()
1488 if (eob_extra) eob += 1 << (eob_pt - 3); in ReadTransformCoefficients()
1489 for (int i = 1; i < eob_pt - 2; ++i) { in ReadTransformCoefficients()
1490 assert(eob_pt - i >= 3); in ReadTransformCoefficients()
1491 assert(eob_pt <= kEobPt1024SymbolCount); in ReadTransformCoefficients()
1493 eob += 1 << (eob_pt - i - 3); in ReadTransformCoefficients()