Lines Matching defs:WMALL_MAX_CHANNELS
41 #define WMALL_MAX_CHANNELS 8 ///< max number of handled channels
110 int16_t *samples_16[WMALL_MAX_CHANNELS]; ///< current sample buffer pointer (16-bit)
111 int32_t *samples_32[WMALL_MAX_CHANNELS]; ///< current sample buffer pointer (24-bit)
119 int8_t channel_indexes_for_cur_subframe[WMALL_MAX_CHANNELS];
121 WmallChannelCtx channel[WMALL_MAX_CHANNELS]; ///< per channel data
134 int acfilter_prevvalues[WMALL_MAX_CHANNELS][16];
138 int16_t mclms_coeffs[WMALL_MAX_CHANNELS * WMALL_MAX_CHANNELS * 32];
139 int16_t mclms_coeffs_cur[WMALL_MAX_CHANNELS * WMALL_MAX_CHANNELS];
140 int32_t mclms_prevvalues[WMALL_MAX_CHANNELS * 2 * 32];
141 int32_t mclms_updates[WMALL_MAX_CHANNELS * 2 * 32];
156 } cdlms[WMALL_MAX_CHANNELS][9];
158 int cdlms_ttl[WMALL_MAX_CHANNELS];
162 int is_channel_coded[WMALL_MAX_CHANNELS];
163 int update_speed[WMALL_MAX_CHANNELS];
165 int transient[WMALL_MAX_CHANNELS];
166 int transient_pos[WMALL_MAX_CHANNELS];
169 unsigned ave_sum[WMALL_MAX_CHANNELS];
171 int channel_residues[WMALL_MAX_CHANNELS][WMALL_BLOCK_MAX_SIZE];
173 int lpc_coefs[WMALL_MAX_CHANNELS][40];
223 if (avctx->ch_layout.nb_channels > WMALL_MAX_CHANNELS) {
225 "More than " AV_STRINGIFY(WMALL_MAX_CHANNELS) " channels");
340 uint16_t num_samples[WMALL_MAX_CHANNELS] = { 0 }; /* sum of samples for all currently known subframes of a channel */
341 uint8_t contains_subframe[WMALL_MAX_CHANNELS]; /* flag indicating if a channel contains the current subframe */
692 int icoef, pred[WMALL_MAX_CHANNELS] = { 0 };