• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:base_id

119   uint32_t base_id = TOKEN_ID(coeff_type, n, ctx);  in VP8RecordCoeffTokens()  local
122 if (!AddToken(tokens, last >= 0, base_id + 0, s + 0)) { in VP8RecordCoeffTokens()
130 if (!AddToken(tokens, v != 0, base_id + 1, s + 1)) { in VP8RecordCoeffTokens()
131 base_id = TOKEN_ID(coeff_type, VP8EncBands[n], 0); // ctx=0 in VP8RecordCoeffTokens()
135 if (!AddToken(tokens, v > 1, base_id + 2, s + 2)) { in VP8RecordCoeffTokens()
136 base_id = TOKEN_ID(coeff_type, VP8EncBands[n], 1); // ctx=1 in VP8RecordCoeffTokens()
139 if (!AddToken(tokens, v > 4, base_id + 3, s + 3)) { in VP8RecordCoeffTokens()
140 if (AddToken(tokens, v != 2, base_id + 4, s + 4)) { in VP8RecordCoeffTokens()
141 AddToken(tokens, v == 4, base_id + 5, s + 5); in VP8RecordCoeffTokens()
143 } else if (!AddToken(tokens, v > 10, base_id + 6, s + 6)) { in VP8RecordCoeffTokens()
144 if (!AddToken(tokens, v > 6, base_id + 7, s + 7)) { in VP8RecordCoeffTokens()
155 AddToken(tokens, 0, base_id + 8, s + 8); in VP8RecordCoeffTokens()
156 AddToken(tokens, 0, base_id + 9, s + 9); in VP8RecordCoeffTokens()
161 AddToken(tokens, 0, base_id + 8, s + 8); in VP8RecordCoeffTokens()
162 AddToken(tokens, 1, base_id + 9, s + 9); in VP8RecordCoeffTokens()
167 AddToken(tokens, 1, base_id + 8, s + 8); in VP8RecordCoeffTokens()
168 AddToken(tokens, 0, base_id + 10, s + 9); in VP8RecordCoeffTokens()
173 AddToken(tokens, 1, base_id + 8, s + 8); in VP8RecordCoeffTokens()
174 AddToken(tokens, 1, base_id + 10, s + 9); in VP8RecordCoeffTokens()
184 base_id = TOKEN_ID(coeff_type, VP8EncBands[n], 2); // ctx=2 in VP8RecordCoeffTokens()
188 if (n == 16 || !AddToken(tokens, n <= last, base_id + 0, s + 0)) { in VP8RecordCoeffTokens()