Home
last modified time | relevance | path

Searched refs:AC3_MAX_BLOCKS (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dac3dec.h128 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)
Dac3enc.h170 AC3Block blocks[AC3_MAX_BLOCKS]; ///< per-block info
247 uint8_t exp_strategy[AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< exponent strategies
250 uint8_t exp_ref_block[AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< reference blocks for EXP_REUSE
251 uint8_t *ref_bap [AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< bit allocation pointers (bap)
Dac3enc_template.c112 LOCAL_ALIGNED_16(CoefType, cpl_coords, [AC3_MAX_BLOCKS], [AC3_MAX_CHANNELS][16]); in apply_channel_coupling()
114 LOCAL_ALIGNED_16(int32_t, fixed_cpl_coords, [AC3_MAX_BLOCKS], [AC3_MAX_CHANNELS][16]); in apply_channel_coupling()
119 CoefSumType energy[AC3_MAX_BLOCKS][AC3_MAX_CHANNELS][16] = {{{0}}}; in apply_channel_coupling()
122 memset(cpl_coords, 0, AC3_MAX_BLOCKS * sizeof(*cpl_coords)); in apply_channel_coupling()
124 memset(fixed_cpl_coords, 0, AC3_MAX_BLOCKS * sizeof(*cpl_coords)); in apply_channel_coupling()
Dac3.h36 #define AC3_MAX_BLOCKS 6 macro
37 #define AC3_FRAME_SIZE (AC3_MAX_BLOCKS * 256)
Dac3dsp.c108 for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) { in ac3_compute_mantissa_size_c()
Dac3enc.c1063 static void count_mantissa_bits_init(uint16_t mant_cnt[AC3_MAX_BLOCKS][16]) in count_mantissa_bits_init()
1067 for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) { in count_mantissa_bits_init()
1086 uint16_t mant_cnt[AC3_MAX_BLOCKS][16], in count_mantissa_bits_update_ch()
1108 LOCAL_ALIGNED_16(uint16_t, mant_cnt, [AC3_MAX_BLOCKS], [16]); in count_mantissa_bits()