Lines Matching defs:num_coeffs
60 static void inline unpack_alpha(GetBitContext *gb, uint16_t *dst, int num_coeffs,
93 if (idx >= num_coeffs)
99 if (idx + val > num_coeffs)
100 val = num_coeffs - idx;
118 } while (idx < num_coeffs);
121 static void unpack_alpha_10(GetBitContext *gb, uint16_t *dst, int num_coeffs,
125 unpack_alpha(gb, dst, num_coeffs, 16, 10);
127 unpack_alpha(gb, dst, num_coeffs, 8, 10);
131 static void unpack_alpha_12(GetBitContext *gb, uint16_t *dst, int num_coeffs,
135 unpack_alpha(gb, dst, num_coeffs, 16, 12);
137 unpack_alpha(gb, dst, num_coeffs, 8, 12);