Home
last modified time | relevance | path

Searched refs:MAX_PROB (Results 1 – 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp9/decoder/
Dvp9_dsubexp.c31 static uint8_t inv_map_table[MAX_PROB] = { in inv_remap_prob()
53 if ((m << 1) <= MAX_PROB) { in inv_remap_prob()
56 return MAX_PROB - inv_recenter_nonneg(v, MAX_PROB - 1 - m); in inv_remap_prob()
Dvp9_decodeframe.c1021 vpx_rb_read_bit(rb) ? vpx_rb_read_literal(rb, 8) : MAX_PROB; in setup_segmentation()
1027 vpx_rb_read_bit(rb) ? vpx_rb_read_literal(rb, 8) : MAX_PROB; in setup_segmentation()
1029 for (i = 0; i < PREDICTION_PROBS; i++) seg->pred_probs[i] = MAX_PROB; in setup_segmentation()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_subexp.c46 static const uint8_t map_table[MAX_PROB - 1] = { in remap_prob()
69 if ((m << 1) <= MAX_PROB) in remap_prob()
72 i = recenter_nonneg(MAX_PROB - 1 - v, MAX_PROB - 1 - m) - 1; in remap_prob()
Dvp9_encoder.c146 pre_last_prob = MAX_PROB - pre_fc->y_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
147 cur_last_prob = MAX_PROB - cur_fc->y_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
159 pre_last_prob = MAX_PROB - pre_fc->uv_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
160 cur_last_prob = MAX_PROB - cur_fc->uv_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
172 pre_last_prob = MAX_PROB - pre_fc->partition_prob[i][PARTITION_TYPES - 2]; in compute_context_model_diff()
173 cur_last_prob = MAX_PROB - cur_fc->partition_prob[i][PARTITION_TYPES - 2]; in compute_context_model_diff()
192 MAX_PROB - in compute_context_model_diff()
195 MAX_PROB - in compute_context_model_diff()
214 MAX_PROB - pre_fc->switchable_interp_prob[i][SWITCHABLE_FILTERS - 2]; in compute_context_model_diff()
216 MAX_PROB - cur_fc->switchable_interp_prob[i][SWITCHABLE_FILTERS - 2]; in compute_context_model_diff()
[all …]
Dvp9_bitstream.c770 const int update = prob != MAX_PROB; in encode_segmentation()
780 const int update = prob != MAX_PROB; in encode_segmentation()
/external/libvpx/libvpx/vp8/common/
Dentropy.h55 #define MAX_PROB 255 macro
/external/libvpx/libvpx/vpx_dsp/
Dprob.h27 #define MAX_PROB 255 macro