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.cc1415 int eob_pt = 1; in ReadTransformCoefficients() local
1418 eob_pt += reader_.ReadSymbol<kEobPt16SymbolCount>( in ReadTransformCoefficients()
1422 eob_pt += reader_.ReadSymbol<kEobPt32SymbolCount>( in ReadTransformCoefficients()
1426 eob_pt += reader_.ReadSymbol<kEobPt64SymbolCount>( in ReadTransformCoefficients()
1430 eob_pt += reader_.ReadSymbol<kEobPt128SymbolCount>( in ReadTransformCoefficients()
1434 eob_pt += reader_.ReadSymbol<kEobPt256SymbolCount>( in ReadTransformCoefficients()
1438 eob_pt += reader_.ReadSymbol<kEobPt512SymbolCount>( in ReadTransformCoefficients()
1443 eob_pt += reader_.ReadSymbol<kEobPt1024SymbolCount>( in ReadTransformCoefficients()
1447 int eob = (eob_pt < 2) ? eob_pt : ((1 << (eob_pt - 2)) + 1); in ReadTransformCoefficients()
1448 if (eob_pt >= 3) { in ReadTransformCoefficients()
[all …]