Lines Matching defs:coef
215 static inline void decode_coeff(int16_t *dst, int coef, int esc, GetBitContext *gb, VLC* vlc, int q)
217 if(coef){
218 if(coef == esc){
219 coef = get_vlc2(gb, vlc->table, 9, 2);
220 if(coef > 23){
221 coef -= 23;
222 coef = 22 + ((1 << coef) | get_bits(gb, coef));
224 coef += esc;
227 coef = -coef;
228 *dst = (coef*q + 8) >> 4;