Home
last modified time | relevance | path

Searched refs:INTRA_MODES (Results 1 – 14 of 14) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_entropymode.h45 vpx_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1];
46 vpx_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1];
63 unsigned int y_mode[BLOCK_SIZE_GROUPS][INTRA_MODES];
64 unsigned int uv_mode[INTRA_MODES][INTRA_MODES];
81 extern const vpx_prob vp9_kf_uv_mode_prob[INTRA_MODES][INTRA_MODES - 1];
82 extern const vpx_prob vp9_kf_y_mode_prob[INTRA_MODES][INTRA_MODES]
83 [INTRA_MODES - 1];
86 extern const vpx_tree_index vp9_intra_mode_tree[TREE_SIZE(INTRA_MODES)];
Dvp9_entropymode.c16 const vpx_prob vp9_kf_y_mode_prob[INTRA_MODES][INTRA_MODES][INTRA_MODES - 1] = {
149 const vpx_prob vp9_kf_uv_mode_prob[INTRA_MODES][INTRA_MODES - 1] = {
162 static const vpx_prob default_if_y_probs[BLOCK_SIZE_GROUPS][INTRA_MODES - 1] = {
169 static const vpx_prob default_if_uv_probs[INTRA_MODES][INTRA_MODES - 1] = {
242 const vpx_tree_index vp9_intra_mode_tree[TREE_SIZE(INTRA_MODES)] = {
365 for (i = 0; i < INTRA_MODES; ++i) in vp9_adapt_mode_probs()
Dvp9_reconintra.c24 const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES] = {
43 static const uint8_t extend_modes[INTRA_MODES] = {
59 static intra_pred_fn pred[INTRA_MODES][TX_SIZES];
66 static intra_high_pred_fn pred_high[INTRA_MODES][4];
Dvp9_common_data.h38 extern const uint8_t need_top_left[INTRA_MODES];
Dvp9_enums.h125 #define INTRA_MODES (TM_PRED + 1) macro
Dvp9_thread_common.c318 for (j = 0; j < INTRA_MODES; j++) in vp9_accumulate_frame_counts()
321 for (i = 0; i < INTRA_MODES; i++) in vp9_accumulate_frame_counts()
322 for (j = 0; j < INTRA_MODES; j++) in vp9_accumulate_frame_counts()
Dvp9_blockd.h207 extern const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES];
Dvp9_common_data.c247 const uint8_t need_top_left[INTRA_MODES] = {
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.h642 int mbmode_cost[INTRA_MODES];
644 int intra_uv_mode_cost[FRAME_TYPES][INTRA_MODES][INTRA_MODES];
645 int y_mode_costs[INTRA_MODES][INTRA_MODES][INTRA_MODES];
Dvp9_rd.c72 for (i = 0; i < INTRA_MODES; ++i) in fill_mode_costs()
73 for (j = 0; j < INTRA_MODES; ++j) in fill_mode_costs()
78 for (i = 0; i < INTRA_MODES; ++i) { in fill_mode_costs()
Dvp9_encoder.c141 for (j = 0; j < INTRA_MODES - 1; ++j) { in compute_context_model_diff()
145 pre_last_prob = MAX_PROB - pre_fc->y_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
146 cur_last_prob = MAX_PROB - cur_fc->y_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
148 diff += (int)counts->y_mode[i][INTRA_MODES - 1] * in compute_context_model_diff()
153 for (i = 0; i < INTRA_MODES; ++i) { in compute_context_model_diff()
154 for (j = 0; j < INTRA_MODES - 1; ++j) { in compute_context_model_diff()
158 pre_last_prob = MAX_PROB - pre_fc->uv_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
159 cur_last_prob = MAX_PROB - cur_fc->uv_mode_prob[i][INTRA_MODES - 2]; in compute_context_model_diff()
161 diff += (int)counts->uv_mode[i][INTRA_MODES - 1] * in compute_context_model_diff()
Dvp9_bitstream.c38 static const struct vp9_token intra_mode_encodings[INTRA_MODES] = {
1321 counts->y_mode[i], INTRA_MODES, &header_bc); in write_compressed_header()
Dvp9_encodeframe.c3287 ctx->mic.mode >= INTRA_MODES && bsize >= BLOCK_16X16) { in rd_pick_partition()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c1960 for (i = 0; i < INTRA_MODES - 1; ++i) in read_compressed_header()