Searched refs:decode_coeff (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | rv34.c | 213 static inline void decode_coeff(int16_t *dst, int coef, int esc, GetBitContext *gb, VLC* vlc, int q) in decode_coeff() function 237 decode_coeff( dst+0*4+0, (flags >> 6) , 3, gb, vlc, q); in decode_subblock() 239 decode_coeff(dst+1*4+0, (flags >> 4) & 3, 2, gb, vlc, q); in decode_subblock() 240 decode_coeff(dst+0*4+1, (flags >> 2) & 3, 2, gb, vlc, q); in decode_subblock() 242 decode_coeff(dst+0*4+1, (flags >> 4) & 3, 2, gb, vlc, q); in decode_subblock() 243 decode_coeff(dst+1*4+0, (flags >> 2) & 3, 2, gb, vlc, q); in decode_subblock() 245 decode_coeff( dst+1*4+1, (flags >> 0) & 3, 2, gb, vlc, q); in decode_subblock() 254 decode_coeff(dst, coeff, 3, gb, vlc, q); in decode_subblock1() 262 decode_coeff(dst+0*4+0, (flags >> 6) , 3, gb, vlc, q_dc); in decode_subblock3() 263 decode_coeff(dst+0*4+1, (flags >> 4) & 3, 2, gb, vlc, q_ac1); in decode_subblock3() [all …]
|
D | mss3.c | 440 static int decode_coeff(RangeCoder *c, Model *m) in decode_coeff() function 463 fc->fill_val += decode_coeff(c, &fc->coef_model); in decode_fill_block() 511 dc = decode_coeff(c, &bc->dc_model); in decode_dct() 601 block[i] = decode_coeff(c, &hc->coef_hi_model); in decode_haar_block()
|