/external/libvpx/libvpx/vp8/common/ |
context.c | 228 const vp8_prob tree_update_probs[vp8_coef_tree_dimen] =
|
coefupdateprobs.h | 15 const vp8_prob vp8_coef_update_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES] =
|
default_coef_probs.h | 15 static const vp8_prob default_coef_probs [BLOCK_TYPES]
|
vp8_entropymodedata.h | 92 const vp8_prob vp8_ymode_prob[VP8_YMODES-1] = 97 const vp8_prob vp8_kf_ymode_prob[VP8_YMODES-1] = 102 const vp8_prob vp8_uv_mode_prob[VP8_UV_MODES-1] = 107 const vp8_prob vp8_kf_uv_mode_prob[VP8_UV_MODES-1] = 112 const vp8_prob vp8_bmode_prob[VP8_BINTRAMODES-1] = 119 const vp8_prob vp8_kf_bmode_prob
|
entropy.c | 123 static const vp8_prob Pcat1[] = { 159}; 124 static const vp8_prob Pcat2[] = { 165, 145}; 125 static const vp8_prob Pcat3[] = { 173, 148, 140}; 126 static const vp8_prob Pcat4[] = { 176, 155, 140, 135}; 127 static const vp8_prob Pcat5[] = { 180, 157, 141, 134, 130}; 128 static const vp8_prob Pcat6[] =
|
entropymode.h | 35 extern const vp8_prob vp8_mbsplit_probs [VP8_NUMMBSPLITS-1]; 39 extern const vp8_prob vp8_sub_mv_ref_prob2 [SUBMVREF_COUNT][VP8_SUBMVREFS-1]; 71 extern const vp8_prob vp8_kf_bmode_prob[VP8_BINTRAMODES][VP8_BINTRAMODES] 73 extern const vp8_prob vp8_kf_uv_mode_prob[VP8_UV_MODES-1]; 74 extern const vp8_prob vp8_kf_ymode_prob[VP8_YMODES-1]; 77 void vp8_default_bmode_probs(vp8_prob dest [VP8_BINTRAMODES-1]); 78 void vp8_kf_default_bmode_probs(vp8_prob dest [VP8_BINTRAMODES] [VP8_BINTRAMODES] [VP8_BINTRAMODES-1]);
|
treecoder.h | 18 typedef unsigned char vp8_prob; typedef 20 #define vp8_prob_half ( (vp8_prob) 128) 70 vp8_prob probs [ /* n-1 */ ], 83 vp8_prob probs [ /* n-1 */ ],
|
entropymode.c | 40 static const vp8_prob sub_mv_ref_prob [VP8_SUBMVREFS-1] = { 180, 162, 25}; 42 const vp8_prob vp8_sub_mv_ref_prob2 [SUBMVREF_COUNT][VP8_SUBMVREFS-1] = 83 const vp8_prob vp8_mbsplit_probs [VP8_NUMMBSPLITS-1] = { 110, 111, 150}; 167 void vp8_default_bmode_probs(vp8_prob p [VP8_BINTRAMODES-1])
|
entropymv.h | 39 vp8_prob prob[MVPcount]; /* often come in row, col pairs */
|
onyxc_int.h | 39 vp8_prob bmode_prob [VP8_BINTRAMODES-1]; 40 vp8_prob ymode_prob [VP8_YMODES-1]; /* interframe intra mode probs */ 41 vp8_prob uv_mode_prob [VP8_UV_MODES-1]; 42 vp8_prob sub_mv_ref_prob [VP8_SUBMVREFS-1]; 43 vp8_prob coef_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES];
|
entropy.h | 43 const vp8_prob *prob; 89 extern const vp8_prob vp8_coef_update_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES];
|
findnearmv.c | 182 vp8_prob *vp8_mv_ref_probs( 183 vp8_prob p[VP8_MVREFS-1], const int near_mv_ref_ct[4]
|
findnearmv.h | 93 vp8_prob *vp8_mv_ref_probs( 94 vp8_prob p[VP8_MVREFS-1], const int near_mv_ref_ct[4]
|
treecoder.c | 113 vp8_prob probs [ /* n-1 */ ],
|
blockd.h | 256 vp8_prob mb_segment_tree_probs[MB_FEATURE_TREE_PROBS]; /* Probability Tree used to code Segment number */
|
/external/libvpx/libvpx/vp8/encoder/ |
treewriter.c | 17 const vp8_prob *const P, 22 const vp8_prob p = P [i>>1]; 36 void vp8_cost_tokens(int *c, const vp8_prob *p, vp8_tree t) 40 void vp8_cost_tokens2(int *c, const vp8_prob *p, vp8_tree t,int start)
|
treewriter.h | 45 static unsigned int vp8_cost_branch(const unsigned int ct[2], vp8_prob p) 60 const vp8_prob *const p, 79 const vp8_prob *const p, 88 const vp8_prob *const p, 109 const vp8_prob *const p, 119 int *Costs, const vp8_prob *, vp8_tree 123 int *Costs, const vp8_prob *, vp8_tree, int
|
tokenize.h | 28 const vp8_prob *context_tree;
|
encodemv.c | 29 const vp8_prob *p = mvc->prob; 102 const vp8_prob *p = mvc->prob; 187 static void calc_prob(vp8_prob *p, const unsigned int ct[2]) 193 const vp8_prob x = ((ct[0] * 255) / tot) & -2; 201 vp8_prob *const cur_p, 202 const vp8_prob new_p, 203 const vp8_prob update_p, 233 vp8_prob *Pcur = cur_mvc->prob; 234 const vp8_prob *default_mvc = default_mvc_->prob; 235 const vp8_prob *Pupdate = update_mvc->prob [all...] |
bitstream.c | 69 vp8_prob Pnew [/* n-1 */], 70 vp8_prob Pcur [/* n-1 */], 99 const vp8_prob p = Pnew[j]; 116 vp8_prob Pnew [VP8_YMODES-1]; 125 vp8_prob Pnew [VP8_UV_MODES-1]; 135 static void write_ymode(vp8_writer *bc, int m, const vp8_prob *p) 140 static void kfwrite_ymode(vp8_writer *bc, int m, const vp8_prob *p) 145 static void write_uv_mode(vp8_writer *bc, int m, const vp8_prob *p) 151 static void write_bmode(vp8_writer *bc, int m, const vp8_prob *p) 428 vp8_writer *w, MB_PREDICTION_MODE m, const vp8_prob * [all...] |
onyx_int.h | 84 vp8_prob ymode_prob[4], uv_mode_prob[3]; /* interframe intra mode probs */ 85 vp8_prob kf_ymode_prob[4], kf_uv_mode_prob[3]; /* keyframe "" */ 444 vp8_prob frame_coef_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES];
|
/external/libvpx/libvpx/vp8/decoder/ |
onyxd_int.h | 109 vp8_prob prob_intra; 110 vp8_prob prob_last; 111 vp8_prob prob_gf; 112 vp8_prob prob_skip_false;
|
treereader.h | 30 const vp8_prob *const p
|
decodemv.c | 21 static B_PREDICTION_MODE read_bmode(vp8_reader *bc, const vp8_prob *p) 28 static MB_PREDICTION_MODE read_ymode(vp8_reader *bc, const vp8_prob *p) 35 static MB_PREDICTION_MODE read_kf_ymode(vp8_reader *bc, const vp8_prob *p) 42 static MB_PREDICTION_MODE read_uv_mode(vp8_reader *bc, const vp8_prob *p) 78 const vp8_prob *const p = (const vp8_prob *) mvc; 124 const vp8_prob *up = vp8_mv_update_probs[i].prob; 125 vp8_prob *p = (vp8_prob *)(mvc + i); 126 vp8_prob *const pstop = p + MVPcount [all...] |
decodframe.c | [all...] |