| 138 | } |
| 139 | |
| 140 | static void read_uncoded_coeff(GetBitContext *gb, int *dst, unsigned int elements, |
| 141 | int coeff_bits, int is_signed, int offset) |
| 142 | { |
| 143 | int i; |
| 144 | |
| 145 | for (i = 0; i < elements; i++) { |
| 146 | dst[i] = (is_signed ? get_sbits(gb, coeff_bits) : get_bits(gb, coeff_bits)) + offset; |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | static int read_table(GetBitContext *gb, Table *t, const int8_t code_pred_coeff[3][3], |
| 151 | int length_bits, int coeff_bits, int is_signed, int offset) |
no test coverage detected