Searched refs:decode_rice (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | alsdec.c | 503 static int32_t decode_rice(GetBitContext *gb, unsigned int k) in decode_rice() function 687 s[k] = s[k - 1] + decode_rice(gb, 2); in read_var_block_data() 696 s[k] = s[k - 1] + decode_rice(gb, 0); in read_var_block_data() 750 quant_cof[k] = decode_rice(gb, rice_param) + offset; in read_var_block_data() 762 quant_cof[k] = decode_rice(gb, 2) + (k & 1); in read_var_block_data() 766 quant_cof[k] = decode_rice(gb, 1); in read_var_block_data() 786 bd->ltp_gain[0] = decode_rice(gb, 1) * 8; in read_var_block_data() 787 bd->ltp_gain[1] = decode_rice(gb, 2) * 8; in read_var_block_data() 798 bd->ltp_gain[3] = decode_rice(gb, 2) * 8; in read_var_block_data() 799 bd->ltp_gain[4] = decode_rice(gb, 1) * 8; in read_var_block_data() [all …]
|