Searched refs:n_coeffs (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/alpha/ |
H A D | mpegvideo_alpha.c | 26 static void dct_unquantize_h263_axp(int16_t *block, int n_coeffs, in dct_unquantize_h263_axp() argument 35 for(i = 0; i <= n_coeffs; block += 4, i += 4) { in dct_unquantize_h263_axp() 75 int n_coeffs; in dct_unquantize_h263_intra_axp() local 90 n_coeffs = 63; in dct_unquantize_h263_intra_axp() 92 n_coeffs = s->inter_scantable.raster_end[s->block_last_index[n]]; in dct_unquantize_h263_intra_axp() 94 dct_unquantize_h263_axp(block, n_coeffs, qscale, qadd); in dct_unquantize_h263_intra_axp() 102 int n_coeffs = s->inter_scantable.raster_end[s->block_last_index[n]]; in dct_unquantize_h263_inter_axp() local 103 dct_unquantize_h263_axp(block, n_coeffs, qscale, (qscale - 1) | 1); in dct_unquantize_h263_inter_axp()
|
/third_party/ffmpeg/libavcodec/mips/ |
H A D | mpegvideo_msa.c | 25 int16_t qadd, int8_t n_coeffs, in h263_dct_unquantize_msa() 35 for (cnt = 0; cnt < (n_coeffs >> 3); cnt++) { in h263_dct_unquantize_msa() 49 cnt = ((n_coeffs >> 3) * 8) + loop_start; in h263_dct_unquantize_msa() 51 for (; cnt <= n_coeffs; cnt++) { in h263_dct_unquantize_msa() 24 h263_dct_unquantize_msa(int16_t *block, int16_t qmul, int16_t qadd, int8_t n_coeffs, uint8_t loop_start) h263_dct_unquantize_msa() argument
|
/third_party/ffmpeg/libavcodec/ |
H A D | vp9block.c | 803 decode_coeffs_b_generic(VP56RangeCoder *c, int16_t *coef, int n_coeffs, in decode_coeffs_b_generic() argument 829 if (++i == n_coeffs) in decode_coeffs_b_generic() 917 } while (++i < n_coeffs); in decode_coeffs_b_generic() 922 static int decode_coeffs_b_8bpp(VP9TileData *td, int16_t *coef, int n_coeffs, in decode_coeffs_b_8bpp() argument 928 return decode_coeffs_b_generic(td->c, coef, n_coeffs, 0, 1, 8, cnt, eob, p, in decode_coeffs_b_8bpp() 932 static int decode_coeffs_b32_8bpp(VP9TileData *td, int16_t *coef, int n_coeffs, in decode_coeffs_b32_8bpp() argument 938 return decode_coeffs_b_generic(td->c, coef, n_coeffs, 1, 1, 8, cnt, eob, p, in decode_coeffs_b32_8bpp() 942 static int decode_coeffs_b_16bpp(VP9TileData *td, int16_t *coef, int n_coeffs, in decode_coeffs_b_16bpp() argument 948 return decode_coeffs_b_generic(td->c, coef, n_coeffs, 0, 0, td->s->s.h.bpp, cnt, eob, p, in decode_coeffs_b_16bpp() 952 static int decode_coeffs_b32_16bpp(VP9TileData *td, int16_t *coef, int n_coeffs, in decode_coeffs_b32_16bpp() argument [all...] |
Completed in 4 milliseconds