Searched refs:BR_CDF_SIZE (Results 1 – 11 of 11) sorted by relevance
/external/libaom/libaom/av1/decoder/ |
D | decodetxb.c | 76 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() 260 for (int idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) { in av1_read_coeffs_txb() 261 const int k = aom_read_symbol(r, cdf, BR_CDF_SIZE, ACCT_STR); in av1_read_coeffs_txb() 263 if (k < BR_CDF_SIZE - 1) break; in av1_read_coeffs_txb()
|
/external/libaom/libaom/av1/common/ |
D | entropy.h | 48 #define BR_CDF_SIZE (4) macro 49 #define COEFF_BASE_RANGE (4 * (BR_CDF_SIZE - 1))
|
D | entropymode.h | 86 [CDF_SIZE(BR_CDF_SIZE)];
|
D | entropy.c | 98 RESET_CDF_COUNTER(fc->coeff_br_cdf, BR_CDF_SIZE); in av1_reset_cdf_symbol_counters()
|
D | txb_common.h | 299 typedef aom_cdf_prob (*br_cdf_arr)[CDF_SIZE(BR_CDF_SIZE)];
|
D | token_cdfs.h | 945 [CDF_SIZE(BR_CDF_SIZE)] = {
|
/external/libaom/libaom/av1/encoder/ |
D | encodetxb.c | 604 for (int idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) { 605 const int k = AOMMIN(base_range - idx, BR_CDF_SIZE - 1); 606 aom_write_symbol(w, k, cdf, BR_CDF_SIZE); 607 if (k < BR_CDF_SIZE - 1) break; 2087 for (int idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) { 2088 const int k = AOMMIN(base_range - idx, BR_CDF_SIZE - 1); 2092 k, BR_CDF_SIZE); 2094 for (int lps = 0; lps < BR_CDF_SIZE - 1; lps++) { 2105 if (k < BR_CDF_SIZE - 1) break;
|
D | rd.c | 525 int br_rate[BR_CDF_SIZE]; in av1_fill_coeff_costs() 534 for (i = 0; i < COEFF_BASE_RANGE; i += BR_CDF_SIZE - 1) { in av1_fill_coeff_costs() 535 for (j = 0; j < BR_CDF_SIZE - 1; j++) { in av1_fill_coeff_costs()
|
D | encoder.h | 431 unsigned int coeff_lps[TX_SIZES][PLANE_TYPES][BR_CDF_SIZE - 1][LEVEL_CONTEXTS] 442 [LEVEL_CONTEXTS][BR_CDF_SIZE];
|
D | encodeframe.c | 4544 AVERAGE_CDF(ctx_left->coeff_br_cdf, ctx_tr->coeff_br_cdf, BR_CDF_SIZE); in avg_cdf_symbols()
|
/external/libaom/libaom/tools/ |
D | aom_entropy_optimizer.c | 723 cts_each_dim[4] = BR_CDF_SIZE; in main()
|