Searched refs:AC3_MAX_BLOCKS (Results 1 - 6 of 6) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | ac3dec.h | 128 int cpl_in_use[AC3_MAX_BLOCKS]; ///< coupling in use (cplinu) 129 int cpl_strategy_exists[AC3_MAX_BLOCKS];///< coupling strategy exists (cplstre) 160 int pre_mantissa[AC3_MAX_CHANNELS][AC3_MAX_COEFS][AC3_MAX_BLOCKS]; ///< pre-IDCT mantissas 199 int exp_strategy[AC3_MAX_BLOCKS][AC3_MAX_CHANNELS]; ///< exponent strategies (expstr)
|
H A D | ac3enc.h | 173 AC3Block blocks[AC3_MAX_BLOCKS]; ///< per-block info 250 uint8_t exp_strategy[AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< exponent strategies 253 uint8_t exp_ref_block[AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< reference blocks for EXP_REUSE 254 uint8_t *ref_bap [AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< bit allocation pointers (bap)
|
H A D | ac3defs.h | 31 #define AC3_MAX_BLOCKS 6 macro 32 #define AC3_FRAME_SIZE (AC3_MAX_BLOCKS * 256)
|
H A D | ac3enc_template.c | 113 LOCAL_ALIGNED_16(CoefType, cpl_coords, [AC3_MAX_BLOCKS], [AC3_MAX_CHANNELS][16]); in apply_channel_coupling() 115 LOCAL_ALIGNED_16(int32_t, fixed_cpl_coords, [AC3_MAX_BLOCKS], [AC3_MAX_CHANNELS][16]); in apply_channel_coupling() 120 CoefSumType energy[AC3_MAX_BLOCKS][AC3_MAX_CHANNELS][16] = {{{0}}}; in apply_channel_coupling() 123 memset(cpl_coords, 0, AC3_MAX_BLOCKS * sizeof(*cpl_coords)); in apply_channel_coupling() 125 memset(fixed_cpl_coords, 0, AC3_MAX_BLOCKS * sizeof(*cpl_coords)); in apply_channel_coupling()
|
H A D | ac3dsp.c | 116 for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) { in ac3_compute_mantissa_size_c()
|
H A D | ac3enc.c | 1117 static void count_mantissa_bits_init(uint16_t mant_cnt[AC3_MAX_BLOCKS][16]) in count_mantissa_bits_init() 1121 for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) { in count_mantissa_bits_init() 1140 uint16_t mant_cnt[AC3_MAX_BLOCKS][16], in count_mantissa_bits_update_ch() 1162 LOCAL_ALIGNED_16(uint16_t, mant_cnt, [AC3_MAX_BLOCKS], [16]); in count_mantissa_bits()
|
Completed in 7 milliseconds