Lines Matching defs:pos
168 "WL index out of range: pos=%d, val=%d!\n",
197 "SF index out of range: pos=%d, val=%d!\n",
243 int i, weight_idx = 0, delta, diff, pos, delta_bits, min_val, flag,
275 pos = get_bits(gb, 5);
276 if (pos > chan->num_coded_vals) {
285 for (i = 0; i < pos; i++)
288 for (i = pos; i < chan->num_coded_vals; i++)
362 pos = ch_num ? chan->num_coded_vals + chan->split_point
364 if (pos > FF_ARRAY_ELEMS(chan->qu_wordlen)) {
366 pos = FF_ARRAY_ELEMS(chan->qu_wordlen);
368 for (i = chan->num_coded_vals; i < pos; i++)
724 int i, j, pos, cf;
731 for (pos = 0; pos < num_specs;) {
743 out[pos++] = cf;
748 pos += group_size * num_coeffs;
1056 * @param[in] pos position of the value to be processed
1059 AtracGainInfo *dst, int pos)
1063 if (!pos || dst->loc_code[pos - 1] < 15)
1064 dst->loc_code[pos] = get_bits(gb, 5);
1065 else if (dst->loc_code[pos - 1] >= 30)
1066 dst->loc_code[pos] = 31;
1068 delta_bits = av_log2(30 - dst->loc_code[pos - 1]) + 1;
1069 dst->loc_code[pos] = dst->loc_code[pos - 1] +
1248 "Invalid gain location: ch=%d, sb=%d, pos=%d, val=%d\n",