Searched refs:mv_comp (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | vp9prob.c | 174 adapt_prob(&p->mv_comp[i].sign, s->td[0].counts.mv_comp[i].sign[0], in ff_vp9_adapt_probs() 175 s->td[0].counts.mv_comp[i].sign[1], 20, 128); in ff_vp9_adapt_probs() 177 pp = p->mv_comp[i].classes; in ff_vp9_adapt_probs() 178 c = s->td[0].counts.mv_comp[i].classes; in ff_vp9_adapt_probs() 196 adapt_prob(&p->mv_comp[i].class0, s->td[0].counts.mv_comp[i].class0[0], in ff_vp9_adapt_probs() 197 s->td[0].counts.mv_comp[i].class0[1], 20, 128); in ff_vp9_adapt_probs() 198 pp = p->mv_comp[i].bits; in ff_vp9_adapt_probs() 199 c2 = s->td[0].counts.mv_comp[i].bits; in ff_vp9_adapt_probs() 204 pp = p->mv_comp[i].class0_fp[j]; in ff_vp9_adapt_probs() 205 c = s->td[0].counts.mv_comp[i].class0_fp[j]; in ff_vp9_adapt_probs() [all …]
|
D | vp9mvs.c | 239 int bit, sign = vp56_rac_get_prob(td->c, s->prob.p.mv_comp[idx].sign); in read_mv_component() 241 s->prob.p.mv_comp[idx].classes); in read_mv_component() 243 td->counts.mv_comp[idx].sign[sign]++; in read_mv_component() 244 td->counts.mv_comp[idx].classes[c]++; in read_mv_component() 249 bit = vp56_rac_get_prob(td->c, s->prob.p.mv_comp[idx].bits[m]); in read_mv_component() 251 td->counts.mv_comp[idx].bits[m][bit]++; in read_mv_component() 255 s->prob.p.mv_comp[idx].fp); in read_mv_component() 257 td->counts.mv_comp[idx].fp[bit]++; in read_mv_component() 259 bit = vp56_rac_get_prob(td->c, s->prob.p.mv_comp[idx].hp); in read_mv_component() 260 td->counts.mv_comp[idx].hp[bit]++; in read_mv_component() [all …]
|
D | vp9dec.h | 72 } mv_comp[2]; member 200 } mv_comp[2]; member
|
D | vp9.c | 1040 s->prob.p.mv_comp[i].sign = in decode_frame_header() 1045 s->prob.p.mv_comp[i].classes[j] = in decode_frame_header() 1049 s->prob.p.mv_comp[i].class0 = in decode_frame_header() 1054 s->prob.p.mv_comp[i].bits[j] = in decode_frame_header() 1062 s->prob.p.mv_comp[i].class0_fp[j][k] = in decode_frame_header() 1067 s->prob.p.mv_comp[i].fp[j] = in decode_frame_header() 1074 s->prob.p.mv_comp[i].class0_hp = in decode_frame_header() 1078 s->prob.p.mv_comp[i].hp = in decode_frame_header()
|