Searched refs:coeff_bits (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | dstdec.c | 141 int coeff_bits, int is_signed, int offset) in read_uncoded_coeff() argument 146 dst[i] = (is_signed ? get_sbits(gb, coeff_bits) : get_bits(gb, coeff_bits)) + offset; in read_uncoded_coeff() 151 int length_bits, int coeff_bits, int is_signed, int offset) in read_table() argument 157 read_uncoded_coeff(gb, t->coeff[i], t->length[i], coeff_bits, is_signed, offset); in read_table() 163 read_uncoded_coeff(gb, t->coeff[i], method + 1, coeff_bits, is_signed, offset); in read_table() 176 if (c < offset || c >= offset + (1<<coeff_bits)) in read_table()
|
D | aic.c | 207 int has_skips, coeff_type, coeff_bits, skip_type, skip_bits; in aic_decode_coeffs() local 218 coeff_bits = get_bits(gb, 3); in aic_decode_coeffs() 233 GET_CODE(val, coeff_type, coeff_bits); in aic_decode_coeffs() 244 GET_CODE(val, coeff_type, coeff_bits); in aic_decode_coeffs()
|
D | mlp.h | 80 int coeff_bits; member
|
D | mlpdec.c | 674 int coeff_bits, coeff_shift; in read_filter_params() local 678 coeff_bits = get_bits(gbp, 5); in read_filter_params() 680 if (coeff_bits < 1 || coeff_bits > 16) { in read_filter_params() 686 if (coeff_bits + coeff_shift > 16) { in read_filter_params() 694 fcoeff[i] = get_sbits(gbp, coeff_bits) * (1 << coeff_shift); in read_filter_params()
|
D | mlpenc.c | 352 dst->coeff_bits = src->coeff_bits; in copy_filter_params() 889 put_bits(pb, 5, fp->coeff_bits ); in write_filter_params() 893 put_sbits(pb, fp->coeff_bits, fcoeff[i] >> fp->coeff_shift); in write_filter_params() 1374 fp->coeff_bits = bits; in code_filter_coeffs()
|