Searched refs:q_update (Results 1 – 1 of 1) sorted by relevance
/external/libvpx/libvpx/vp8/decoder/ |
D | decodeframe.c | 235 static int get_delta_q(vp8_reader *bc, int prev, int *q_update) { in get_delta_q() argument 245 if (ret_val != prev) *q_update = 1; in get_delta_q() 1075 int Q, q_update; in vp8_decode_frame() local 1079 q_update = 0; in vp8_decode_frame() 1080 pc->y1dc_delta_q = get_delta_q(bc, pc->y1dc_delta_q, &q_update); in vp8_decode_frame() 1081 pc->y2dc_delta_q = get_delta_q(bc, pc->y2dc_delta_q, &q_update); in vp8_decode_frame() 1082 pc->y2ac_delta_q = get_delta_q(bc, pc->y2ac_delta_q, &q_update); in vp8_decode_frame() 1083 pc->uvdc_delta_q = get_delta_q(bc, pc->uvdc_delta_q, &q_update); in vp8_decode_frame() 1084 pc->uvac_delta_q = get_delta_q(bc, pc->uvac_delta_q, &q_update); in vp8_decode_frame() 1086 if (q_update) vp8cx_init_de_quantizer(pbi); in vp8_decode_frame()
|