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() 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/ |
D | entropy.h | 48 #define BR_CDF_SIZE (4) macro 49 #define COEFF_BASE_RANGE (4 * (BR_CDF_SIZE - 1))
|
D | entropymode.h | 85 [CDF_SIZE(BR_CDF_SIZE)];
|
D | entropy.c | 99 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 | 615 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;
|
D | rd.c | 533 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()
|
D | encoder.h | 507 unsigned int coeff_lps[TX_SIZES][PLANE_TYPES][BR_CDF_SIZE - 1][LEVEL_CONTEXTS] 518 [LEVEL_CONTEXTS][BR_CDF_SIZE];
|
D | encodeframe.c | 4275 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 | 726 cts_each_dim[4] = BR_CDF_SIZE; in main()
|