Home | History | Annotate | Download | only in decoder

Lines Matching refs:delta_q

464 static int read_delta_q(struct vp9_read_bit_buffer *rb, int *delta_q) {
465 const int old = *delta_q;
466 *delta_q = vp9_rb_read_bit(rb) ? vp9_rb_read_signed_literal(rb, 4) : 0;
467 return old != *delta_q;