Home
last modified time | relevance | path

Searched refs:BR_CDF_SIZE (Results 1 – 11 of 11) sorted by relevance

/external/libaom/libaom/av1/decoder/
Ddecodetxb.c76 for (int idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) { in read_coeffs_reverse_2d()
77 const int k = aom_read_symbol(r, cdf, BR_CDF_SIZE, ACCT_STR); in read_coeffs_reverse_2d()
79 if (k < BR_CDF_SIZE - 1) break; in read_coeffs_reverse_2d()
100 for (int idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) { in read_coeffs_reverse()
101 const int k = aom_read_symbol(r, cdf, BR_CDF_SIZE, ACCT_STR); in read_coeffs_reverse()
103 if (k < BR_CDF_SIZE - 1) break; in read_coeffs_reverse()
256 for (int idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) { in av1_read_coeffs_txb()
257 const int k = aom_read_symbol(r, cdf, BR_CDF_SIZE, ACCT_STR); in av1_read_coeffs_txb()
259 if (k < BR_CDF_SIZE - 1) break; in av1_read_coeffs_txb()
/external/libaom/libaom/av1/common/
Dentropy.h48 #define BR_CDF_SIZE (4) macro
49 #define COEFF_BASE_RANGE (4 * (BR_CDF_SIZE - 1))
Dentropymode.h85 [CDF_SIZE(BR_CDF_SIZE)];
Dentropy.c99 RESET_CDF_COUNTER(fc->coeff_br_cdf, BR_CDF_SIZE); in av1_reset_cdf_symbol_counters()
Dtxb_common.h299 typedef aom_cdf_prob (*br_cdf_arr)[CDF_SIZE(BR_CDF_SIZE)];
Dtoken_cdfs.h945 [CDF_SIZE(BR_CDF_SIZE)] = {
/external/libaom/libaom/av1/encoder/
Dencodetxb.c615 for (int idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) {
616 const int k = AOMMIN(base_range - idx, BR_CDF_SIZE - 1);
617 aom_write_symbol(w, k, cdf, BR_CDF_SIZE);
618 if (k < BR_CDF_SIZE - 1) break;
2187 for (int idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) {
2188 const int k = AOMMIN(base_range - idx, BR_CDF_SIZE - 1);
2192 k, BR_CDF_SIZE);
2194 for (int lps = 0; lps < BR_CDF_SIZE - 1; lps++) {
2205 if (k < BR_CDF_SIZE - 1) break;
Drd.c533 int br_rate[BR_CDF_SIZE]; in av1_fill_coeff_costs()
543 for (i = 0; i < COEFF_BASE_RANGE; i += BR_CDF_SIZE - 1) { in av1_fill_coeff_costs()
544 for (j = 0; j < BR_CDF_SIZE - 1; j++) { in av1_fill_coeff_costs()
Dencoder.h507 unsigned int coeff_lps[TX_SIZES][PLANE_TYPES][BR_CDF_SIZE - 1][LEVEL_CONTEXTS]
518 [LEVEL_CONTEXTS][BR_CDF_SIZE];
Dencodeframe.c4275 AVERAGE_CDF(ctx_left->coeff_br_cdf, ctx_tr->coeff_br_cdf, BR_CDF_SIZE); in avg_cdf_symbols()
/external/libaom/libaom/tools/
Daom_entropy_optimizer.c726 cts_each_dim[4] = BR_CDF_SIZE; in main()